OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EqTestOp
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.h
49
EqTestOp
::Opcode eqop;
55
Token(int t,
EqTestOp
::Opcode v): type(t), eqop(v) { }
97
Token makeTokenAndAdvance(int type,
EqTestOp
::Opcode, int advance = 1);
XPathPredicate.h
76
class
EqTestOp
: public Expression {
79
EqTestOp
(Opcode, PassOwnPtr<Expression> lhs, PassOwnPtr<Expression> rhs);
XPathPredicate.cpp
96
EqTestOp
::
EqTestOp
(Opcode opcode, PassOwnPtr<Expression> lhs, PassOwnPtr<Expression> rhs)
103
bool
EqTestOp
::compare(const Value& lhs, const Value& rhs) const
191
Value
EqTestOp
::evaluate() const
268
return
EqTestOp
(
EqTestOp
::OP_EQ, adoptPtr(createFunction("position")), adoptPtr(new Number(result.toNumber()))).evaluate().toBoolean();
XPathGrammar.y
62
EqTestOp
::Opcode eqop;
491
$$ = new
EqTestOp
($2, adoptPtr($1), adoptPtr($3));
503
$$ = new
EqTestOp
($2, adoptPtr($1), adoptPtr($3));
XPathParser.cpp
157
Token Parser::makeTokenAndAdvance(int code,
EqTestOp
::Opcode val, int advance)
300
return makeTokenAndAdvance(EQOP,
EqTestOp
::OP_EQ);
303
return makeTokenAndAdvance(EQOP,
EqTestOp
::OP_NE, 2);
307
return makeTokenAndAdvance(RELOP,
EqTestOp
::OP_LE, 2);
308
return makeTokenAndAdvance(RELOP,
EqTestOp
::OP_LT);
311
return makeTokenAndAdvance(RELOP,
EqTestOp
::OP_GE, 2);
312
return makeTokenAndAdvance(RELOP,
EqTestOp
::OP_GT);
Completed in 63 milliseconds