HomeSort by relevance Sort by last modified time
    Searched refs:isBeforeInTranslationUnit (Results 1 - 25 of 31) sorted by null

1 2

  /external/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 48 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS.getLoc());
51 return SM.isBeforeInTranslationUnit(LHS.getLoc(), RHS);
54 return SM.isBeforeInTranslationUnit(LHS, RHS.getLoc());
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 35 if (SourceMgr.isBeforeInTranslationUnit(Range.getEnd(), low->getLoc()))
55 if (SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
73 SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
PreprocessingRecord.cpp 131 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
163 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
181 return SM.isBeforeInTranslationUnit(LHS, RHS);
186 return SM.isBeforeInTranslationUnit(LHS, RHS);
191 return SM.isBeforeInTranslationUnit(LHS, RHS);
221 if (SourceMgr.isBeforeInTranslationUnit((*I)->getSourceRange().getEnd(),
253 !SourceMgr.isBeforeInTranslationUnit(BeginLoc,
262 !SourceMgr.isBeforeInTranslationUnit(BeginLoc,
290 if (!SourceMgr.isBeforeInTranslationUnit(BeginLoc,
MacroInfo.cpp 157 SM.isBeforeInTranslationUnit(Def.getLocation(), L))
159 SM.isBeforeInTranslationUnit(L, Def.getUndefLocation()))
Preprocessor.cpp 321 SourceMgr.isBeforeInTranslationUnit(BestLocation, Location))) {
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 73 TEST_F(SourceManagerTest, isBeforeInTranslationUnit) {
119 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(lsqrLoc, idLoc));
120 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(idLoc, rsqrLoc));
121 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(macroExpStartLoc, idLoc));
122 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(idLoc, macroExpEndLoc));
353 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(Macros[3].Loc, Macros[4].Loc));
357 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(Macros[7].Loc, Macros[8].Loc));
  /external/clang/include/clang/AST/
RawCommentList.h 172 return SM.isBeforeInTranslationUnit(LHS.getLocStart(), RHS.getLocStart());
  /external/clang/lib/Basic/
SourceLocation.cpp 123 return SrcMgr->isBeforeInTranslationUnit(*this, Loc);
SourceManager.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 193 return !SM.isBeforeInTranslationUnit(Loc, R.getBegin()) &&
194 SM.isBeforeInTranslationUnit(Loc, R.getEnd());
TransAutoreleasePool.cpp 290 if (SM.isBeforeInTranslationUnit(loc, ScopeRange.getBegin()))
292 return SM.isBeforeInTranslationUnit(loc, ScopeRange.getEnd());
TransformActions.cpp 510 if (!SM.isBeforeInTranslationUnit(loc, I->End))
  /external/clang/lib/AST/
RawCommentList.cpp 220 !SourceMgr.isBeforeInTranslationUnit(Comments.back()->getLocStart(),
  /external/clang/include/clang/Basic/
SourceManager.h 461 /// \brief Holds the cache used by isBeforeInTranslationUnit.
679 /// Cache results for the isBeforeInTranslationUnit method.
684 /// for isBeforeInTranslationUnit.
    [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 355 assert(!PP.getSourceManager().isBeforeInTranslationUnit(origLoc,
423 assert(!PP.getSourceManager().isBeforeInTranslationUnit(origLoc,
464 // expensive isBeforeInTranslationUnit call.
465 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
    [all...]
ParseObjc.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 343 return SM.isBeforeInTranslationUnit(XR.getBegin(), YR.getBegin());
344 return SM.isBeforeInTranslationUnit(XR.getEnd(), YR.getEnd());
404 return SM.isBeforeInTranslationUnit(XDL, YDL);
    [all...]
  /external/clang/lib/Format/
WhitespaceManager.cpp 23 return SourceMgr.isBeforeInTranslationUnit(
Format.cpp     [all...]
  /external/clang/lib/Sema/
DeclSpec.cpp     [all...]
Sema.cpp 463 return SM.isBeforeInTranslationUnit(l.second, r.second);
464 return SM.isBeforeInTranslationUnit(l.first->getLocation(),
    [all...]
AnalysisBasedWarnings.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp 108 SM.isBeforeInTranslationUnit(R1.getEnd(), R2.getBegin()))
111 SM.isBeforeInTranslationUnit(R2.getEnd(), R1.getBegin()))
124 if (SM.isBeforeInTranslationUnit(L, R.getBegin()))
126 if (SM.isBeforeInTranslationUnit(R.getEnd(), L))
945 if (SM.isBeforeInTranslationUnit(L, EndLoc)) {
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 232 if (SM.isBeforeInTranslationUnit(S->getLocStart(), mVarLoc)) {
    [all...]

Completed in 673 milliseconds

1 2