HomeSort by relevance Sort by last modified time
    Searched refs:isBeforeInTranslationUnit (Results 1 - 25 of 28) 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 115 SM.isBeforeInTranslationUnit(MD->getLocation(), L))
117 SM.isBeforeInTranslationUnit(L, MD->UndefLocation)) ? MD : NULL;
Preprocessor.cpp 321 SourceMgr.isBeforeInTranslationUnit(BestLocation, Location))) {
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 67 TEST_F(SourceManagerTest, isBeforeInTranslationUnit) {
112 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(lsqrLoc, idLoc));
113 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(idLoc, rsqrLoc));
114 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(macroExpStartLoc, idLoc));
115 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(idLoc, macroExpEndLoc));
344 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(Macros[3].Loc, Macros[4].Loc));
348 EXPECT_TRUE(SourceMgr.isBeforeInTranslationUnit(Macros[7].Loc, Macros[8].Loc));
  /external/clang/lib/Basic/
SourceLocation.cpp 122 return SrcMgr->isBeforeInTranslationUnit(*this, Loc);
SourceManager.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransProtectedScope.cpp 187 return !SM.isBeforeInTranslationUnit(Loc, R.getBegin()) &&
188 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/include/clang/AST/
RawCommentList.h 168 return SM.isBeforeInTranslationUnit(LHS.getSourceRange().getBegin(),
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 357 assert(!PP.getSourceManager().isBeforeInTranslationUnit(origLoc,
421 assert(!PP.getSourceManager().isBeforeInTranslationUnit(origLoc,
454 // expensive isBeforeInTranslationUnit call.
455 if (PP.getSourceManager().isBeforeInTranslationUnit(Tok.getLocation(),
ParseObjc.cpp     [all...]
  /external/clang/lib/AST/
RawCommentList.cpp 213 !SourceMgr.isBeforeInTranslationUnit(
DeclObjC.cpp 903 if (SM.isBeforeInTranslationUnit(Loc, Cat->getLocation()))
    [all...]
  /external/clang/include/clang/Basic/
SourceManager.h 446 /// \brief Holds the cache used by isBeforeInTranslationUnit.
657 /// Cache results for the isBeforeInTranslationUnit method.
662 /// for isBeforeInTranslationUnit.
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 276 return SM.isBeforeInTranslationUnit(XR.getBegin(), YR.getBegin());
277 return SM.isBeforeInTranslationUnit(XR.getEnd(), YR.getEnd());
332 return SM.isBeforeInTranslationUnit(XDL, YDL);
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 381 return SM.isBeforeInTranslationUnit(l.second, r.second);
382 return SM.isBeforeInTranslationUnit(l.first->getLocation(),
    [all...]
AnalysisBasedWarnings.cpp     [all...]
SemaType.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp 89 SM.isBeforeInTranslationUnit(R1.getEnd(), R2.getBegin()))
92 SM.isBeforeInTranslationUnit(R2.getEnd(), R1.getBegin()))
105 if (SM.isBeforeInTranslationUnit(L, R.getBegin()))
107 if (SM.isBeforeInTranslationUnit(R.getEnd(), L))
919 if (SM.isBeforeInTranslationUnit(L, EndLoc)) {
936 return SM.isBeforeInTranslationUnit(L_A, L_B);
    [all...]
  /external/clang/lib/Format/
Format.cpp     [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 399 milliseconds

1 2