Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1876)

Unified Diff: Source/core/xml/XPathPredicate.h

Issue 344553002: Fix style erros in XPath-related files. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/xml/XPathPath.h ('k') | Source/core/xml/XPathPredicate.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XPathPredicate.h
diff --git a/Source/core/xml/XPathPredicate.h b/Source/core/xml/XPathPredicate.h
index 013f5bc6dbc42374946e778940dab6187db01bd5..9422316b3dbb14e517ffe216c5ea396b1efb24d3 100644
--- a/Source/core/xml/XPathPredicate.h
+++ b/Source/core/xml/XPathPredicate.h
@@ -32,98 +32,100 @@
namespace WebCore {
- namespace XPath {
-
- class Number FINAL : public Expression {
- public:
- explicit Number(double);
- virtual void trace(Visitor*) OVERRIDE;
-
- private:
- virtual Value evaluate() const OVERRIDE;
- virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; }
-
- Value m_value;
- };
-
- class StringExpression FINAL : public Expression {
- public:
- explicit StringExpression(const String&);
- virtual void trace(Visitor*) OVERRIDE;
-
- private:
- virtual Value evaluate() const OVERRIDE;
- virtual Value::Type resultType() const OVERRIDE { return Value::StringValue; }
-
- Value m_value;
- };
-
- class Negative FINAL : public Expression {
- private:
- virtual Value evaluate() const OVERRIDE;
- virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; }
- };
-
- class NumericOp FINAL : public Expression {
- public:
- enum Opcode {
- OP_Add, OP_Sub, OP_Mul, OP_Div, OP_Mod
- };
- NumericOp(Opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs);
- private:
- virtual Value evaluate() const OVERRIDE;
- virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; }
-
- Opcode m_opcode;
- };
-
- class EqTestOp FINAL : public Expression {
- public:
- enum Opcode { OP_EQ, OP_NE, OP_GT, OP_LT, OP_GE, OP_LE };
- EqTestOp(Opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs);
- virtual Value evaluate() const OVERRIDE;
- private:
- virtual Value::Type resultType() const OVERRIDE { return Value::BooleanValue; }
- bool compare(const Value&, const Value&) const;
-
- Opcode m_opcode;
- };
-
- class LogicalOp FINAL : public Expression {
- public:
- enum Opcode { OP_And, OP_Or };
- LogicalOp(Opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs);
- private:
- virtual Value::Type resultType() const OVERRIDE { return Value::BooleanValue; }
- bool shortCircuitOn() const;
- virtual Value evaluate() const OVERRIDE;
-
- Opcode m_opcode;
- };
-
- class Union FINAL : public Expression {
- private:
- virtual Value evaluate() const OVERRIDE;
- virtual Value::Type resultType() const OVERRIDE { return Value::NodeSetValue; }
- };
-
- class Predicate FINAL : public NoBaseWillBeGarbageCollected<Predicate> {
- WTF_MAKE_NONCOPYABLE(Predicate); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Predicate);
- public:
- explicit Predicate(PassOwnPtrWillBeRawPtr<Expression>);
- void trace(Visitor*);
- bool evaluate() const;
-
- bool isContextPositionSensitive() const { return m_expr->isContextPositionSensitive() || m_expr->resultType() == Value::NumberValue; }
- bool isContextSizeSensitive() const { return m_expr->isContextSizeSensitive(); }
-
- private:
- OwnPtrWillBeMember<Expression> m_expr;
- };
-
- }
+namespace XPath {
+
+class Number FINAL : public Expression {
+public:
+ explicit Number(double);
+ virtual void trace(Visitor*) OVERRIDE;
+
+private:
+ virtual Value evaluate() const OVERRIDE;
+ virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; }
+
+ Value m_value;
+};
+
+class StringExpression FINAL : public Expression {
+public:
+ explicit StringExpression(const String&);
+ virtual void trace(Visitor*) OVERRIDE;
+
+private:
+ virtual Value evaluate() const OVERRIDE;
+ virtual Value::Type resultType() const OVERRIDE { return Value::StringValue; }
+
+ Value m_value;
+};
+
+class Negative FINAL : public Expression {
+private:
+ virtual Value evaluate() const OVERRIDE;
+ virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; }
+};
+
+class NumericOp FINAL : public Expression {
+public:
+ enum Opcode {
+ OP_Add, OP_Sub, OP_Mul, OP_Div, OP_Mod
+ };
+ NumericOp(Opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs);
+
+private:
+ virtual Value evaluate() const OVERRIDE;
+ virtual Value::Type resultType() const OVERRIDE { return Value::NumberValue; }
+
+ Opcode m_opcode;
+};
+
+class EqTestOp FINAL : public Expression {
+public:
+ enum Opcode { OpcodeEqual, OpcodeNotEqual, OpcodeGreaterThan, OpcodeLessThan, OpcodeGreaterOrEqual, OpcodeLessOrEqual };
+ EqTestOp(Opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs);
+ virtual Value evaluate() const OVERRIDE;
+
+private:
+ virtual Value::Type resultType() const OVERRIDE { return Value::BooleanValue; }
+ bool compare(const Value&, const Value&) const;
+
+ Opcode m_opcode;
+};
+
+class LogicalOp FINAL : public Expression {
+public:
+ enum Opcode { OP_And, OP_Or };
+ LogicalOp(Opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs);
+
+private:
+ virtual Value::Type resultType() const OVERRIDE { return Value::BooleanValue; }
+ bool shortCircuitOn() const;
+ virtual Value evaluate() const OVERRIDE;
+
+ Opcode m_opcode;
+};
+
+class Union FINAL : public Expression {
+private:
+ virtual Value evaluate() const OVERRIDE;
+ virtual Value::Type resultType() const OVERRIDE { return Value::NodeSetValue; }
+};
+
+class Predicate FINAL : public NoBaseWillBeGarbageCollected<Predicate> {
+ WTF_MAKE_NONCOPYABLE(Predicate); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
+ DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Predicate);
+public:
+ explicit Predicate(PassOwnPtrWillBeRawPtr<Expression>);
+ void trace(Visitor*);
+
+ bool evaluate() const;
+ bool isContextPositionSensitive() const { return m_expr->isContextPositionSensitive() || m_expr->resultType() == Value::NumberValue; }
+ bool isContextSizeSensitive() const { return m_expr->isContextSizeSensitive(); }
+
+private:
+ OwnPtrWillBeMember<Expression> m_expr;
+};
}
+}
#endif // XPathPredicate_h
« no previous file with comments | « Source/core/xml/XPathPath.h ('k') | Source/core/xml/XPathPredicate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698