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

  /frameworks/compile/libbcc/runtime/lib/
Makefile.mk 12 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
13 ObjNames := $(Sources:%.c=%.o)
  /frameworks/compile/libbcc/runtime/lib/arm/
Makefile.mk 14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
15 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /frameworks/compile/libbcc/runtime/lib/i386/
Makefile.mk 14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
15 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /frameworks/compile/libbcc/runtime/lib/ppc/
Makefile.mk 14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
15 ObjNames := $(Sources:%.c=%.o) $(AsmSources:%.S=%.o)
  /frameworks/compile/libbcc/runtime/lib/x86_64/
Makefile.mk 14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
15 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.
  /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 215 milliseconds