Searched refs:subexpr (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/plat-irix5/ |
D | panelparser.py | 87 subexpr, tokens = parse_expr(tokens) 88 expr.append(subexpr)
|
/external/python/cpython2/Lib/plat-irix6/ |
D | panelparser.py | 87 subexpr, tokens = parse_expr(tokens) 88 expr.append(subexpr)
|
/external/skia/src/sksl/ir/ |
D | SkSLFunctionCall.cpp | 108 const Expression* subexpr = arg->getConstantSubexpression(index); in evaluate_intrinsic_1_of_type() local 109 SkASSERT(subexpr); in evaluate_intrinsic_1_of_type() 110 auto value = evaluate(subexpr->as<LITERAL>().value()); in evaluate_intrinsic_1_of_type() 117 result.push_back(LITERAL::Make(subexpr->fOffset, value, &type)); in evaluate_intrinsic_1_of_type()
|
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 1025 ExprWithCleanups::ExprWithCleanups(Expr *subexpr, in ExprWithCleanups() argument 1028 : Expr(ExprWithCleanupsClass, subexpr->getType(), in ExprWithCleanups() 1029 subexpr->getValueKind(), subexpr->getObjectKind(), in ExprWithCleanups() 1030 subexpr->isTypeDependent(), subexpr->isValueDependent(), in ExprWithCleanups() 1031 subexpr->isInstantiationDependent(), in ExprWithCleanups() 1032 subexpr->containsUnexpandedParameterPack()), in ExprWithCleanups() 1033 SubExpr(subexpr) { in ExprWithCleanups() 1040 ExprWithCleanups *ExprWithCleanups::Create(const ASTContext &C, Expr *subexpr, in Create() argument 1046 ExprWithCleanups(subexpr, CleanupsHaveSideEffects, objects); in Create()
|
/external/llvm-project/clang/lib/AST/ |
D | ExprCXX.cpp | 1291 ExprWithCleanups::ExprWithCleanups(Expr *subexpr, in ExprWithCleanups() argument 1294 : FullExpr(ExprWithCleanupsClass, subexpr) { in ExprWithCleanups() 1301 ExprWithCleanups *ExprWithCleanups::Create(const ASTContext &C, Expr *subexpr, in Create() argument 1307 ExprWithCleanups(subexpr, CleanupsHaveSideEffects, objects); in Create()
|
/external/lua/src/ |
D | lparser.c | 1250 static BinOpr subexpr (LexState *ls, expdesc *v, int limit) { in subexpr() function 1258 subexpr(ls, v, UNARY_PRIORITY); in subexpr() 1271 nextop = subexpr(ls, &v2, priority[op].right); in subexpr() 1281 subexpr(ls, v, 0); in expr()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Expr.h | 998 FullExpr(StmtClass SC, Expr *subexpr) in FullExpr() argument 999 : Expr(SC, subexpr->getType(), subexpr->getValueKind(), in FullExpr() 1000 subexpr->getObjectKind()), in FullExpr() 1001 SubExpr(subexpr) { in FullExpr()
|
D | ExprCXX.h | 3356 static ExprWithCleanups *Create(const ASTContext &C, Expr *subexpr,
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 2960 static ExprWithCleanups *Create(const ASTContext &C, Expr *subexpr,
|