/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 218 static ExprAST *ParseExpression(); 236 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 264 ExprAST *V = ParseExpression(); in ParseParenExpr() 278 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 285 ExprAST *Then = ParseExpression(); in ParseIfExpr() 293 ExprAST *Else = ParseExpression(); in ParseIfExpr() 314 ExprAST *Start = ParseExpression(); in ParseForExpr() 320 ExprAST *End = ParseExpression(); in ParseForExpr() 327 Step = ParseExpression(); in ParseForExpr() 335 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Chapter2/ |
D | toy.cpp | 170 static ExprAST *ParseExpression(); 188 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 216 ExprAST *V = ParseExpression(); in ParseParenExpr() 274 static ExprAST *ParseExpression() { in ParseExpression() function 311 if (ExprAST *E = ParseExpression()) in ParseDefinition() 318 if (ExprAST *E = ParseExpression()) { in ParseTopLevelExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 246 static ExprAST *ParseExpression(); 264 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 292 ExprAST *V = ParseExpression(); in ParseParenExpr() 306 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 313 ExprAST *Then = ParseExpression(); in ParseIfExpr() 321 ExprAST *Else = ParseExpression(); in ParseIfExpr() 342 ExprAST *Start = ParseExpression(); in ParseForExpr() 348 ExprAST *End = ParseExpression(); in ParseForExpr() 355 Step = ParseExpression(); in ParseForExpr() 363 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 264 static ExprAST *ParseExpression(); 282 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 310 ExprAST *V = ParseExpression(); in ParseParenExpr() 324 ExprAST *Cond = ParseExpression(); in ParseIfExpr() 331 ExprAST *Then = ParseExpression(); in ParseIfExpr() 339 ExprAST *Else = ParseExpression(); in ParseIfExpr() 360 ExprAST *Start = ParseExpression(); in ParseForExpr() 366 ExprAST *End = ParseExpression(); in ParseForExpr() 373 Step = ParseExpression(); in ParseForExpr() 381 ExprAST *Body = ParseExpression(); in ParseForExpr() [all …]
|
/external/llvm/lib/MC/MCParser/ |
D | MCAsmParser.cpp | 41 bool MCAsmParser::ParseExpression(const MCExpr *&Res) { in ParseExpression() function in MCAsmParser 43 return ParseExpression(Res, L); in ParseExpression()
|
D | AsmParser.cpp | 166 bool ParseExpression(const MCExpr *&Res); 167 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc); 611 if (ParseExpression(Res)) return true; in ParseParenExpr() 625 if (ParseExpression(Res)) return true; in ParseBracketExpr() 757 bool AsmParser::ParseExpression(const MCExpr *&Res) { in ParseExpression() function in AsmParser 759 return ParseExpression(Res, EndLoc); in ParseExpression() 820 bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) { in ParseExpression() function in AsmParser 868 if (ParseExpression(Expr)) in ParseAbsoluteExpression() 1600 if (ParseExpression(Value)) in ParseAssignment() 1810 if (ParseExpression(Value)) in ParseDirectiveValue() [all …]
|
D | ELFAsmParser.cpp | 211 if (getParser().ParseExpression(Expr)) in ParseDirectiveSize()
|
D | DarwinAsmParser.cpp | 392 if (getParser().ParseExpression(Value)) in ParseDirectiveLsym()
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 182 static ExprAST *ParseExpression(); 200 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 228 ExprAST *V = ParseExpression(); in ParseParenExpr() 286 static ExprAST *ParseExpression() { in ParseExpression() function 323 if (ExprAST *E = ParseExpression()) in ParseDefinition() 330 if (ExprAST *E = ParseExpression()) { in ParseTopLevelExpr()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 189 static ExprAST *ParseExpression(); 207 ExprAST *Arg = ParseExpression(); in ParseIdentifierExpr() 235 ExprAST *V = ParseExpression(); in ParseParenExpr() 293 static ExprAST *ParseExpression() { in ParseExpression() function 330 if (ExprAST *E = ParseExpression()) in ParseDefinition() 337 if (ExprAST *E = ParseExpression()) { in ParseTopLevelExpr()
|
/external/v8/src/ |
D | preparser.cc | 475 Expression expr = ParseExpression(true, CHECK_OK); in ParseExpressionOrLabelledStatement() 499 ParseExpression(true, CHECK_OK); in ParseIfStatement() 563 ParseExpression(true, CHECK_OK); in ParseReturnStatement() 581 ParseExpression(true, CHECK_OK); in ParseWithStatement() 597 ParseExpression(true, CHECK_OK); in ParseSwitchStatement() 605 ParseExpression(true, CHECK_OK); in ParseSwitchStatement() 628 ParseExpression(true, CHECK_OK); in ParseDoWhileStatement() 641 ParseExpression(true, CHECK_OK); in ParseWhileStatement() 666 ParseExpression(true, CHECK_OK); in ParseForStatement() 673 ParseExpression(false, CHECK_OK); in ParseForStatement() [all …]
|
D | parser.cc | 2379 Expression* expr = ParseExpression(true, CHECK_OK); in ParseExpressionOrLabelledStatement() 2445 Expression* condition = ParseExpression(true, CHECK_OK); in ParseIfStatement() 2543 Expression* expr = ParseExpression(true, CHECK_OK); in ParseReturnStatement() 2577 Expression* expr = ParseExpression(true, CHECK_OK); in ParseWithStatement() 2600 label = ParseExpression(true, CHECK_OK); in ParseCaseClause() 2635 Expression* tag = ParseExpression(true, CHECK_OK); in ParseSwitchStatement() 2663 Expression* exception = ParseExpression(true, CHECK_OK); in ParseThrowStatement() 2799 Expression* cond = ParseExpression(true, CHECK_OK); in ParseDoWhileStatement() 2822 Expression* cond = ParseExpression(true, CHECK_OK); in ParseWhileStatement() 2857 Expression* enumerable = ParseExpression(true, CHECK_OK); in ParseForStatement() [all …]
|
D | preparser.h | 547 Expression ParseExpression(bool accept_IN, bool* ok);
|
D | parser.h | 627 Expression* ParseExpression(bool accept_IN, bool* ok);
|
/external/llvm/include/llvm/MC/MCParser/ |
D | MCAsmParser.h | 120 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0; 121 bool ParseExpression(const MCExpr *&Res);
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 335 ExprResult Expr(ParseExpression()); in ParseExprStatement() 426 ExprResult FilterExpr(ParseExpression()); in ParseSEHExceptBlock() 876 ExprResult = ParseExpression(); in ParseParenExprOrCondition() 1251 ExprResult Cond = ParseExpression(); in ParseDoStatement() 1380 Collection = ParseExpression(); in ParseForStatement() 1385 Value = ParseExpression(); in ParseForStatement() 1407 Collection = ParseExpression(); in ParseForStatement() 1438 Second = ParseExpression(); in ParseForStatement() 1461 ExprResult Third = ParseExpression(); in ParseForStatement() 1550 ExprResult R(ParseExpression()); in ParseGotoStatement() [all …]
|
D | ParseExprCXX.cpp | 954 ExprResult Result = ParseExpression(); in ParseCXXCasts() 1011 Result = ParseExpression(); in ParseCXXTypeid() 1061 Result = ParseExpression(); in ParseCXXUuidof() 1308 ExprOut = ParseExpression(); // expression in ParseCXXCondition() 2361 ExprResult Size(first ? ParseExpression() in ParseDirectNewDeclarator() 2692 ExprResult DimExpr = ParseExpression(); in ParseArrayTypeTrait() 2716 ExprResult Expr = ParseExpression(); in ParseExpressionTrait() 2838 Result = ParseExpression(); in ParseCXXAmbiguousParenExpression()
|
D | ParseExpr.cpp | 178 ExprResult Parser::ParseExpression(TypeCastState isTypeCast) { in ParseExpression() function in Parser 296 TernaryMiddle = ParseExpression(); in ParseRHSOfBinaryExpression() 1115 ExprResult Result = ParseExpression(); in ParseCastExpression() 1304 Idx = ParseExpression(); in ParsePostfixExpressionSuffix() 1773 Res = ParseExpression(); in ParseBuiltinPrimaryExpression() 2083 Result = ParseExpression(MaybeTypeCast); in ParseParenExpression()
|
D | ParseObjc.cpp | 1719 Res = ParseExpression(); in ParseObjCThrowStmt() 1743 ExprResult operand(ParseExpression()); in ParseObjCSynchronizedStmt() 2122 ExprResult Receiver = ParseExpression(); in ParseObjCXXMessageReceiver() 2299 ExprResult Res(ParseExpression()); in ParseObjCMessageExpression()
|
D | ParseDeclCXX.cpp | 682 Result = ParseExpression(); in ParseDecltypeSpecifier()
|
D | ParseDecl.cpp | 1255 FRI->RangeExpr = ParseExpression(); in ParseDeclGroup()
|
/external/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 619 if (getParser().ParseExpression(Disp, End)) return 0; in ParseIntelBracExpression() 671 else if (getParser().ParseExpression(Disp, End)) return 0; in ParseIntelBracExpression() 676 if (getParser().ParseExpression(Disp, End)) return 0; in ParseIntelBracExpression() 719 if (getParser().ParseExpression(Disp, End)) return 0; in ParseIntelMemOperand() 730 if (!getParser().ParseExpression(Val, End)) { in ParseIntelOperand() 777 if (getParser().ParseExpression(Val, End)) in ParseATTOperand() 795 if (getParser().ParseExpression(Disp, ExprEnd)) return 0; in ParseMemOperand() 1692 if (getParser().ParseExpression(Value)) in ParseDirectiveWord()
|
/external/llvm/lib/Target/MBlaze/AsmParser/ |
D | MBlazeAsmParser.cpp | 446 if (getParser().ParseExpression(EVal)) in ParseImmediate() 533 if (getParser().ParseExpression(Value)) in ParseDirectiveWord()
|
/external/llvm/lib/Target/ARM/AsmParser/ |
D | ARMAsmParser.cpp | 2528 if (getParser().ParseExpression(ShiftExpr)) { in tryParseShiftRegister() 2609 if (getParser().ParseExpression(ImmVal)) in tryParseRegisterWithWriteBack() 2754 if (getParser().ParseExpression(Expr)) { in parseCoprocOptionOperand() 2966 if (getParser().ParseExpression(LaneIndex)) { in parseVectorLane() 3441 if (getParser().ParseExpression(ShiftAmount)) { in parsePKHImm() 3520 if (getParser().ParseExpression(ShiftAmount)) { in parseShifterImm() 3581 if (getParser().ParseExpression(ShiftAmount)) { in parseRotImm() 3619 if (getParser().ParseExpression(LSBExpr)) { in parseBitfield() 3651 if (getParser().ParseExpression(WidthExpr)) { in parseBitfield() 3745 if (getParser().ParseExpression(Offset)) in parseAM3Offset() [all …]
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1298 ExprResult ParseExpression(TypeCastState isTypeCast = NotTypeCast);
|