Searched refs:SemiLoc (Results 1 - 7 of 7) sorted by relevance
/external/clang/lib/ARCMigrate/ |
H A D | TransEmptyStatementsAndDealloc.cpp | 38 SourceLocation SemiLoc = S->getSemiLoc(); 39 if (SemiLoc.isInvalid() || SemiLoc.isMacroID()) 47 I = std::upper_bound(MacroLocs.begin(), MacroLocs.end(), SemiLoc, 54 if (AfterMacroLoc == SemiLoc) 58 if (!SM.isInSameSLocAddrSpace(AfterMacroLoc, SemiLoc, &RelOffs)) 71 return AfterMacroSemiLoc == SemiLoc;
|
H A D | Transforms.cpp | 125 SourceLocation SemiLoc = findSemiAfterLocation(loc, Ctx, IsDecl); local 126 if (SemiLoc.isInvalid()) 128 return SemiLoc.getLocWithOffset(1);
|
/external/clang/lib/Parse/ |
H A D | RAIIObjectsForParser.h | 433 SourceLocation SemiLoc = P.ConsumeToken(); local 434 P.Diag(SemiLoc, diag::err_unexpected_semi) 435 << Close << FixItHint::CreateRemoval(SourceRange(SemiLoc, SemiLoc));
|
/external/clang/include/clang/AST/ |
H A D | Stmt.h | 500 SourceLocation SemiLoc; member in class:clang::NullStmt 510 : Stmt(NullStmtClass), SemiLoc(L), 517 SourceLocation getSemiLoc() const { return SemiLoc; } 518 void setSemiLoc(SourceLocation L) { SemiLoc = L; } 522 SourceLocation getLocStart() const LLVM_READONLY { return SemiLoc; } 523 SourceLocation getLocEnd() const LLVM_READONLY { return SemiLoc; }
|
/external/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 66 StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc, argument 68 return new (Context) NullStmt(SemiLoc, HasLeadingEmptyMacro);
|
H A D | SemaDeclCXX.cpp | 11936 SourceLocation SemiLoc) { 11937 Decl *ED = EmptyDecl::Create(Context, CurContext, SemiLoc); 11934 ActOnEmptyDeclaration(Scope *S, AttributeList *AttrList, SourceLocation SemiLoc) argument
|
/external/clang/include/clang/Sema/ |
H A D | Sema.h | 1800 SourceLocation SemiLoc); 3261 StmtResult ActOnNullStmt(SourceLocation SemiLoc,
|
Completed in 104 milliseconds