/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 163 static ExprAST *ParseExpression(); 181 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 209 ExprAST *V = ParseExpression(); in ParseParenExpr() 267 static ExprAST *ParseExpression() { in ParseExpression() function 304 if (ExprAST *E = ParseExpression()) in ParseDefinition() 311 if (ExprAST *E = ParseExpression()) { in ParseTopLevelExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 250 static ExprAST *ParseExpression(); 268 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 298 ExprAST *V = ParseExpression(); in ParseParenExpr() 313 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 321 ExprAST *Then = ParseExpression(); in ParseIfExpr() 330 ExprAST *Else = ParseExpression(); in ParseIfExpr() 351 ExprAST *Start = ParseExpression(); in ParseForExpr() 358 ExprAST *End = ParseExpression(); in ParseForExpr() 366 Step = ParseExpression(); in ParseForExpr() 375 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 281 static ExprAST *ParseExpression(); 299 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 329 ExprAST *V = ParseExpression(); in ParseParenExpr() 344 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 352 ExprAST *Then = ParseExpression(); in ParseIfExpr() 361 ExprAST *Else = ParseExpression(); in ParseIfExpr() 382 ExprAST *Start = ParseExpression(); in ParseForExpr() 389 ExprAST *End = ParseExpression(); in ParseForExpr() 397 Step = ParseExpression(); in ParseForExpr() 406 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/v8/src/ |
D | preparser.cc | 499 Expression expr = ParseExpression(true, CHECK_OK); in ParseExpressionOrLabelledStatement() 528 ParseExpression(true, CHECK_OK); in ParseIfStatement() 594 ParseExpression(true, CHECK_OK); in ParseReturnStatement() 611 ParseExpression(true, CHECK_OK); in ParseWithStatement() 627 ParseExpression(true, CHECK_OK); in ParseSwitchStatement() 635 ParseExpression(true, CHECK_OK); in ParseSwitchStatement() 661 ParseExpression(true, CHECK_OK); in ParseDoWhileStatement() 674 ParseExpression(true, CHECK_OK); in ParseWhileStatement() 708 ParseExpression(true, CHECK_OK); in ParseForStatement() 715 Expression lhs = ParseExpression(false, CHECK_OK); in ParseForStatement() [all …]
|
D | parser.cc | 1025 Expression* expression = ParseExpression(false, &ok); in ParseLazy() 2407 Expression* expr = ParseExpression(true, CHECK_OK); in ParseExpressionOrLabelledStatement() 2471 Expression* condition = ParseExpression(true, CHECK_OK); in ParseIfStatement() 2571 return_value = ParseExpression(true, CHECK_OK); in ParseReturnStatement() 2609 Expression* expr = ParseExpression(true, CHECK_OK); in ParseWithStatement() 2632 label = ParseExpression(true, CHECK_OK); in ParseCaseClause() 2668 Expression* tag = ParseExpression(true, CHECK_OK); in ParseSwitchStatement() 2696 Expression* exception = ParseExpression(true, CHECK_OK); in ParseThrowStatement() 2823 Expression* cond = ParseExpression(true, CHECK_OK); in ParseDoWhileStatement() 2847 Expression* cond = ParseExpression(true, CHECK_OK); in ParseWhileStatement() [all …]
|
D | preparser.h | 483 ExpressionT ParseExpression(bool accept_IN, bool* ok); 1827 result = this->ParseExpression(true, CHECK_OK); in ParsePrimaryExpression() 1870 typename ParserBase<Traits>::ExpressionT ParserBase<Traits>::ParseExpression( in ParseExpression() function 2408 ExpressionT index = ParseExpression(true, CHECK_OK); in ParseLeftHandSideExpression() 2580 ExpressionT index = this->ParseExpression(true, CHECK_OK); in ParseMemberExpressionContinuation()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 282 static ExprAST *ParseExpression(); 300 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 328 ExprAST *V = ParseExpression(); in ParseParenExpr() 342 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 349 ExprAST *Then = ParseExpression(); in ParseIfExpr() 357 ExprAST *Else = ParseExpression(); in ParseIfExpr() 378 ExprAST *Start = ParseExpression(); in ParseForExpr() 384 ExprAST *End = ParseExpression(); in ParseForExpr() 391 Step = ParseExpression(); in ParseForExpr() 399 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
D | toy.cpp | 289 static ExprAST *ParseExpression(); 307 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 335 ExprAST *V = ParseExpression(); in ParseParenExpr() 349 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 356 ExprAST *Then = ParseExpression(); in ParseIfExpr() 364 ExprAST *Else = ParseExpression(); in ParseIfExpr() 385 ExprAST *Start = ParseExpression(); in ParseForExpr() 391 ExprAST *End = ParseExpression(); in ParseForExpr() 398 Step = ParseExpression(); in ParseForExpr() 406 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 301 static ExprAST *ParseExpression(); 319 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 349 ExprAST *V = ParseExpression(); in ParseParenExpr() 364 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 372 ExprAST *Then = ParseExpression(); in ParseIfExpr() 381 ExprAST *Else = ParseExpression(); in ParseIfExpr() 402 ExprAST *Start = ParseExpression(); in ParseForExpr() 409 ExprAST *End = ParseExpression(); in ParseForExpr() 417 Step = ParseExpression(); in ParseForExpr() 426 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 267 static ExprAST *ParseExpression(); 285 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 313 ExprAST *V = ParseExpression(); in ParseParenExpr() 327 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 334 ExprAST *Then = ParseExpression(); in ParseIfExpr() 342 ExprAST *Else = ParseExpression(); in ParseIfExpr() 363 ExprAST *Start = ParseExpression(); in ParseForExpr() 369 ExprAST *End = ParseExpression(); in ParseForExpr() 376 Step = ParseExpression(); in ParseForExpr() 384 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
D | toy.cpp | 268 static ExprAST *ParseExpression(); 286 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 314 ExprAST *V = ParseExpression(); in ParseParenExpr() 328 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 335 ExprAST *Then = ParseExpression(); in ParseIfExpr() 343 ExprAST *Else = ParseExpression(); in ParseIfExpr() 364 ExprAST *Start = ParseExpression(); in ParseForExpr() 370 ExprAST *End = ParseExpression(); in ParseForExpr() 377 Step = ParseExpression(); in ParseForExpr() 385 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 266 static ExprAST *ParseExpression(); 284 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 312 ExprAST *V = ParseExpression(); in ParseParenExpr() 326 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 333 ExprAST *Then = ParseExpression(); in ParseIfExpr() 341 ExprAST *Else = ParseExpression(); in ParseIfExpr() 362 ExprAST *Start = ParseExpression(); in ParseForExpr() 368 ExprAST *End = ParseExpression(); in ParseForExpr() 375 Step = ParseExpression(); in ParseForExpr() 383 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 184 static ExprAST *ParseExpression(); 202 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 230 ExprAST *V = ParseExpression(); in ParseParenExpr() 288 static ExprAST *ParseExpression() { in ParseExpression() function 325 if (ExprAST *E = ParseExpression()) in ParseDefinition() 332 if (ExprAST *E = ParseExpression()) { in ParseTopLevelExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 443 static ExprAST *ParseExpression(); 463 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 493 ExprAST *V = ParseExpression(); in ParseParenExpr() 510 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 518 ExprAST *Then = ParseExpression(); in ParseIfExpr() 527 ExprAST *Else = ParseExpression(); in ParseIfExpr() 548 ExprAST *Start = ParseExpression(); in ParseForExpr() 555 ExprAST *End = ParseExpression(); in ParseForExpr() 563 Step = ParseExpression(); in ParseForExpr() 572 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 308 static ExprAST *ParseExpression(); 326 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 354 ExprAST *V = ParseExpression(); in ParseParenExpr() 368 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 375 ExprAST *Then = ParseExpression(); in ParseIfExpr() 383 ExprAST *Else = ParseExpression(); in ParseIfExpr() 404 ExprAST *Start = ParseExpression(); in ParseForExpr() 410 ExprAST *End = ParseExpression(); in ParseForExpr() 417 Step = ParseExpression(); in ParseForExpr() 425 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 289 static std::unique_ptr<ExprAST> ParseExpression(); 307 auto Arg = ParseExpression(); in ParseIdentifierExpr() 335 auto V = ParseExpression(); in ParseParenExpr() 350 auto Cond = ParseExpression(); in ParseIfExpr() 358 auto Then = ParseExpression(); in ParseIfExpr() 367 auto Else = ParseExpression(); in ParseIfExpr() 390 auto Start = ParseExpression(); in ParseForExpr() 397 auto End = ParseExpression(); in ParseForExpr() 405 Step = ParseExpression(); in ParseForExpr() 414 auto Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 289 static std::unique_ptr<ExprAST> ParseExpression(); 307 auto Arg = ParseExpression(); in ParseIdentifierExpr() 335 auto V = ParseExpression(); in ParseParenExpr() 350 auto Cond = ParseExpression(); in ParseIfExpr() 358 auto Then = ParseExpression(); in ParseIfExpr() 367 auto Else = ParseExpression(); in ParseIfExpr() 390 auto Start = ParseExpression(); in ParseForExpr() 397 auto End = ParseExpression(); in ParseForExpr() 405 Step = ParseExpression(); in ParseForExpr() 414 auto Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 289 static std::unique_ptr<ExprAST> ParseExpression(); 307 auto Arg = ParseExpression(); in ParseIdentifierExpr() 335 auto V = ParseExpression(); in ParseParenExpr() 350 auto Cond = ParseExpression(); in ParseIfExpr() 358 auto Then = ParseExpression(); in ParseIfExpr() 367 auto Else = ParseExpression(); in ParseIfExpr() 390 auto Start = ParseExpression(); in ParseForExpr() 397 auto End = ParseExpression(); in ParseForExpr() 405 Step = ParseExpression(); in ParseForExpr() 414 auto Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 290 static std::unique_ptr<ExprAST> ParseExpression(); 308 auto Arg = ParseExpression(); in ParseIdentifierExpr() 336 auto V = ParseExpression(); in ParseParenExpr() 351 auto Cond = ParseExpression(); in ParseIfExpr() 359 auto Then = ParseExpression(); in ParseIfExpr() 368 auto Else = ParseExpression(); in ParseIfExpr() 391 auto Start = ParseExpression(); in ParseForExpr() 398 auto End = ParseExpression(); in ParseForExpr() 406 Step = ParseExpression(); in ParseForExpr() 415 auto Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 210 static ExprAST *ParseExpression(); 228 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 258 ExprAST *V = ParseExpression(); in ParseParenExpr() 323 static ExprAST *ParseExpression() { in ParseExpression() function 362 if (ExprAST *E = ParseExpression()) in ParseDefinition() 369 if (ExprAST *E = ParseExpression()) { in ParseTopLevelExpr()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 384 ExprResult Expr(ParseExpression()); in ParseExprStatement() 479 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock() 1036 ExprResult = ParseExpression(); in ParseParenExprOrCondition() 1412 ExprResult Cond = ParseExpression(); in ParseDoStatement() 1536 ForRangeInit.RangeExpr = ParseExpression(); in ParseForStatement() 1577 Collection = ParseExpression(); in ParseForStatement() 1583 Value = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseForStatement() 1605 Collection = ParseExpression(); in ParseForStatement() 1639 Second = ParseExpression(); in ParseForStatement() 1662 ExprResult Third = ParseExpression(); in ParseForStatement() [all …]
|
D | ParseExprCXX.cpp | 1312 ExprResult Result = ParseExpression(); in ParseCXXCasts() 1375 Result = ParseExpression(); in ParseCXXTypeid() 1425 Result = ParseExpression(); in ParseCXXUuidof() 1676 ExprOut = ParseExpression(); // expression in ParseCXXCondition() 2746 ExprResult Size(first ? ParseExpression() in ParseDirectNewDeclarator() 2978 ExprResult DimExpr = ParseExpression(); in ParseArrayTypeTrait() 3002 ExprResult Expr = ParseExpression(); in ParseExpressionTrait() 3132 Result = ParseExpression(); in ParseCXXAmbiguousParenExpression()
|
D | ParseExpr.cpp | 120 ExprResult Parser::ParseExpression(TypeCastState isTypeCast) { in ParseExpression() function in Parser 278 TernaryMiddle = ParseExpression(); in ParseRHSOfBinaryExpression() 1235 ExprResult Result = ParseExpression(); in ParseCastExpression() 1374 Idx = ParseExpression(); in ParsePostfixExpressionSuffix() 1907 Res = ParseExpression(); in ParseBuiltinPrimaryExpression() 2276 Result = ParseExpression(MaybeTypeCast); in ParseParenExpression() 2478 RHS = ParseExpression(); in ParseFoldExpression()
|
/external/llvm/docs/tutorial/ |
D | LangImpl2.rst | 216 ExprAST *V = ParseExpression(); 236 by calling ``ParseExpression`` (we will soon see that 237 ``ParseExpression`` can call ``ParseParenExpr``). This is powerful 266 ExprAST *Arg = ParseExpression(); 393 static ExprAST *ParseExpression() { 578 if (ExprAST *E = ParseExpression()) 603 if (ExprAST *E = ParseExpression()) {
|
D | LangImpl5.rst | 116 ExprAST *Cond = ParseExpression(); 123 ExprAST *Then = ParseExpression(); 131 ExprAST *Else = ParseExpression(); 500 ExprAST *Start = ParseExpression(); 506 ExprAST *End = ParseExpression(); 513 Step = ParseExpression(); 521 ExprAST *Body = ParseExpression();
|