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

  /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.
  /external/compiler-rt/lib/
Makefile.mk 31 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(filter-out $(ExcludedSources),$(notdir $(file))))
32 ObjNames := $(Sources:%.c=%.o)
  /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/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),$(notdir $(file)))
14 ObjNames := $(Sources:%.c=%.o)
  /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/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/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/x86_64/
Makefile.mk 15 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
16 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Sources.java 11 public interface Sources {
14 * Gets all sources.
38 * Updates the list of sources.
  /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/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[] = {
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...]
  /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;
ToolingTest.cpp 151 std::vector<std::string> Sources;
152 Sources.push_back("/a.cc");
153 Sources.push_back("/b.cc");
154 ClangTool Tool(Compilations, Sources);
  /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 575 milliseconds