Searched refs:ParseExpression (Results 1 - 25 of 26) sorted by relevance

12

/external/llvm/lib/MC/MCParser/
H A DMCAsmParser.cpp41 bool MCAsmParser::ParseExpression(const MCExpr *&Res) { function in class:MCAsmParser
43 return ParseExpression(Res, L);
H A DAsmParser.cpp171 bool ParseExpression(const MCExpr *&Res);
172 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc);
650 if (ParseExpression(Res)) return true;
664 if (ParseExpression(Res)) return true;
796 bool AsmParser::ParseExpression(const MCExpr *&Res) { function in class:AsmParser
798 return ParseExpression(Res, EndLoc);
849 /// ParseExpression - Parse an expression and return it.
859 bool AsmParser::ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) { function in class:AsmParser
907 if (ParseExpression(Expr))
1705 if (ParseExpression(Valu
[all...]
H A DDarwinAsmParser.cpp404 if (getParser().ParseExpression(Value))
H A DELFAsmParser.cpp213 if (getParser().ParseExpression(Expr))
/external/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h115 /// ParseExpression - Parse an arbitrary expression.
120 virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
121 bool ParseExpression(const MCExpr *&Res);
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp170 static ExprAST *ParseExpression();
188 ExprAST *Arg = ParseExpression();
216 ExprAST *V = ParseExpression();
274 static ExprAST *ParseExpression() { function
311 if (ExprAST *E = ParseExpression())
318 if (ExprAST *E = ParseExpression()) {
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp218 static ExprAST *ParseExpression();
236 ExprAST *Arg = ParseExpression();
264 ExprAST *V = ParseExpression();
278 ExprAST *Cond = ParseExpression();
285 ExprAST *Then = ParseExpression();
293 ExprAST *Else = ParseExpression();
314 ExprAST *Start = ParseExpression();
320 ExprAST *End = ParseExpression();
327 Step = ParseExpression();
335 ExprAST *Body = ParseExpression();
394 static ExprAST *ParseExpression() { function
[all...]
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp246 static ExprAST *ParseExpression();
264 ExprAST *Arg = ParseExpression();
292 ExprAST *V = ParseExpression();
306 ExprAST *Cond = ParseExpression();
313 ExprAST *Then = ParseExpression();
321 ExprAST *Else = ParseExpression();
342 ExprAST *Start = ParseExpression();
348 ExprAST *End = ParseExpression();
355 Step = ParseExpression();
363 ExprAST *Body = ParseExpression();
438 static ExprAST *ParseExpression() { function
[all...]
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp182 static ExprAST *ParseExpression();
200 ExprAST *Arg = ParseExpression();
228 ExprAST *V = ParseExpression();
286 static ExprAST *ParseExpression() { function
323 if (ExprAST *E = ParseExpression())
330 if (ExprAST *E = ParseExpression()) {
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp264 static ExprAST *ParseExpression();
282 ExprAST *Arg = ParseExpression();
310 ExprAST *V = ParseExpression();
324 ExprAST *Cond = ParseExpression();
331 ExprAST *Then = ParseExpression();
339 ExprAST *Else = ParseExpression();
360 ExprAST *Start = ParseExpression();
366 ExprAST *End = ParseExpression();
373 Step = ParseExpression();
381 ExprAST *Body = ParseExpression();
503 static ExprAST *ParseExpression() { function
[all...]
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp189 static ExprAST *ParseExpression();
207 ExprAST *Arg = ParseExpression();
235 ExprAST *V = ParseExpression();
293 static ExprAST *ParseExpression() { function
330 if (ExprAST *E = ParseExpression())
337 if (ExprAST *E = ParseExpression()) {
/external/v8/src/
H A Dpreparser.cc475 Expression expr = ParseExpression(true, CHECK_OK);
499 ParseExpression(true, CHECK_OK);
563 ParseExpression(true, CHECK_OK);
581 ParseExpression(true, CHECK_OK);
597 ParseExpression(true, CHECK_OK);
605 ParseExpression(true, CHECK_OK);
628 ParseExpression(true, CHECK_OK);
641 ParseExpression(true, CHECK_OK);
666 ParseExpression(true, CHECK_OK);
673 ParseExpression(fals
792 PreParser::Expression PreParser::ParseExpression(bool accept_IN, bool* ok) { function in class:v8::preparser::PreParser
[all...]
H A Dparser.cc2379 Expression* expr = ParseExpression(true, CHECK_OK);
2445 Expression* condition = ParseExpression(true, CHECK_OK);
2543 Expression* expr = ParseExpression(true, CHECK_OK);
2577 Expression* expr = ParseExpression(true, CHECK_OK);
2600 label = ParseExpression(true, CHECK_OK);
2635 Expression* tag = ParseExpression(true, CHECK_OK);
2663 Expression* exception = ParseExpression(true, CHECK_OK);
2799 Expression* cond = ParseExpression(true, CHECK_OK);
2822 Expression* cond = ParseExpression(true, CHECK_OK);
2857 Expression* enumerable = ParseExpression(tru
3011 Expression* Parser::ParseExpression(bool accept_IN, bool* ok) { function in class:v8::internal::Parser
[all...]
H A Dpreparser.h547 Expression ParseExpression(bool accept_IN, bool* ok);
H A Dparser.h627 Expression* ParseExpression(bool accept_IN, bool* ok);
/external/clang/lib/Parse/
H A DParseStmt.cpp279 ExprResult Expr(ParseExpression());
283 // ParseExpression does not consume any tokens.
370 ExprResult FilterExpr(ParseExpression());
820 ExprResult = ParseExpression();
1211 ExprResult Cond = ParseExpression();
1345 Collection = ParseExpression();
1351 Value = ParseExpression();
1373 Collection = ParseExpression();
1404 Second = ParseExpression();
1427 ExprResult Third = ParseExpression();
[all...]
H A DParseExpr.cpp180 ExprResult Parser::ParseExpression(TypeCastState isTypeCast) { function in class:Parser
299 TernaryMiddle = ParseExpression();
1177 ExprResult Result = ParseExpression();
1367 Idx = ParseExpression();
1845 Res = ParseExpression();
2156 Result = ParseExpression(MaybeTypeCast);
H A DParseExprCXX.cpp956 ExprResult Result = ParseExpression();
1018 Result = ParseExpression();
1068 Result = ParseExpression();
1318 ExprOut = ParseExpression(); // expression
2337 ExprResult Size(first ? ParseExpression()
2672 ExprResult DimExpr = ParseExpression();
2696 ExprResult Expr = ParseExpression();
2818 Result = ParseExpression();
H A DParseObjc.cpp1727 Res = ParseExpression();
1751 ExprResult operand(ParseExpression());
2028 // ParseExpression does not consume any tokens.
2169 ExprResult Receiver = ParseExpression();
2346 ExprResult Res(ParseExpression());
H A DParseDeclCXX.cpp695 Result = ParseExpression();
/external/llvm/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp451 if (getParser().ParseExpression(EVal))
538 if (getParser().ParseExpression(Value))
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp664 if (getParser().ParseExpression(Disp, End)) return 0;
716 else if (getParser().ParseExpression(Disp, End)) return 0;
721 if (getParser().ParseExpression(Disp, End)) return 0;
764 if (getParser().ParseExpression(Disp, End)) return 0;
775 if (!getParser().ParseExpression(Val, End)) {
822 if (getParser().ParseExpression(Val, End))
840 if (getParser().ParseExpression(Disp, ExprEnd)) return 0;
1771 if (getParser().ParseExpression(Value))
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp544 if (getParser().ParseExpression(IdVal))
647 return (getParser().ParseExpression(Res));
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp2560 if (getParser().ParseExpression(ShiftExpr)) {
2641 if (getParser().ParseExpression(ImmVal))
2786 if (getParser().ParseExpression(Expr)) {
2998 if (getParser().ParseExpression(LaneIndex)) {
3316 if (getParser().ParseExpression(MemBarrierID)) {
3530 if (getParser().ParseExpression(ShiftAmount)) {
3609 if (getParser().ParseExpression(ShiftAmount)) {
3670 if (getParser().ParseExpression(ShiftAmount)) {
3708 if (getParser().ParseExpression(LSBExpr)) {
3740 if (getParser().ParseExpression(WidthExp
[all...]
/external/clang/include/clang/Parse/
H A DParser.h1194 ExprResult ParseExpression(TypeCastState isTypeCast = NotTypeCast);

Completed in 944 milliseconds

12