HomeSort by relevance Sort by last modified time
    Searched refs:SemiLoc (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 37 SourceLocation SemiLoc = S->getSemiLoc();
38 if (SemiLoc.isInvalid() || SemiLoc.isMacroID())
46 I = std::upper_bound(MacroLocs.begin(), MacroLocs.end(), SemiLoc,
53 if (AfterMacroLoc == SemiLoc)
57 if (!SM.isInSameSLocAddrSpace(AfterMacroLoc, SemiLoc, &RelOffs))
70 return AfterMacroSemiLoc == SemiLoc;
Transforms.cpp 65 SourceLocation SemiLoc = findSemiAfterLocation(loc, Ctx);
66 if (SemiLoc.isInvalid())
68 return SemiLoc.getLocWithOffset(1);
  /external/clang/include/clang/AST/
Stmt.h 507 SourceLocation SemiLoc;
517 : Stmt(NullStmtClass), SemiLoc(L),
524 SourceLocation getSemiLoc() const { return SemiLoc; }
525 void setSemiLoc(SourceLocation L) { SemiLoc = L; }
529 SourceRange getSourceRange() const LLVM_READONLY { return SourceRange(SemiLoc); }
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 49 StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc,
51 return Owned(new (Context) NullStmt(SemiLoc, HasLeadingEmptyMacro));
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 641 milliseconds