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

1 2

  /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.
333 /// \brief Produces a diagnostic note if one of the attached sources
334 /// contains a complete definition for \p T. Queries the sources in list
  /external/compiler-rt/lib/builtins/
Makefile.mk 20 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
21 ObjNames := $(Sources:%.c=%.o)
  /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/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/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/arm64/
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)
  /external/compiler-rt/lib/sanitizer_common/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
15 Sources := $(filter-out $(NolibcSources),$(Sources))
16 ObjNames := $(Sources:%.cc=%.o)
24 SanitizerCommonFunctions := $(Sources:%.cc=%)
  /external/clang/lib/Index/
SimpleFormatContext.h 43 Sources(*Diagnostics, Files),
44 Rewrite(Sources, Options) {
53 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
68 SourceManager Sources;
  /external/compiler-rt/lib/asan/
Makefile.mk 17 Sources := $(CCSources) $(SSources)
  /external/compiler-rt/lib/ubsan/
Makefile.mk 13 Sources := $(foreach file,$(wildcard $(Dir)/*.cc),$(notdir $(file)))
16 CSources := $(filter-out $(StandaloneSources),$(filter-out $(CXXSources),$(Sources)))
17 ObjNames := $(Sources:%.cc=%.o)
  /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/Sema/
ExternalSemaSourceTest.cpp 138 std::vector<clang::ExternalSemaSource *> Sources;
160 for (size_t I = 0, E = Sources.size(); I < E; ++I) {
161 Sources[I]->InitializeSema(CI.getSema());
162 CI.getSema().addExternalSource(Sources[I]);
170 Sources.push_back(Source);
  /external/clang/unittests/Tooling/
RewriterTestContext.h 46 Sources(Diagnostics, Files), Rewrite(Sources, Options) {
62 return Sources.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
84 return Sources.createFileID(File, SourceLocation(), SrcMgr::C_User);
88 SourceLocation Result = Sources.translateFileLineCol(
89 Sources.getFileEntryForID(ID), Line, Column);
120 SourceManager Sources;
ToolingTest.cpp 223 std::vector<std::string> Sources;
224 Sources.push_back("/a.cc");
225 Sources.push_back("/b.cc");
226 ClangTool Tool(Compilations, Sources);
395 std::vector<std::string> Sources;
396 Sources.push_back("/a.cc");
397 Sources.push_back("/b.cc");
398 ClangTool Tool(Compilations, Sources);
  /external/v8/tools/
js2c.py 312 return Vector<const char>(sources, %(total_length)i);
319 static const char sources[] = { %s };
329 if (index == %(i)i) return Vector<const char>(sources + %(offset)i, %(source_length)i);
339 """Build the chain of filter functions to be applied to the sources.
374 class Sources:
398 to treat different types of sources differently.
400 sources as JS strings.
403 An instance of Sources.
425 # Sort 'debugger' sources first.
438 result = Sources()
    [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...]
  /external/mesa3d/include/CL/
cl.hpp 105 * cl::Program::Sources source(1,
    [all...]
  /external/opencv3/3rdparty/include/opencl/1.2/CL/
cl.hpp 109 * cl::Program::Sources source(1,
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 483 milliseconds

1 2