HomeSort by relevance Sort by last modified time
    Searched refs:Sources (Results 1 - 25 of 38) 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))
53 for (size_t i = 0; i < Sources.size(); ++i)
54 Sources[i]->CompleteRedeclChain(D);
59 for(size_t i = 0; i < Sources.size(); ++i) {
60 Sel = Sources[i]->GetExternalSelector(ID);
69 for(size_t i = 0; i < Sources.size(); ++i
    [all...]
  /external/compiler-rt/lib/dfsan/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(Sources:%.cc=%.o)
23 DfsanFunctions := $(Sources:%.cc=%)
  /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/clang/lib/Index/
SimpleFormatContext.h 42 Sources(*Diagnostics, Files),
43 Rewrite(Sources, Options) {
53 Sources.overrideFileContents(Entry, Source);
55 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
69 SourceManager Sources;
  /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/compiler-rt/lib/ubsan/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
15 CSources := $(filter-out $(CXXSources),$(Sources))
16 ObjNames := $(Sources:%.cc=%.o)
  /external/clang/unittests/Tooling/
RewriterTestContext.h 43 Sources(Diagnostics, Files),
44 Rewrite(Sources, Options) {
54 Sources.overrideFileContents(Entry, Source);
56 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
77 return Sources.createFileID(File, SourceLocation(), SrcMgr::C_User);
81 SourceLocation Result = Sources.translateFileLineCol(
82 Sources.getFileEntryForID(ID), Line, Column);
112 SourceManager Sources;
ToolingTest.cpp 201 std::vector<std::string> Sources;
202 Sources.push_back("/a.cc");
203 Sources.push_back("/b.cc");
204 ClangTool Tool(Compilations, Sources);
305 std::vector<std::string> Sources;
306 Sources.push_back("/a.cc");
307 Sources.push_back("/b.cc");
308 ClangTool Tool(Compilations, Sources);
  /external/compiler-rt/lib/builtins/armv6m/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /external/compiler-rt/lib/builtins/i386/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /external/compiler-rt/lib/builtins/ppc/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /external/compiler-rt/lib/builtins/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/profile/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.c $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(patsubst %.c,%.o,$(patsubst %.cc,%.o,$(Sources)))
  /external/clang/include/clang/Tooling/
Refactoring.h 86 Replacement(const SourceManager &Sources, SourceLocation Start, unsigned Length,
90 Replacement(const SourceManager &Sources, const CharSourceRange &Range,
95 Replacement(const SourceManager &Sources, const Node &NodeToReplace,
118 void setFromSourceLocation(const SourceManager &Sources, SourceLocation Start,
120 void setFromSourceRange(const SourceManager &Sources,
234 Replacement::Replacement(const SourceManager &Sources,
238 setFromSourceRange(Sources, Range, ReplacementText);
  /external/clang/lib/Tooling/
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()));
Refactoring.cpp 38 Replacement::Replacement(const SourceManager &Sources, SourceLocation Start,
40 setFromSourceLocation(Sources, Start, Length, ReplacementText);
43 Replacement::Replacement(const SourceManager &Sources,
46 setFromSourceRange(Sources, Range, ReplacementText);
103 void Replacement::setFromSourceLocation(const SourceManager &Sources,
107 Sources.getDecomposedLoc(Start);
108 const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first);
125 static int getRangeSize(const SourceManager &Sources,
127 SourceLocation SpellingBegin = Sources.getSpellingLoc(Range.getBegin());
128 SourceLocation SpellingEnd = Sources.getSpellingLoc(Range.getEnd())
    [all...]
  /external/compiler-rt/lib/lsan/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(Sources:%.cc=%.o)
24 LsanFunctions := $(Sources:%.cc=%)
  /external/compiler-rt/lib/tsan/
Makefile.mk 12 Sources :=
  /external/compiler-rt/lib/builtins/
Makefile.mk 17 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
18 ObjNames := $(Sources:%.c=%.o)
  /external/compiler-rt/lib/builtins/arm/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /external/clang/tools/clang-format/
ClangFormat.cpp 107 SourceManager &Sources, FileManager &Files) {
111 Sources.overrideFileContents(Entry, Source, true);
112 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
124 static bool fillRanges(SourceManager &Sources, FileID ID,
143 SourceLocation Start = Sources.translateLineCol(ID, FromLine, 1);
144 SourceLocation End = Sources.translateLineCol(ID, ToLine, UINT_MAX);
167 Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[i]);
178 End = Sources.getLocForEndOfFile(ID);
211 SourceManager Sources(Diagnostics, Files);
221 FileID ID = createInMemoryFile(FileName, Code.get(), Sources, Files)
    [all...]
  /external/clang/unittests/AST/
CommentParser.cpp 632 const char *Sources[] = {
669 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
670 FullComment *FC = parseString(Sources[i]);
796 const char *Sources[] = {
806 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
807 FullComment *FC = parseString(Sources[i]);
825 const char *Sources[] = {
836 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
837 FullComment *FC = parseString(Sources[i]);
855 const char *Sources[] =
    [all...]
CommentLexer.cpp 92 const char *Sources[] = {
95 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
98 lexString(Sources[i], Toks);
108 const char *Sources[] = {
111 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
114 lexString(Sources[i], Toks);
125 const char *Sources[] = {
130 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
133 lexString(Sources[i], Toks);
146 const char *Sources[] =
    [all...]

Completed in 1329 milliseconds

1 2