HomeSort by: relevance | last modified time | path
    Searched defs:AsmLoc (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmtAsm.cpp 39 SourceLocation AsmLoc;
51 : TheParser(P), AsmLoc(Loc), AsmString(AsmString), AsmToks(Toks),
67 AsmLoc);
184 SourceLocation Loc = AsmLoc;
299 static bool buildMSAsmString(Preprocessor &PP, SourceLocation AsmLoc,
329 PP.Diag(AsmLoc, diag::err_asm_empty);
378 StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) {
380 SourceLocation EndLoc = AsmLoc;
537 Diag(AsmLoc, diag::err_msasm_unsupported_arch) << TheTriple.getArchName();
542 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) << Error
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 2818 SourceLocation AsmLoc;
2834 AsmStmt(StmtClass SC, SourceLocation asmloc, bool issimple, bool isvolatile,
2836 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile),
2844 SourceLocation getAsmLoc() const { return AsmLoc; }
2845 void setAsmLoc(SourceLocation L) { AsmLoc = L; }
2986 GCCAsmStmt(const ASTContext &C, SourceLocation asmloc, bool issimple,
3187 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; }
3209 MSAsmStmt(const ASTContext &C, SourceLocation asmloc,
3285 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; }
    [all...]

Completed in 16 milliseconds