Searched defs:Sources (Results 1 - 25 of 30) sorted by relevance

12

/external/compiler-rt/lib/builtins/
H A DMakefile.mk17 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) macro
18 ObjNames := $(Sources:%.c=%.o)
/external/compiler-rt/lib/dfsan/
H A DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) macro
14 ObjNames := $(Sources:%.cc=%.o)
23 DfsanFunctions := $(Sources:%.cc=%)
/external/compiler-rt/lib/interception/
H A DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) macro
14 ObjNames := $(Sources:%.cc=%.o)
23 InterceptionFunctions := $(Sources:%.cc=%)
/external/compiler-rt/lib/msan/
H A DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) macro
14 ObjNames := $(Sources:%.cc=%.o)
24 MsanFunctions := $(Sources:%.cc=%)
/external/compiler-rt/lib/profile/
H A DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.c $(Dir)/*.cc),$(notdir $(file))) macro
14 ObjNames := $(patsubst %.c,%.o,$(patsubst %.cc,%.o,$(Sources)))
/external/compiler-rt/lib/sanitizer_common/
H A DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) macro
14 ObjNames := $(Sources:%.cc=%.o)
22 SanitizerCommonFunctions := $(Sources:%.cc=%)
/external/compiler-rt/lib/tsan/
H A DMakefile.mk12 Sources := macro
/external/compiler-rt/lib/tsan/rtl/
H A DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) macro
15 ObjNames := $(Sources:%.cc=%.o) $(AsmSources:%.S=%.o)
25 TsanFunctions += $(Sources:%.cc=%) $(AsmSources:%.S=%)
/external/clang/include/clang/Sema/
H A DMultiplexExternalSemaSource.h42 SmallVector<ExternalSemaSource *, 2> Sources; // doesn't own them. member in class:clang::MultiplexExternalSemaSource
/external/compiler-rt/lib/builtins/arm/
H A DMakefile.mk15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) macro
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
/external/compiler-rt/lib/builtins/armv6m/
H A DMakefile.mk15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) macro
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
/external/compiler-rt/lib/builtins/i386/
H A DMakefile.mk15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) macro
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
/external/compiler-rt/lib/builtins/ppc/
H A DMakefile.mk15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) macro
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
/external/compiler-rt/lib/builtins/x86_64/
H A DMakefile.mk15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) macro
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
/external/compiler-rt/lib/lsan/
H A DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) macro
14 ObjNames := $(Sources:%.cc=%.o)
24 LsanFunctions := $(Sources:%.cc=%)
/external/compiler-rt/lib/ubsan/
H A DMakefile.mk13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file))) macro
15 CSources := $(filter-out $(CXXSources),$(Sources))
16 ObjNames := $(Sources:%.cc=%.o)
/external/compiler-rt/lib/asan/
H A DMakefile.mk17 Sources := $(CCSources) $(SSources) macro
/external/clang/lib/Index/
H A DSimpleFormatContext.h42 Sources(*Diagnostics, Files),
43 Rewrite(Sources, Options) {
53 Sources.overrideFileContents(Entry, Source);
55 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
69 SourceManager Sources; member in class:clang::index::SimpleFormatContext
/external/clang/include/clang/Tooling/
H A DRefactoring.h86 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, argument
238 setFromSourceRange(Sources, Range, ReplacementText);
/external/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(const SourceManager &Sources, SourceLocation Start, argument
40 setFromSourceLocation(Sources, Start, Length, ReplacementText);
43 Replacement::Replacement(const SourceManager &Sources, argument
46 setFromSourceRange(Sources, Range, ReplacementText);
103 void Replacement::setFromSourceLocation(const SourceManager &Sources, argument
107 Sources.getDecomposedLoc(Start);
108 const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first);
125 static int getRangeSize(const SourceManager &Sources, argument
127 SourceLocation SpellingBegin = Sources.getSpellingLoc(Range.getBegin());
128 SourceLocation SpellingEnd = Sources
138 setFromSourceRange(const SourceManager &Sources, const CharSourceRange &Range, StringRef ReplacementText) argument
[all...]
/external/clang/unittests/AST/
H A DCommentLexer.cpp92 const char *Sources[] = { local
95 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
98 lexString(Sources[i], Toks);
108 const char *Sources[] = { local
111 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
114 lexString(Sources[i], Toks);
125 const char *Sources[] = { local
130 for (size_t i = 0, e = array_lengthof(Sources); i != e; i++) {
133 lexString(Sources[i], Toks);
146 const char *Sources[] local
167 const char *Sources[] = { local
251 const char *Sources[] = { "//@", "///@", "//!@" }; local
268 const char *Sources[] = { "/*@*/", "/**@*/", "/*!@*/"}; local
286 const char *Sources[] = { "/*\\\\*/", "/**\\\\*/" }; local
304 const char *Sources[] = { local
576 const char *Sources[] = { local
643 const char *Sources[] = { local
674 const char *Sources[] = { local
887 const char *Sources[] = { local
912 const char *Sources[] = { local
1038 const char *Sources[] = { local
1155 const char *Sources[] = { local
1181 const char *Sources[] = { local
1209 const char *Sources[] = { local
1268 const char *Sources[] = { local
1301 const char *Sources[] = { local
1334 const char *Sources[] = { local
1359 const char *Sources[] = { local
1781 const char *Sources[] = { local
[all...]
/external/clang/tools/clang-format/
H A DClangFormat.cpp107 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, argument
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, File
106 createInMemoryFile(StringRef FileName, MemoryBuffer *Source, SourceManager &Sources, FileManager &Files) argument
[all...]
/external/clang/unittests/Tooling/
H A DRewriterTestContext.h43 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; member in class:clang::RewriterTestContext
/external/chromium_org/v8/tools/
H A Djs2c.py368 class Sources: class in inherits:
390 An instance of Sources.
405 result = Sources()
426 sources: A Sources instance with the prepared sources.
485 sources: A Sources instance with the prepared sourced.
522 sources: A Sources instance with the prepared sources.

Completed in 795 milliseconds

12