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

  /external/clang/lib/ARCMigrate/
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;
Transforms.cpp 126 SourceLocation SemiLoc = findSemiAfterLocation(loc, Ctx);
127 if (SemiLoc.isInvalid())
129 return SemiLoc.getLocWithOffset(1);
  /external/clang/include/clang/AST/
Stmt.h 511 SourceLocation SemiLoc;
521 : Stmt(NullStmtClass), SemiLoc(L),
528 SourceLocation getSemiLoc() const { return SemiLoc; }
529 void setSemiLoc(SourceLocation L) { SemiLoc = L; }
533 SourceLocation getLocStart() const LLVM_READONLY { return SemiLoc; }
534 SourceLocation getLocEnd() const LLVM_READONLY { return SemiLoc; }
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 57 StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc,
59 return Owned(new (Context) NullStmt(SemiLoc, HasLeadingEmptyMacro));
    [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 277 milliseconds