Searched refs:AsmLoc (Results 1 - 8 of 8) sorted by relevance

/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp94 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, argument
204 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
459 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, /*IsSimple*/ true, \
464 StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, argument
604 return StmtError(Diag(AsmLoc, diag::err_asm_unknown_register_name) <<
622 Id.setIdentifier(II, AsmLoc);
680 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple,
H A DTreeTransform.h1165 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, argument
1171 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs,
1180 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, argument
1182 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, EndLoc);
/external/clang/lib/Parse/
H A DParseStmt.cpp1598 StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) { argument
1600 Diag(AsmLoc, diag::warn_unsupported_msasm);
1603 SourceLocation EndLoc = AsmLoc;
1705 return Actions.ActOnGCCAsmStmt(AsmLoc, true, true, 0, 0, 0, Constraints,
1710 return Actions.ActOnMSAsmStmt(AsmLoc, LBraceLoc,
1735 SourceLocation AsmLoc = ConsumeToken(); local
1740 return ParseMicrosoftAsmStatement(AsmLoc);
1777 return Actions.ActOnGCCAsmStmt(AsmLoc, /*isSimple*/ true, isVolatile,
1841 return Actions.ActOnGCCAsmStmt(AsmLoc, false, isVolatile, NumOutputs,
/external/clang/include/clang/AST/
H A DStmt.h1370 SourceLocation AsmLoc; member in class:clang::AsmStmt
1388 Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile),
1396 SourceLocation getAsmLoc() const { return AsmLoc; }
1397 void setAsmLoc(SourceLocation L) { AsmLoc = L; }
1662 return SourceRange(AsmLoc, RParenLoc);
1674 SourceLocation AsmLoc, LBraceLoc, EndLoc; member in class:clang::MSAsmStmt
1744 return SourceRange(AsmLoc, EndLoc);
H A DDecl.h3049 StringLiteral *Str, SourceLocation AsmLoc,
/external/clang/lib/AST/
H A DDecl.cpp3014 SourceLocation AsmLoc,
3016 return new (C) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc);
3012 Create(ASTContext &C, DeclContext *DC, StringLiteral *Str, SourceLocation AsmLoc, SourceLocation RParenLoc) argument
/external/clang/include/clang/Parse/
H A DParser.h1461 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);
/external/clang/include/clang/Sema/
H A DSema.h1357 SourceLocation AsmLoc,
2572 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
2579 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,

Completed in 171 milliseconds