Home
last modified time | relevance | path

Searched refs:subexpr (Results 1 – 10 of 10) 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/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/v8/src/ast/
Dast.cc760 bool BinaryOperation::IsSmiLiteralOperation(Expression** subexpr, in IsSmiLiteralOperation() argument
762 return MatchSmiLiteralOperation(left_, right_, subexpr, literal) || in IsSmiLiteralOperation()
764 MatchSmiLiteralOperation(right_, left_, subexpr, literal)); in IsSmiLiteralOperation()
Dprettyprinter.cc260 Expression* subexpr = node->values()->at(i); in VisitArrayLiteral() local
261 Spread* spread = subexpr->AsSpread(); in VisitArrayLiteral()
270 Find(subexpr, true); in VisitArrayLiteral()
Dast.h1836 bool IsSmiLiteralOperation(Expression** subexpr, Smi** literal);
/external/v8/src/interpreter/
Dbytecode-generator.cc2383 Expression* subexpr = *iter; in BuildArrayLiteralElementsInsertion() local
2384 DCHECK(!subexpr->IsSpread()); in BuildArrayLiteralElementsInsertion()
2385 if (skip_constants && subexpr->IsCompileTimeValue()) continue; in BuildArrayLiteralElementsInsertion()
2392 VisitForAccumulatorValue(subexpr); in BuildArrayLiteralElementsInsertion()
2406 Expression* subexpr = *iter; in BuildArrayLiteralElementsInsertion() local
2407 if (subexpr->IsSpread()) { in BuildArrayLiteralElementsInsertion()
2408 BuildArrayLiteralSpread(subexpr->AsSpread(), array, index, index_slot, in BuildArrayLiteralElementsInsertion()
2410 } else if (!subexpr->IsTheHoleLiteral()) { in BuildArrayLiteralElementsInsertion()
2412 VisitForAccumulatorValue(subexpr); in BuildArrayLiteralElementsInsertion()
4181 Expression* subexpr; in VisitArithmeticExpression() local
[all …]
/external/lua/src/
Dlparser.c1048 static BinOpr subexpr (LexState *ls, expdesc *v, int limit) { in subexpr() function
1056 subexpr(ls, v, UNARY_PRIORITY); in subexpr()
1069 nextop = subexpr(ls, &v2, priority[op].right); in subexpr()
1079 subexpr(ls, v, 0); in expr()
/external/u-boot/tools/buildman/
Dkconfiglib.py1431 for subexpr in expr[1]:
1432 ev = self._eval_expr_rec(subexpr)
1450 for subexpr in expr[1]:
1451 ev = self._eval_expr_rec(subexpr)
/external/clang/include/clang/AST/
DExprCXX.h2960 static ExprWithCleanups *Create(const ASTContext &C, Expr *subexpr,