/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathExpressionNode.cpp | 35 EvaluationContext& Expression::evaluationContext() 41 Expression::Expression() 48 Expression::~Expression()
|
XPathExpressionNode.h | 56 class Expression : public ParseNode { 57 WTF_MAKE_NONCOPYABLE(Expression); WTF_MAKE_FAST_ALLOCATED; 61 Expression(); 62 virtual ~Expression(); 66 void addSubExpression(PassOwnPtr<Expression> expr) 85 Expression* subExpr(unsigned i) { return m_subExpressions[i].get(); } 86 const Expression* subExpr(unsigned i) const { return m_subExpressions[i].get(); } 89 Vector<OwnPtr<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...] |
/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 | 51 : Deduced(0), Loc(Loc), HasSFINAEDiagnostic(false), Expression(0) { } 158 /// \brief The expression which caused a deduction failure. 163 Expr *Expression; 207 /// \brief Return the expression this deduction failure refers to,
|
/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 | 63 /// The template argument is a value- or type-dependent expression 65 Expression, 175 /// \brief Construct a template argument that is an expression. 178 /// lists used for dependent types and for expression; it will not 180 TemplateArgument(Expr *E) : Kind(Expression) { 294 /// \brief Retrieve the template argument as an expression. 296 assert(Kind == Expression && "Unexpected kind"); 360 Expr *Expression; 369 TemplateArgumentLocInfo(Expr *E) : Expression(E) {} 386 return Expression; [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/clang/include/clang/ASTMatchers/ |
ASTMatchers.h | 694 /// Example matches the implicit this expression in "return i". 773 /// default value of the second parameter in the call expression f(42) 1143 /// \brief Matches a reinterpret_cast expression. 1145 /// Either the source expression or the destination type can be matched 1157 /// \brief Matches a C++ static_cast expression. 1174 /// \brief Matches a dynamic_cast expression. 1190 /// \brief Matches a const_cast expression. 1202 /// \brief Matches a C-style cast expression. 1214 /// Matches any cast expression written in user code, whether it be a [all...] |
/external/llvm/lib/Target/PowerPC/AsmParser/ |
PPCAsmParser.cpp | 111 // Evaluate an expression containing condition register 169 llvm_unreachable("Invalid expression kind!"); 246 Expression, 292 case Expression: 316 assert(Kind == Expression && "Invalid access!"); 321 assert(Kind == Expression && "Invalid access!"); 351 bool isImm() const { return Kind == Immediate || Kind == Expression; } 355 bool isU16Imm() const { return Kind == Expression || 357 bool isS16Imm() const { return Kind == Expression || 359 bool isS16ImmX4() const { return Kind == Expression || [all...] |
/external/v8/src/ |
preparser.h | 224 class Expression; 263 friend class Expression; 266 // Bits 0 and 1 are used to identify the type of expression: 271 // Bit 2 is used to mark the expression as being parenthesized, 273 class Expression { 275 static Expression Default() { 276 return Expression(kUnknownExpression); 279 static Expression FromIdentifier(Identifier id) { 280 return Expression(kIdentifierFlag | (id.type_ << kIdentifierShift)); 283 static Expression StringLiteral() [all...] |
/external/chromium_org/v8/src/ |
preparser.h | 293 class Expression; 337 friend class Expression; 340 // Bits 0 and 1 are used to identify the type of expression: 345 // Bit 2 is used to mark the expression as being parenthesized, 347 class Expression { 349 static Expression Default() { 350 return Expression(kUnknownExpression); 353 static Expression FromIdentifier(Identifier id) { 354 return Expression(kIdentifierFlag | (id.type_ << kIdentifierShift)); 357 static Expression StringLiteral() [all...] |
/external/clang/lib/AST/ |
ASTDiagnostic.cpp | 376 /// Policy - Used during expression printing. 414 /// Expression difference, uses Expr 415 Expression, 442 /// FromExpr, ToExpr - The expression arguments. [all...] |
/external/llvm/lib/Transforms/Scalar/ |
GVN.cpp | 75 /// as an efficient mechanism to determine the expression-wise equivalence of 78 struct Expression { 83 Expression(uint32_t o = ~2U) : opcode(o) { } 85 bool operator==(const Expression &other) const { 97 friend hash_code hash_value(const Expression &Value) { 106 DenseMap<Expression, uint32_t> expressionNumbering; 113 Expression create_expression(Instruction* I); 114 Expression create_cmp_expression(unsigned Opcode, 117 Expression create_extractvalue_expression(ExtractValueInst* EI); 138 template <> struct DenseMapInfo<Expression> { [all...] |
/external/v8/tools/ |
test.py | 762 class Expression(object): 766 class Constant(Expression): 775 class Variable(Expression): 788 class Outcome(Expression): 850 class Operation(Expression): 1046 """Parses a logical expression into an Expression object""" 1049 print "Malformed expression: '%s'" % expr 1054 print "Malformed expression: '%s'" % expr 1057 print "Malformed expression: '%s'" % exp [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 | |