HomeSort by relevance Sort by last modified time
    Searched defs:Expression (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathExpressionNode.cpp 35 EvaluationContext& Expression::evaluationContext()
41 Expression::Expression()
48 Expression::~Expression()
52 void Expression::trace(Visitor* visitor)
XPathExpressionNode.h 57 class Expression : public ParseNode {
58 WTF_MAKE_NONCOPYABLE(Expression); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
62 Expression();
63 virtual ~Expression();
68 void addSubExpression(PassOwnPtrWillBeRawPtr<Expression> expr)
87 Expression* subExpr(unsigned i) { return m_subExpressions[i].get(); }
88 const Expression* subExpr(unsigned i) const { return m_subExpressions[i].get(); }
91 WillBeHeapVector<OwnPtrWillBeMember<Expression> > m_subExpressions;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
test_bytecode.py 2 from yasm import Bytecode, Expression
test_expr.py 2 from yasm import Expression
7 e1 = Expression(operator.add, 1, 2)
8 e2 = Expression('+', 1, 2)
13 e1 = Expression('/', 15, 5)
test_symrec.py 2 from yasm import SymbolTable, Expression, YasmError
21 expr = Expression('+', 1, 2)