Searched refs:AsmToks (Results 1 – 6 of 6) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaStmtAsm.cpp | 336 ArrayRef<Token> AsmToks, in getIdentifierInfo() argument 339 IdentifierInfo *II = AsmToks[i].getIdentifierInfo(); in getIdentifierInfo() 419 static std::string buildMSAsmString(Sema &SemaRef, ArrayRef<Token> AsmToks, in buildMSAsmString() argument 422 assert (!AsmToks.empty() && "Didn't expect an empty AsmToks!"); in buildMSAsmString() 427 for (unsigned i = 0, e = AsmToks.size(); i < e; ++i) { in buildMSAsmString() 428 bool isNewAsm = i == 0 || AsmToks[i].isAtStartOfLine() || in buildMSAsmString() 429 AsmToks[i].is(tok::kw_asm); in buildMSAsmString() 440 if (AsmToks[i].is(tok::kw_asm)) { in buildMSAsmString() 446 if (i && AsmToks[i].hasLeadingSpace() && !isNewAsm) in buildMSAsmString() 449 Asm += getSpelling(SemaRef, AsmToks[i]); in buildMSAsmString() [all …]
|
D | TreeTransform.h | 1181 ArrayRef<Token> AsmToks, SourceLocation EndLoc) { in RebuildMSAsmStmt() argument 1182 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, EndLoc); in RebuildMSAsmStmt() 5584 ArrayRef<Token> AsmToks = in TransformMSAsmStmt() local 5588 AsmToks, S->getEndLoc()); in TransformMSAsmStmt()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 701 AsmToks = new (C) Token[NumAsmToks]; in MSAsmStmt() 703 AsmToks[i] = asmtoks[i]; in MSAsmStmt()
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1679 Token *AsmToks; variable 1693 NumAsmToks(0), AsmToks(0), Constraints(0), Clobbers(0) { } in MSAsmStmt() 1703 Token *getAsmToks() { return AsmToks; } in getAsmToks()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1604 SmallVector<Token, 4> AsmToks; in ParseMicrosoftAsmStatement() local 1676 AsmToks.push_back(Tok); in ParseMicrosoftAsmStatement() 1711 llvm::makeArrayRef(AsmToks), EndLoc); in ParseMicrosoftAsmStatement()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2580 ArrayRef<Token> AsmToks, SourceLocation EndLoc);
|