Searched refs:Sources (Results 1 - 6 of 6) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp26 Sources.push_back(&s1);
27 Sources.push_back(&s2);
38 Sources.push_back(&source);
46 for(size_t i = 0; i < Sources.size(); ++i)
47 if (Decl *Result = Sources[i]->GetExternalDecl(ID))
54 for(size_t i = 0; i < Sources.size(); ++i) {
55 Sel = Sources[i]->GetExternalSelector(ID);
64 for(size_t i = 0; i < Sources.size(); ++i)
65 total += Sources[i]->GetNumExternalSelectors();
70 for(size_t i = 0; i < Sources
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Index/
H A DSimpleFormatContext.h42 Sources(*Diagnostics, Files),
43 Rewrite(Sources, Options) {
54 Sources.overrideFileContents(Entry, Source, true);
56 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
70 SourceManager Sources; member in class:clang::index::SimpleFormatContext
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp23 static Replacement replaceStmtWithText(SourceManager &Sources, argument
26 return tooling::Replacement(Sources, CharSourceRange::getTokenRange(
29 static Replacement replaceStmtWithStmt(SourceManager &Sources, argument
32 return replaceStmtWithText(Sources, From, Lexer::getSourceText(
34 Sources, LangOptions()));
H A DRefactoring.cpp38 Replacement::Replacement(SourceManager &Sources, SourceLocation Start, argument
40 setFromSourceLocation(Sources, Start, Length, ReplacementText);
43 Replacement::Replacement(SourceManager &Sources, const CharSourceRange &Range, argument
45 setFromSourceRange(Sources, Range, ReplacementText);
102 void Replacement::setFromSourceLocation(SourceManager &Sources, argument
106 Sources.getDecomposedLoc(Start);
107 const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first);
124 static int getRangeSize(SourceManager &Sources, const CharSourceRange &Range) { argument
125 SourceLocation SpellingBegin = Sources.getSpellingLoc(Range.getBegin());
126 SourceLocation SpellingEnd = Sources
136 setFromSourceRange(SourceManager &Sources, const CharSourceRange &Range, StringRef ReplacementText) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DRefactoring.h86 Replacement(SourceManager &Sources, SourceLocation Start, unsigned Length,
90 Replacement(SourceManager &Sources, const CharSourceRange &Range,
95 Replacement(SourceManager &Sources, const Node &NodeToReplace,
118 void setFromSourceLocation(SourceManager &Sources, SourceLocation Start,
120 void setFromSourceRange(SourceManager &Sources, const CharSourceRange &Range,
233 Replacement::Replacement(SourceManager &Sources, const Node &NodeToReplace, argument
237 setFromSourceRange(Sources, Range, ReplacementText);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DMultiplexExternalSemaSource.h42 SmallVector<ExternalSemaSource *, 2> Sources; // doesn't own them. member in class:clang::MultiplexExternalSemaSource

Completed in 184 milliseconds