Home
last modified time | relevance | path

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

/third_party/rust/crates/cxx/gen/src/
Dcfg.rs76 for subexpr in list { in try_eval()
77 match try_eval(cfg_evaluator, subexpr) { in try_eval()
91 for subexpr in list { in try_eval()
92 match try_eval(cfg_evaluator, subexpr) { in try_eval()
104 CfgExpr::Not(subexpr) => match try_eval(cfg_evaluator, subexpr) { in try_eval()
/third_party/node/deps/v8/src/ast/
Dast.cc859 bool BinaryOperation::IsSmiLiteralOperation(Expression** subexpr, in IsSmiLiteralOperation() argument
861 return MatchSmiLiteralOperation(left_, right_, subexpr, literal) || in IsSmiLiteralOperation()
863 MatchSmiLiteralOperation(right_, left_, subexpr, literal)); in IsSmiLiteralOperation()
Dprettyprinter.cc299 Expression* subexpr = node->values()->at(i); in VisitArrayLiteral() local
300 Spread* spread = subexpr->AsSpread(); in VisitArrayLiteral()
309 Find(subexpr, true); in VisitArrayLiteral()
Dast.h1855 bool IsSmiLiteralOperation(Expression** subexpr, Smi* literal);
/third_party/node/deps/v8/src/interpreter/
Dbytecode-generator.cc3437 Expression* subexpr = *current; in BuildCreateArrayLiteral() local
3438 DCHECK(!subexpr->IsSpread()); in BuildCreateArrayLiteral()
3440 if (subexpr->IsCompileTimeValue()) continue; in BuildCreateArrayLiteral()
3445 VisitForAccumulatorValue(subexpr); in BuildCreateArrayLiteral()
3464 Expression* subexpr = *current; in BuildCreateArrayLiteral() local
3465 if (subexpr->IsSpread()) { in BuildCreateArrayLiteral()
3468 subexpr->AsSpread()->expression()); in BuildCreateArrayLiteral()
3469 VisitForAccumulatorValue(subexpr->AsSpread()->expression()); in BuildCreateArrayLiteral()
3470 builder()->SetExpressionPosition(subexpr->AsSpread()->expression()); in BuildCreateArrayLiteral()
3481 } else if (!subexpr->IsTheHoleLiteral()) { in BuildCreateArrayLiteral()
[all …]
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_glsl.cpp4475 auto subexpr = join(base_expr, "[", convert_to_string(i), "]"); in to_rerolled_array_expression() local
4477 expr += subexpr; in to_rerolled_array_expression()
4479 expr += to_rerolled_array_expression(subexpr, parent); in to_rerolled_array_expression()