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

1 2

  /external/clang/lib/Sema/
MultiplexExternalSemaSource.cpp 26 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.size(); ++i
    [all...]
  /frameworks/compile/libbcc/lib/Core/
BCCContextImpl.cpp 31 std::vector<Source *> Sources(mOwnSources.begin(), mOwnSources.end());
32 llvm::DeleteContainerPointers(Sources);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CorpusFactory.java 26 Collection<Corpus> createCorpora(Sources sources);
Sources.java 11 public interface Sources {
14 * Gets all sources.
38 * Updates the list of sources.
SearchableCorpusFactory.java 52 public Collection<Corpus> createCorpora(Sources sources) {
54 addSpecialCorpora(corpora, sources);
55 addSingleSourceCorpora(corpora, sources);
75 * @param sources All available sources.
77 protected void addSpecialCorpora(ArrayList<Corpus> corpora, Sources sources) {
78 addCorpus(corpora, createWebCorpus(sources));
79 addCorpus(corpora, createAppsCorpus(sources));
    [all...]
  /external/compiler-rt/lib/interception/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(Sources:%.cc=%.o)
23 InterceptionFunctions := $(Sources:%.cc=%)
  /external/compiler-rt/lib/sanitizer_common/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(Sources:%.cc=%.o)
22 SanitizerCommonFunctions := $(Sources:%.cc=%)
  /external/compiler-rt/lib/ubsan/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(Sources:%.cc=%.o)
23 UbsanFunctions := $(Sources:%.cc=%)
  /external/clang/include/clang/Tooling/
Refactoring.h 55 Replacement(SourceManager &Sources, SourceLocation Start, unsigned Length,
59 Replacement(SourceManager &Sources, const CharSourceRange &Range,
64 Replacement(SourceManager &Sources, const Node &NodeToReplace,
93 void setFromSourceLocation(SourceManager &Sources, SourceLocation Start,
95 void setFromSourceRange(SourceManager &Sources, const CharSourceRange &Range,
154 Replacement::Replacement(SourceManager &Sources, const Node &NodeToReplace,
158 setFromSourceRange(Sources, Range, ReplacementText);
  /external/clang/tools/libclang/
SimpleFormatContext.h 41 Sources(*Diagnostics, Files),
42 Rewrite(Sources, Options) {
53 Sources.overrideFileContents(Entry, Source, true);
55 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
69 SourceManager Sources;
  /external/clang/lib/Tooling/
Refactoring.cpp 36 Replacement::Replacement(SourceManager &Sources, SourceLocation Start,
38 setFromSourceLocation(Sources, Start, Length, ReplacementText);
41 Replacement::Replacement(SourceManager &Sources, const CharSourceRange &Range,
43 setFromSourceRange(Sources, Range, ReplacementText);
90 void Replacement::setFromSourceLocation(SourceManager &Sources,
94 Sources.getDecomposedLoc(Start);
95 const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first);
105 static int getRangeSize(SourceManager &Sources, const CharSourceRange &Range) {
106 SourceLocation SpellingBegin = Sources.getSpellingLoc(Range.getBegin());
107 SourceLocation SpellingEnd = Sources.getSpellingLoc(Range.getEnd())
    [all...]
RefactoringCallbacks.cpp 23 static Replacement replaceStmtWithText(SourceManager &Sources,
26 return tooling::Replacement(Sources, CharSourceRange::getTokenRange(
29 static Replacement replaceStmtWithStmt(SourceManager &Sources,
32 return replaceStmtWithText(Sources, From, Lexer::getSourceText(
34 Sources, LangOptions()));
  /external/compiler-rt/lib/asan/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(Sources:%.cc=%.o)
24 AsanFunctions := $(Sources:%.cc=%)
  /external/compiler-rt/lib/msan/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(Sources:%.cc=%.o)
24 MsanFunctions := $(Sources:%.cc=%)
  /external/compiler-rt/lib/tsan/rtl/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
15 ObjNames := $(Sources:%.cc=%.o) $(AsmSources:%.S=%.o)
25 TsanFunctions += $(Sources:%.cc=%) $(AsmSources:%.S=%)
  /external/clang/unittests/Tooling/
RewriterTestContext.h 43 Sources(Diagnostics, Files),
44 Rewrite(Sources, Options) {
60 Sources.overrideFileContents(Entry, Source, true);
62 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
85 return Sources.createFileID(File, SourceLocation(), SrcMgr::C_User);
89 SourceLocation Result = Sources.translateFileLineCol(
90 Sources.getFileEntryForID(ID), Line, Column);
118 SourceManager Sources;
RefactoringTest.cpp 38 return Replacement(Context.Sources, Start, Length, ReplacementText);
104 Replacement Replace1(Context.Sources, SourceLocation(), 0, "");
115 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1),
117 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 3, 1),
127 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1),
129 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1),
131 Replaces.insert(Replacement(Context.Sources, Context.getLocation(ID, 2, 1),
143 Replaces.insert(Replacement(Context.Sources, Context.getLocation(IDa, 1, 1),
145 Replaces.insert(Replacement(Context.Sources, SourceLocation(),
147 Replaces.insert(Replacement(Context.Sources, Context.getLocation(IDz, 1, 1)
    [all...]
  /external/compiler-rt/lib/arm/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /external/compiler-rt/lib/i386/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /external/compiler-rt/lib/ppc/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /external/compiler-rt/lib/profile/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
14 ObjNames := $(Sources:%.c=%.o)
  /external/compiler-rt/lib/x86_64/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /external/compiler-rt/lib/tsan/
Makefile.mk 12 Sources :=
  /external/clang/unittests/AST/
CommentParser.cpp 632 const char *Sources[] = {
644 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
645 FullComment *FC = parseString(Sources[i]);
771 const char *Sources[] = {
781 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
782 FullComment *FC = parseString(Sources[i]);
800 const char *Sources[] = {
811 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
812 FullComment *FC = parseString(Sources[i]);
830 const char *Sources[] =
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSources.java 25 * Mock implementation of {@link Sources}.
27 public class MockSources implements Sources {

Completed in 754 milliseconds

1 2