HomeSort by relevance Sort by last modified time
    Searched refs:EqTestOp (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/xml/
XPathParser.h 52 EqTestOp::Opcode eqop;
58 Token(int t, EqTestOp::Opcode v): type(t), eqop(v) {}
100 Token makeTokenAndAdvance(int type, EqTestOp::Opcode, int advance = 1);
XPathPredicate.h 78 class EqTestOp : public Expression {
81 EqTestOp(Opcode, Expression* lhs, Expression* rhs);
XPathPredicate.cpp 101 EqTestOp::EqTestOp(Opcode opcode, Expression* lhs, Expression* rhs)
108 bool EqTestOp::compare(const Value& lhs, const Value& rhs) const
196 Value EqTestOp::evaluate() const
274 return EqTestOp(EqTestOp::OP_EQ, createFunction("position"), new Number(result.toNumber())).evaluate().toBoolean();
XPathGrammar.y 64 EqTestOp::Opcode eqop;
493 $$ = new EqTestOp($2, $1, $3);
505 $$ = new EqTestOp($2, $1, $3);
XPathParser.cpp 163 Token Parser::makeTokenAndAdvance(int code, EqTestOp::Opcode val, int advance)
306 return makeTokenAndAdvance(EQOP, EqTestOp::OP_EQ);
309 return makeTokenAndAdvance(EQOP, EqTestOp::OP_NE, 2);
313 return makeTokenAndAdvance(RELOP, EqTestOp::OP_LE, 2);
314 return makeTokenAndAdvance(RELOP, EqTestOp::OP_LT);
317 return makeTokenAndAdvance(RELOP, EqTestOp::OP_GE, 2);
318 return makeTokenAndAdvance(RELOP, EqTestOp::OP_GT);

Completed in 60 milliseconds