/external/llvm-project/flang/lib/Parser/ |
D | preprocessor.cpp | 1068 TokenSequence expr3{ReplaceMacros(expr2, *prescanner)}; in IsIfPredicateTrue() local 1069 if (expr3.HasBlanks()) { in IsIfPredicateTrue() 1070 expr3.RemoveBlanks(); in IsIfPredicateTrue() 1072 if (expr3.empty()) { in IsIfPredicateTrue() 1078 bool result{ExpressionValue(expr3, 0, &atToken, &error) != 0}; in IsIfPredicateTrue() 1081 } else if (atToken < expr3.SizeInTokens() && in IsIfPredicateTrue() 1082 expr3.TokenAt(atToken).ToString() != "!") { in IsIfPredicateTrue() 1083 prescanner->Say(expr3.GetIntervalProvenanceRange( in IsIfPredicateTrue() 1084 atToken, expr3.SizeInTokens() - atToken), in IsIfPredicateTrue()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
D | DebugTreeGrammar.cs | 211 BigInteger expr3 = default(BigInteger); in stat() 304 expr3=expr(); in stat() 311 globalMemory[(ID2!=null?ID2.Text:null)] = expr3; in stat()
|
D | ProfileTreeGrammar.cs | 216 BigInteger expr3 = default(BigInteger); in stat() 309 expr3=expr(); in stat() 316 globalMemory[(ID2!=null?ID2.Text:null)] = expr3; in stat()
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 431 expr3 = self.com_node(nodelist[5]) 433 expr3 = None 442 return Raise(expr1, expr2, expr3, lineno=nodelist[0][2]) 489 expr3 = self.com_node(nodelist[5]) 491 expr3 = None 493 expr2 = expr3 = None 495 return Exec(expr1, expr2, expr3, lineno=nodelist[0][2])
|
D | ast.py | 1100 def __init__(self, expr1, expr2, expr3, lineno=None): argument 1103 self.expr3 = expr3 1110 children.append(self.expr3) 1119 if self.expr3 is not None: 1120 nodelist.append(self.expr3) 1124 return "Raise(%s, %s, %s)" % (repr(self.expr1), repr(self.expr2), repr(self.expr3))
|
D | pycodegen.py | 772 if node.expr3: 773 self.visit(node.expr3)
|
/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 29 Raise: expr1&, expr2&, expr3&
|
/external/javassist/src/main/javassist/compiler/ |
D | Parser.java | 366 Stmnt expr1, expr3; in parseFor() local 391 expr3 = null; in parseFor() 393 expr3 = parseExprList(tbl2); in parseFor() 400 new ASTList(expr3, body))); in parseFor()
|
/external/libchrome/third_party/jinja2/ |
D | parser.py | 441 expr3 = self.parse_condexpr() 443 expr3 = None 444 expr1 = nodes.CondExpr(expr2, expr1, expr3, lineno=lineno)
|
/external/python/jinja/src/jinja2/ |
D | parser.py | 452 expr3 = self.parse_condexpr() 454 expr3 = None 455 expr1 = nodes.CondExpr(expr2, expr1, expr3, lineno=lineno)
|
/external/llvm-project/mlir/include/mlir/Dialect/Vector/ |
D | VectorOps.td | 1106 vector.transfer_read %A[%expr1, %expr2, %expr3, %expr4] 1111 This operation always reads a slice starting at `%A[%expr1, %expr2, %expr3, 1113 is: `%A[%expr1 : %expr1 + 5, %expr2, %expr3:%expr3 + 3, %expr4]` 1122 // %expr1, %expr2, %expr3, %expr4 defined before this point 1128 %a = load %A[%expr1 + %k, %expr2, %expr3 + %i, %expr4] : 1144 // %expr1, %expr2, %expr3, %expr4 defined before this point 1149 %a = load %A[%expr1 + %k, %expr2, %expr3 + %i, %expr4] :
|
/external/python/cpython2/Doc/reference/ |
D | expressions.rst | 1441 expr1, expr2, expr3, expr4 1442 (expr1, expr2, expr3, expr4) 1443 {expr1: expr2, expr3: expr4} 1444 expr1 + expr2 * (expr3 - expr4) 1445 expr1(expr2, expr3, *expr4, **expr5) 1446 expr3, expr4 = expr1, expr2
|
/external/python/cpython3/Doc/reference/ |
D | expressions.rst | 1796 expr1, expr2, expr3, expr4 1797 (expr1, expr2, expr3, expr4) 1798 {expr1: expr2, expr3: expr4} 1799 expr1 + expr2 * (expr3 - expr4) 1800 expr1(expr2, expr3, *expr4, **expr5) 1801 expr3, expr4 = expr1, expr2
|
/external/python/cpython2/Python/ |
D | ast.c | 2405 expr_ty expr1, expr2, expr3; in ast_for_flow_stmt() local 2413 expr3 = ast_for_expr(c, CHILD(ch, 5)); in ast_for_flow_stmt() 2414 if (!expr3) in ast_for_flow_stmt() 2417 return Raise(expr1, expr2, expr3, LINENO(n), n->n_col_offset, in ast_for_flow_stmt()
|
/external/python/cpython3/Python/ |
D | ast.c | 3225 expr_ty expr1, expr2, expr3; in ast_for_expr_stmt() local 3295 expr3 = ast_for_testlist(c, ch); in ast_for_expr_stmt() 3298 expr3 = ast_for_expr(c, ch); in ast_for_expr_stmt() 3300 if (!expr3) { in ast_for_expr_stmt() 3303 return AnnAssign(expr1, expr2, expr3, simple, in ast_for_expr_stmt()
|
/external/python/cpython2/Doc/library/ |
D | compiler.rst | 446 | | :attr:`expr3` | |
|
/external/llvm-project/polly/lib/External/isl/ |
D | isl_test.c | 9372 isl_ast_expr *expr, *expr1, *expr2, *expr3; in test_ast() local 9401 expr3 = isl_ast_expr_from_id(isl_id_alloc(ctx, "C", NULL)); in test_ast() 9402 expr = isl_ast_expr_sub(expr3, expr); in test_ast()
|
/external/python/cpython3/Doc/howto/ |
D | functional.rst | 367 for expr3 in sequence3 ...
|
/external/python/cpython2/Doc/howto/ |
D | functional.rst | 365 for expr3 in sequence3 ...
|