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)
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
expr.pxi 57 return Expression(__pass_voidp(expr, Expression))
59 cdef class Expression:
65 if isinstance(op, Expression):
66 self.expr = yasm_expr_copy((<Expression>op).expr)
69 self.expr = <yasm_expr *>__get_voidp(op, Expression)
90 if isinstance(value, Expression):
91 return yasm_expr_expr(yasm_expr_copy((<Expression>value).expr))
120 raise ValueError("not a SEG:OFF expression")
127 raise ValueError("not a WRT expression")
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
ScriptFile.h 40 Expression, // --defsym
  /external/apache-xml/src/main/java/org/apache/xpath/
Expression.java 19 * $Id: Expression.java 468655 2006-10-28 07:12:06Z minchau $
37 * This abstract class serves as the base for all expression objects. An
38 * Expression can be executed to return a {@link org.apache.xpath.objects.XObject},
45 public abstract class Expression implements java.io.Serializable, ExpressionNode, XPathVisitable
49 * The location where this expression was built from. Need for diagnostic
56 * Tell if this expression or it's subexpressions can traverse outside
67 // * Set the location where this expression was built from.
70 // * @param locator the location where this expression was built from, may be
79 * Execute an expression in the XPath runtime context, and return the
80 * result of the expression
    [all...]
  /external/clang/include/clang/Sema/
TemplateDeduction.h 53 Expression(nullptr) {}
160 /// \brief The expression which caused a deduction failure.
165 Expr *Expression;
214 /// \brief Return the expression this deduction failure refers to,
  /external/deqp/framework/randomshaders/
rsgExpression.hpp 50 class Expression
53 virtual ~Expression (void);
56 virtual Expression* createNextChild (GeneratorState& state) = DE_NULL;
62 virtual ExecValueAccess getLValue (void) const { DE_ASSERT(DE_FALSE); throw Exception("Expression::getLValue(): not L-value node"); }
64 static Expression* createRandom (GeneratorState& state, ConstValueRangeAccess valueRange);
65 static Expression* createRandomLValue (GeneratorState& state, ConstValueRangeAccess valueRange);
68 class VariableAccess : public Expression
73 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; }
106 class FloatLiteral : public Expression
112 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL;
    [all...]
rsgExpression.cpp 273 template <class T> Expression* create (GeneratorState& state, ConstValueRangeAccess valueRange) { return new T(state, valueRange); }
278 Expression* (*create) (GeneratorState& state, ConstValueRangeAccess valueRange);
345 Expression::~Expression (void)
349 Expression* Expression::createRandom (GeneratorState& state, ConstValueRangeAccess valueRange)
354 Expression* Expression::createRandomLValue (GeneratorState& state, ConstValueRangeAccess valueRange)
732 for (vector<Expression*>::iterator i = m_inputExpressions.begin(); i != m_inputExpressions.end(); i++)
736 Expression* ConstructorOp::createNextChild (GeneratorState& state
    [all...]
  /frameworks/base/tools/aidl/
AST.h 42 struct Expression
44 virtual ~Expression();
48 struct LiteralExpression : public Expression
58 struct StringLiteralExpression : public Expression
67 struct Variable : public Expression
83 struct FieldVariable : public Expression
85 Expression* object;
89 FieldVariable(Expression* object, const string& name);
126 void Add(Expression* expression);
131 Expression* expression; member in struct:ExpressionStatement
221 Expression* expression; member in struct:Cast
243 Expression* expression; member in struct:IfStatement
254 Expression* expression; member in struct:ReturnStatement
302 Expression* expression; member in struct:SwitchStatement
    [all...]
AST.cpp 37 WriteArgumentList(FILE* to, const vector<Expression*>& arguments)
95 Expression::~Expression()
177 FieldVariable::FieldVariable(Expression* o, const string& n)
238 StatementBlock::Add(Expression* expression)
240 this->statements.push_back(new ExpressionStatement(expression));
243 ExpressionStatement::ExpressionStatement(Expression* e)
244 :expression(e)
255 this->expression->Write(to)
350 Expression* expression = (Expression*)va_arg(args, void*); local
413 Expression* expression = (Expression*)va_arg(args, void*); local
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 62 /// The template argument is an expression, and we've not resolved it to one
66 /// __uuidof expression (a Microsoft extension).
67 Expression,
186 /// \brief Construct a template argument that is an expression.
189 /// lists used for dependent types and for expression; it will not
192 TypeOrValue.Kind = Expression;
307 /// \brief Retrieve the template argument as an expression.
309 assert(getKind() == Expression && "Unexpected kind");
373 Expr *Expression;
382 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
40 nodes["expression"] = "Expression"
51 return "Expression(%s)" % (repr(self.node))
    [all...]
pycodegen.py 61 gen = Expression(source, filename)
89 class Expression(AbstractCompileMode):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
40 nodes["expression"] = "Expression"
51 return "Expression(%s)" % (repr(self.node))
    [all...]
pycodegen.py 61 gen = Expression(source, filename)
89 class Expression(AbstractCompileMode):
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 151 // Evaluate an expression containing condition register
209 llvm_unreachable("Invalid expression kind!");
297 Expression,
343 case Expression:
367 assert(Kind == Expression && "Invalid access!");
372 assert(Kind == Expression && "Invalid access!");
407 bool isImm() const override { return Kind == Immediate || Kind == Expression; }
412 bool isU16Imm() const { return Kind == Expression ||
414 bool isS16Imm() const { return Kind == Expression ||
416 bool isS16ImmX4() const { return Kind == Expression ||
    [all...]
  /external/chromium_org/v8/src/
parser.h 218 // "Adds" an empty expression. Does nothing except consume a
323 // Parser state of containing expression, if any.
330 // Index in captures array of first capture in this sub-expression, if any.
331 // Also the capture index of this sub-expression itself, if group_type
393 typedef v8::internal::Expression* Expression;
398 typedef ZoneList<v8::internal::Expression*>* ExpressionList;
426 // Returns true if the expression is of type "this.foo".
427 static bool IsThisProperty(Expression* expression);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 482 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
495 if (Node.getKind() == TemplateArgument::Expression)
672 /// of the sub-expression's evaluation.
760 /// Example matches the implicit this expression in "return i".
839 /// default value of the second parameter in the call expression f(42)
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 362 OS << "lambda expression";
406 /// Policy - Used during expression printing.
444 /// Expression difference, uses Expr
445 Expression,
472 /// FromExpr, ToExpr - The expression arguments.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 53 } Expression;
379 #define Expression(a0, a1) _Py_Expression(a0, a1)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 53 } Expression;
379 #define Expression(a0, a1) _Py_Expression(a0, a1)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 

Completed in 1979 milliseconds

1 2 3