Home | History | Annotate | Download | only in libclang

Lines Matching refs:Unit

103 /// the translation unit.
250 ASTUnit *Unit = cxtu::getASTUnit(TU);
251 SourceManager &SM = Unit->getSourceManager();
299 ASTUnit *Unit = cxtu::getASTUnit(TU);
300 SourceManager &SM = Unit->getSourceManager();
304 Unit->findFileRegionDecls(File, Offset, Length, Decls);
324 Unit->findFileRegionDecls(File, Offset, Length, Decls);
370 // is a context that contains the range or we reach the translation unit
3278 std::unique_ptr<ASTUnit> Unit(ASTUnit::LoadFromCommandLine(
3291 if (!Unit && !ErrUnit)
3295 // Make sure to check that 'Unit' is non-NULL.
3297 printDiagsToStderr(Unit ? Unit.get() : ErrUnit.get());
3300 if (isASTReadError(Unit ? Unit.get() : ErrUnit.get()))
3303 *out_TU = MakeCXTranslationUnit(CXXIdx, Unit.release());
3765 // If the translation unit has been marked as unsafe to free, just discard
3767 ASTUnit *Unit = cxtu::getASTUnit(CTUnit);
3768 if (Unit && Unit->isUnsafeToFree())
6285 // macro arguments can have arbitrary translation-unit source order, we do not
7355 ASTUnit &Unit = *cxtu::getASTUnit(TU);
7356 HeaderSearch &HS = Unit.getPreprocessor().getHeaderSearchInfo();
7812 void cxindex::printDiagsToStderr(ASTUnit *Unit) {
7813 if (!Unit)
7816 for (ASTUnit::stored_diag_iterator D = Unit->stored_diag_begin(),
7817 DEnd = Unit->stored_diag_end();
7819 CXStoredDiagnostic Diag(*D, Unit->getLangOpts());
7841 ASTUnit *Unit = cxtu::getASTUnit(TU);
7842 Preprocessor &PP = Unit->getPreprocessor();
7878 ASTUnit *Unit = cxtu::getASTUnit(TU);
7881 SourceManager &SM = Unit->getSourceManager();
7887 Preprocessor &PP = Unit->getPreprocessor();
7915 ASTUnit *Unit = cxtu::getASTUnit(TU);
7916 Preprocessor &PP = Unit->getPreprocessor();
7919 Loc = Unit->getSourceManager().getSpellingLoc(Loc);
7937 if (ASTUnit *Unit = cxtu::getASTUnit(TU)) {
7938 LogOS << '<' << Unit->getMainFileName() << '>';
7939 if (Unit->isMainFileAST())
7940 LogOS << " (" << Unit->getASTFileName() << ')';