/external/v8/src/asmjs/ |
asm-parser.cc | [all...] |
/external/v8/src/parsing/ |
parser.h | 86 Parameter(const AstRawString* name, Expression* pattern, 87 Expression* initializer, int position, 96 Expression* pattern; 97 Expression* initializer; 122 typedef v8::internal::Expression* Expression; 128 typedef ZonePtrList<v8::internal::Expression>* ExpressionList; 291 Expression* RewriteReturn(Expression* return_value, int pos); 320 Expression* value [all...] |
preparser.h | 103 static PreParserExpression Spread(const PreParserExpression& expression) { 105 expression.variables_); 111 PreParserExpression expression(TypeField::encode(kIdentifierExpression) | 113 expression.AddVariable(variable, zone); 114 return expression; 321 // At the moment PreParser doesn't track these expression types. 331 // Dummy implementation for making expression->somefunc() work in both Parser 395 // Expression ASTNode --- This is by necessity, due to the fact that 396 // Expression nodes may be represented as multiple Types, not exclusively 412 // accumulates variables in that expression 577 PreParserExpression expression = PreParserExpression::Default(); local [all...] |
/external/clang/lib/CodeGen/ |
CGObjC.cpp | 55 /// the appropriate expression boxing method. This will either be 326 /// Given an expression of ObjC pointer type, check whether it was 629 /// Use objc_setProperty for the setter, but use expression 636 /// The 'expression' strategy is to emit normal assignment or 638 Expression 681 // TODO: we could actually use setProperty and an expression for non-atomics. 693 // In ARC, if the property is non-atomic, use expression emission, 697 // Using standard expression emission for the setter is only 704 Kind = Expression; 710 // the property isn't atomic, we can use normal expression [all...] |
/external/llvm/lib/Target/AMDGPU/AsmParser/ |
AMDGPUAsmParser.cpp | 55 Expression 164 if (Kind != Expression || !Expr) 168 // a token, like 'gds', or an expression that references a global variable. 169 // In this case, we assume the string is an expression, and if we need to 294 return Kind == Expression; 318 if (Kind == Expression) 481 case Expression: 527 auto Op = llvm::make_unique<AMDGPUOperand>(Expression); [all...] |
/external/python/cpython3/Include/ |
Python-ast.h | 57 } Expression; 446 #define Expression(a0, a1) _Py_Expression(a0, a1)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
Python-ast.c | 682 Expression_type = make_type("Expression", mod_type, Expression_fields,
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
Python-ast.c | 665 Expression_type = make_type("Expression", mod_type, Expression_fields,
[all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 95 // __except filter expression 181 /// true except when we are parsing an expression within a C++ 193 /// send expression. 571 /// \brief Read an already-translated primary expression out of an annotation 577 /// \brief Set the primary expression corresponding to the given annotation [all...] |
/external/python/cpython2/Python/ |
Python-ast.c | 682 Expression_type = make_type("Expression", mod_type, Expression_fields, [all...] |
/external/python/cpython3/Python/ |
Python-ast.c | 851 Expression_type = make_type("Expression", mod_type, Expression_fields, 1); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/AsmParser/ |
AMDGPUAsmParser.cpp | 82 Expression 209 if (Kind != Expression || !Expr) 213 // a token, like 'gds', or an expression that references a global variable. 214 // In this case, we assume the string is an expression, and if we need to 494 return Kind == Expression; 522 if (Kind == Expression) 719 case Expression: 765 auto Op = llvm::make_unique<AMDGPUOperand>(Expression, AsmParser); [all...] |
/external/v8/src/ast/ |
ast.h | 121 class Expression; 189 class Expression : public AstNode { 203 // True iff the expression is a valid reference expression. 215 // True iff the expression is a class or function expression without 219 // True iff the expression is a concise method definition. 222 // True iff the expression is an accessor function definition. 225 // True iff the expression is a literal represented as a smi. 228 // True iff the expression is a literal represented as a number 699 Expression* expression() const { return expression_; } function in class:v8::internal::final 752 Expression* expression() const { return expression_; } function in class:v8::internal::final 780 Expression* expression() const { return expression_; } function in class:v8::internal::final 1681 Expression* expression() const { return expression_; } function in class:v8::internal::final 1748 Expression* expression() const { return expression_; } function in class:v8::internal::final 1810 Expression* expression() const { return expression_; } function in class:v8::internal::final 1903 Expression* expression; member in struct:v8::internal::final::NaryOperationEntry 1921 Expression* expression() const { return expression_; } function in class:v8::internal::final 1970 Expression* expression() const { return expression_; } function in class:v8::internal::final 2097 Expression* expression() const { return expr_; } function in class:v8::internal::final 2150 Expression* expression() const { return expression_; } function in class:v8::internal::Suspend 2761 Expression* expression = expressions->at(i); local [all...] |
/external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/ |
GeneratedJavaParser.java | 640 NodeList<Expression> args = emptyList(); 1001 Expression init = null; 1043 final public Expression VariableInitializer() throws ParseException {Expression ret; 1090 ret = Expression(); 1101 final public ArrayInitializerExpr ArrayInitializer() throws ParseException {NodeList<Expression> values = emptyList(); 1102 Expression val; [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/ |
ASTParser.java | 106 private Expression generateLambda(Expression ret, Statement lambdaBody) { 108 Expression inner = ((EnclosedExpr) ret).getInner(); 125 Expression inner = generateLambda(castExpr.getExpr(), lambdaBody); 128 addProblem("Failed to parse lambda expression! Please create an issue at https://github.com/javaparser/javaparser/issues"); 133 private ArrayCreationExpr juggleArrayCreation(Range range, Type type, List<Expression> dimensions, List<List<AnnotationExpr>> arrayAnnotations, ArrayInitializerExpr arrayInitializerExpr) { 700 List<Expression> args = null; 1022 Expression init = null; 1061 final public Expression VariableInitializer() {Expression ret [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/ |
ASTParser.java | 86 private Expression generateLambda(Expression ret, Statement lambdaBody) { 88 Expression inner = ((EnclosedExpr) ret).getInner(); 105 throw new ParseException("Failed to parse lambda expression! Please create an issue at https://github.com/javaparser/javaparser/issues"); 1018 Expression init = null; [all...] |
/external/guice/extensions/struts2/lib/ |
jsp-api-2.1.jar | |
freemarker-2.3.16.jar | |
jsp-2.1.jar | |
core-3.1.1.jar | |
/external/testng/ant/3rdparty/ |
cobertura.jar | |
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/ |
javaparser-core-2.1.0.jar | |
javaparser-core-3.0.0-alpha.2.jar | |
/external/guice/extensions/persist/lib/ |
hsqldb.jar | |
/external/kotlinc/lib/ |
kotlin-reflect.jar | |