Home
last modified time | relevance | path

Searched refs:subexpr (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/plat-irix5/
Dpanelparser.py87 subexpr, tokens = parse_expr(tokens)
88 expr.append(subexpr)
/external/python/cpython2/Lib/plat-irix6/
Dpanelparser.py87 subexpr, tokens = parse_expr(tokens)
88 expr.append(subexpr)
/external/skia/src/sksl/ir/
DSkSLFunctionCall.cpp108 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/
DExprCXX.cpp1025 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/
DExprCXX.cpp1291 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/
Dlparser.c1250 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/
DExpr.h998 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()
DExprCXX.h3356 static ExprWithCleanups *Create(const ASTContext &C, Expr *subexpr,
/external/clang/include/clang/AST/
DExprCXX.h2960 static ExprWithCleanups *Create(const ASTContext &C, Expr *subexpr,