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

1 2

  /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/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/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/profile/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.c $(Dir)/*.cc),$(notdir $(file)))
14 ObjNames := $(patsubst %.c,%.o,$(patsubst %.cc,%.o,$(Sources)))
  /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/tsan/
Makefile.mk 12 Sources :=
  /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/include/clang/Sema/
MultiplexExternalSemaSource.h 37 /// external AST sources that also provide information for semantic
42 SmallVector<ExternalSemaSource *, 2> Sources; // doesn't own them.
351 /// \brief Produces a diagnostic note if one of the attached sources
352 /// contains a complete definition for \p T. Queries the sources in list
  /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/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/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/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/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/asan/
Makefile.mk 17 Sources := $(CCSources) $(SSources)
  /external/clang/unittests/AST/
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...]
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...]
  /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/clang/unittests/Sema/
ExternalSemaSourceTest.cpp 139 std::vector<clang::ExternalSemaSource *> Sources;
161 for (size_t I = 0, E = Sources.size(); I < E; ++I) {
162 Sources[I]->InitializeSema(CI.getSema());
163 CI.getSema().addExternalSource(Sources[I]);
171 Sources.push_back(Source);
  /external/chromium_org/v8/tools/
js2c.py 274 return Vector<const byte>(sources, %(total_length)i);
288 static const byte sources[] = { %s };
298 static const char* raw_sources = reinterpret_cast<const char*>(sources);
318 """Build the chain of filter functions to be applied to the sources.
346 class Sources:
364 sources: List of Javascript-ish source files. A file named macros.py
368 An instance of Sources.
379 # Sort 'debugger' sources first.
383 result = Sources()
400 def BuildMetadata(sources, source_bytes, native_type, omit)
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Sources.java 51 public class Sources extends BroadcastReceiver implements OnAccountsUpdateListener {
52 private static final String TAG = "Sources";
63 private static SoftReference<Sources> sInstance = null;
66 * Requests the singleton instance of {@link Sources} with data bound from
70 public static synchronized Sources getInstance(Context context) {
71 Sources sources = sInstance == null ? null : sInstance.get(); local
72 if (sources == null) {
73 sources = new Sources(context)
    [all...]

Completed in 357 milliseconds

1 2