/frameworks/compile/libbcc/runtime/make/test/ |
D | test-util.mk | 3 streq_t0 = $(call streq,,) 4 $(call AssertEqual,streq_t0,true) 5 streq_t1 = $(call streq,b,) 6 $(call AssertEqual,streq_t1,) 7 streq_t2 = $(call streq,,b) 8 $(call AssertEqual,streq_t2,) 9 streq_t3 = $(call streq,b,b) 10 $(call AssertEqual,streq_t3,true) 11 streq_t4 = $(call streq,bb,b) 12 $(call AssertEqual,streq_t4,) [all …]
|
/frameworks/compile/libbcc/runtime/make/ |
D | lib_util.mk | 19 $(call Set,Tmp.SelectFunctionDir,$(call SelectFunctionDirs,$(1),$(2),$(3),$(4)))\ 20 $(if $(call streq,1,$(words $(Tmp.SelectFunctionDir))),\ 23 $(if $(call streq,0,$(words $(Tmp.SelectFunctionDir))),\ 31 $(if $(and $(call streq,Optimized,$($(key).Implementation)),\ 32 $(call contains,$($(key).OnlyConfigs),$(1)),\ 33 $(call contains,$($(key).OnlyArchs),$(2))),$(key),))) 36 $(if $(and $(call streq,Optimized,$($(key).Implementation)),\ 37 $(call contains,$($(key).OnlyConfigs),$(1))),$(key),))) 40 $(if $(and $(call streq,Optimized,$($(key).Implementation)),\ 41 $(call contains,$($(key).OnlyArchs),$(2))),$(key),))) [all …]
|
D | lib_platforms.mk | 15 $(call Set,PlatformName,$(basename $(notdir $(1)))) 21 $(call Set,PlatformKey,Platform.$(PlatformName)) 22 $(call Append,PlatformKeys,$(PlatformKey)) 23 $(call Set,$(PlatformKey).Name,$(PlatformName)) 24 $(call Set,$(PlatformKey).Path,$(1)) 28 $$(call Set,$$(var),UNDEFINED)) 31 $$(call Set,$$(var).$$(config),UNDEFINED))) 34 $$(call Set,$$(var).$$(arch),UNDEFINED))) 42 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \ 46 $$(if $$(and $$(call strneq,UNDEFINED,$$(UniversalArchs)),\ [all …]
|
D | util.mk | 16 strneq = $(if $(call streq,$(1),$(2)),,true) 21 contains = $(if $(strip $(foreach i,$(1),$(if $(call streq,$(2),$(i)),T,))),true,) 29 set_difference = $(foreach i,$(1),$(if $(call contains,$(2),$(i)),,$(i))) 44 IsDefined = $(call strneq,undefined,$(flavor $(1))) 49 IsUndefined = $(call streq,undefined,$(flavor $(1))) 55 VarOrDefault = $(if $(call IsDefined,$(1)),$($(1)),$(2)) 74 $(call AssertValue,$(call IsUndefined,$(2)),destination is already defined)\ 75 $(if $(call IsUndefined,$(1)),,\ 76 $(call Set,$(2),$($(1)))) 88 $(if $(call streq,$($(1)),$(2)),,\
|
D | subdir.mk | 28 $(call Set,Dir,$(1)) 34 $(call Set,DirKey,SubDir.$(subst .,,$(subst /,__,$(1)))) 35 $(call Append,SubDirKeys,$(DirKey)) 36 $(call Set,$(DirKey).Dir,$(Dir)) 40 $$(call Set,$$(var),UNDEFINED)) 47 $$(if $$(call strneq,UNDEFINED,$$($$(var))), \ 55 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \ 58 $$(if $$(call strneq,UNDEFINED,$$($$(var))),, \ 59 $$(call Set,$$(var),))) 63 $$(call Set,$(DirKey).$$(var),$$($$(var)))) [all …]
|
D | lib_info.mk | 25 $(if $(call strneq,,$(strip $($(key).OnlyArchs) $($(key).OnlyConfigs))),,\ 30 $(if $(call strneq,,$($(key).OnlyConfigs)),,\ 32 $(call Append,ArchFunctions.$(arch),$(sort \ 37 $(call Set,ArchFunctions.$(arch),$(sort $(ArchFunctions.$(arch))))\ 38 $(call Set,ArchOnlyFunctions.$(arch),\ 39 $(call set_difference,$(ArchFunctions.$(arch)),$(CommonFunctions)))) 44 $(call Append,AvailableIn.$(fn),$(key))))
|
/frameworks/base/ |
D | CleanSpec.mk | 46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/s… 53 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/FrameworkTest_intermediates/) 54 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/android.policy*) 55 $(call add-clean-step, rm -rf $(TARGET_OUT_JAVA_LIBRARIES)/android.policy.jar) [all …]
|
/frameworks/compile/libbcc/runtime/ |
D | Makefile | 114 $(call Set,Tmp.Key,$(1)) 115 $(call Set,Tmp.Name,$($(Tmp.Key).Name)) 116 $(call Set,Tmp.Configs,$($(Tmp.Key).Configs)) 117 $(call Set,Tmp.ObjPath,$(ProjObjRoot)/$(Tmp.Name)) 128 $(call PerPlatformConfig_template,$(config))) 132 $(call Set,Tmp.Config,$(1)) 133 $(call Set,Tmp.ObjPath,$(ProjObjRoot)/$(Tmp.Name)/$(Tmp.Config)) 137 $(call Set,Tmp.ArchsToBuild,\ 138 $(if $(call IsDefined,$(Tmp.Key).UniversalArchs),\ 142 $(call VarOrDefault,$(Tmp.Key).Arch.$(Tmp.Config),$($(Tmp.Key).Arch)))) [all …]
|
/frameworks/base/telephony/java/com/android/internal/telephony/test/ |
D | SimulatedGsmCallState.java | 184 CallInfo call = calls[i]; in triggerRing() local 186 if (call == null && empty < 0) { in triggerRing() 188 } else if (call != null in triggerRing() 189 && (call.state == CallInfo.State.INCOMING in triggerRing() 190 || call.state == CallInfo.State.WAITING) in triggerRing() 195 } else if (call != null) { in triggerRing() 221 CallInfo call = calls[i]; in progressConnectingCallState() local 223 if (call != null && call.state == CallInfo.State.DIALING) { in progressConnectingCallState() 224 call.state = CallInfo.State.ALERTING; in progressConnectingCallState() 228 obtainMessage(EVENT_PROGRESS_CALL_STATE, call), in progressConnectingCallState() [all …]
|
/frameworks/compile/libbcc/ |
D | CleanSpec.mk | 46 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libbcc_intermediates) 47 $(call add-clean-step, rm -rf $(HOST_OUT)/obj/SHARED_LIBRARIES/libbcc_intermediates) 48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libruntime.bc) 49 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates) 50 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libbcc_sha1_intermediates) 51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libbcc_sha1.so) 52 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates) 53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates) 54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates) 55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/SHARED_LIBRARIES/libclcore.bc_intermediates)
|
/frameworks/base/core/tests/coretests/ |
D | Android.mk | 1 ACTUAL_LOCAL_PATH := $(call my-dir) 8 include $(call all-makefiles-under,$(ACTUAL_LOCAL_PATH)) 19 $(call all-java-files-under, src) \ 20 $(call all-Iaidl-files-under, src) \ 21 $(call all-java-files-under, DisabledTestApp/src) \ 22 $(call all-java-files-under, EnabledTestApp/src) 32 FrameworkCoreTests_intermediates := $(call intermediates-dir-for,APPS,$(LOCAL_PACKAGE_NAME))/test_a… 40 $(FrameworkCoreTests_all_apks_res): $(FrameworkCoreTests_intermediates)/raw/%: $(call intermediates… 41 $(call copy-file-to-new-target)
|
/frameworks/base/data/sounds/ |
D | AllAudio.mk | 17 $(call inherit-product, frameworks/base/data/sounds/OriginalAudio.mk) 18 $(call inherit-product, frameworks/base/data/sounds/AudioPackage2.mk) 19 $(call inherit-product, frameworks/base/data/sounds/AudioPackage3.mk) 20 $(call inherit-product, frameworks/base/data/sounds/AudioPackage4.mk) 21 $(call inherit-product, frameworks/base/data/sounds/AudioPackage5.mk) 22 $(call inherit-product, frameworks/base/data/sounds/AudioPackage6.mk) 23 $(call inherit-product, frameworks/base/data/sounds/AudioPackage7.mk) 24 $(call inherit-product, frameworks/base/data/sounds/AudioPackage7alt.mk)
|
/frameworks/wilhelm/tests/sandbox/ |
D | Android.mk | 1 LOCAL_PATH:= $(call my-dir) 10 $(call include-path-for, wilhelm) 38 $(call include-path-for, wilhelm) 64 $(call include-path-for, wilhelm) \ 65 $(call include-path-for, wilhelm-ut) 94 $(call include-path-for, wilhelm) \ 95 $(call include-path-for, wilhelm-ut) 124 $(call include-path-for, wilhelm) 150 $(call include-path-for, wilhelm) 179 $(call include-path-for, wilhelm) [all …]
|
/frameworks/support/v4/ |
D | Android.mk | 15 LOCAL_PATH := $(call my-dir) 24 LOCAL_SRC_FILES := $(call all-java-files-under, eclair) 33 LOCAL_SRC_FILES := $(call all-java-files-under, froyo) 42 LOCAL_SRC_FILES := $(call all-java-files-under, gingerbread) 51 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb) 60 LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2) 69 LOCAL_SRC_FILES := $(call all-java-files-under, ics) 78 LOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1) 87 LOCAL_SRC_FILES := $(call all-java-files-under, jellybean) 96 LOCAL_SRC_FILES := $(call all-java-files-under, java) [all …]
|
/frameworks/wilhelm/tests/examples/ |
D | Android.mk | 1 LOCAL_PATH:= $(call my-dir) 10 $(call include-path-for, wilhelm) 34 $(call include-path-for, wilhelm) 58 $(call include-path-for, wilhelm) 85 $(call include-path-for, wilhelm) 110 $(call include-path-for, wilhelm) 134 $(call include-path-for, wilhelm) 158 $(call include-path-for, wilhelm) 182 $(call include-path-for, wilhelm) 206 $(call include-path-for, wilhelm) [all …]
|
/frameworks/compile/libbcc/lib/ScriptCRT/neon/ |
D | clamp.ll | 24 …%1 = tail call <4 x float> @llvm.arm.neon.vmins.v4f32(<4 x float> %value, <4 x float> %high) nounw… 25 …%2 = tail call <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float> %1, <4 x float> %low) nounwind r… 30 %_high = tail call <4 x float> @smear_4f(float %high) nounwind readnone 31 %_low = tail call <4 x float> @smear_4f(float %low) nounwind readnone 32 …%out = tail call <4 x float> @_Z5clampDv4_fS_S_(<4 x float> %value, <4 x float> %_low, <4 x float>… 40 …%a = tail call <4 x float> @llvm.arm.neon.vmins.v4f32(<4 x float> %_value, <4 x float> %_high) nou… 41 …%b = tail call <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float> %a, <4 x float> %_low) nounwind … 48 %_high = tail call <4 x float> @smear_4f(float %high) nounwind readnone 49 %_low = tail call <4 x float> @smear_4f(float %low) nounwind readnone 50 …%a = tail call <4 x float> @llvm.arm.neon.vmins.v4f32(<4 x float> %_value, <4 x float> %_high) nou… [all …]
|
/frameworks/base/tools/layoutlib/ |
D | Android.mk | 28 built_framework_dep := $(call java-lib-deps,framework) 29 built_framework_classes := $(call java-lib-files,framework) 31 built_core_dep := $(call java-lib-deps,core) 32 built_core_classes := $(call java-lib-files,core) 34 built_layoutlib_create_jar := $(call intermediates-dir-for, \ 65 include $(call all-makefiles-under,$(LOCAL_PATH))
|
/frameworks/wilhelm/tests/mimeUri/ |
D | Android.mk | 1 LOCAL_PATH:= $(call my-dir) 10 $(call include-path-for, wilhelm) 36 $(call include-path-for, wilhelm) 62 $(call include-path-for, wilhelm) 88 $(call include-path-for, wilhelm) 114 $(call include-path-for, wilhelm) 140 $(call include-path-for, wilhelm) 166 $(call include-path-for, wilhelm) 192 $(call include-path-for, wilhelm)
|
/frameworks/ex/carousel/ |
D | Android.mk | 15 LOCAL_PATH := $(call my-dir) 23 $(call all-java-files-under, java) \ 24 $(call all-logtags-files-under, java) \ 25 $(call all-renderscript-files-under, java) 30 $(call dist-for-goals, droidcore, $(LOCAL_BUILT_MODULE):android-common-carousel.jar)
|
/frameworks/ex/common/ |
D | Android.mk | 15 LOCAL_PATH := $(call my-dir) 24 $(call all-java-files-under, java) \ 25 $(call all-logtags-files-under, java) 29 $(call dist-for-goals, droidcore, $(LOCAL_BUILT_MODULE):android-common.jar) 34 include $(call all-makefiles-under, $(LOCAL_PATH))
|
/frameworks/compile/slang/ |
D | RSSpec.mk | 16 LOCAL_PATH := $(call my-dir) 32 $(call generate-rs-spec-inc,clang-builtin-enums) 38 $(call generate-rs-spec-inc,rs-data-type-enums) 44 $(call generate-rs-spec-inc,rs-matrix-type-enums) 50 $(call generate-rs-spec-inc,rs-object-type-enums) 56 $(call generate-rs-spec-inc,rs-data-element-enums)
|
/frameworks/base/data/fonts/ |
D | Android.mk | 18 LOCAL_PATH := $(call my-dir) 38 $(eval $(call create-font-symlink,DroidSans.ttf,Roboto-Regular.ttf)) 39 $(eval $(call create-font-symlink,DroidSans-Bold.ttf,Roboto-Bold.ttf)) 144 $(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf)) 145 $(eval $(call create-font-symlink,Roboto-LightItalic.ttf,Roboto-Italic.ttf)) 146 $(eval $(call create-font-symlink,RobotoCondensed-Regular.ttf,Roboto-Regular.ttf)) 147 $(eval $(call create-font-symlink,RobotoCondensed-Bold.ttf,Roboto-Bold.ttf)) 148 $(eval $(call create-font-symlink,RobotoCondensed-Italic.ttf,Roboto-Italic.ttf)) 149 $(eval $(call create-font-symlink,RobotoCondensed-BoldItalic.ttf,Roboto-BoldItalic.ttf)) 171 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
|
/frameworks/support/v13/ |
D | Android.mk | 15 LOCAL_PATH := $(call my-dir) 24 LOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1) 31 LOCAL_SRC_FILES := $(call all-java-files-under, ics) 39 LOCAL_SRC_FILES := $(call all-java-files-under, java) 46 $(call dist-for-goals, droidcore sdk, $(LOCAL_BUILT_MODULE):android-support-v13.jar)
|
/frameworks/base/tests/BrowserTestPlugin/ |
D | Android.mk | 16 TOP_LOCAL_PATH:= $(call my-dir) 20 LOCAL_PATH:= $(call my-dir) 25 LOCAL_SRC_FILES := $(call all-subdir-java-files) 36 include $(call all-makefiles-under,$(LOCAL_PATH))
|
/frameworks/opt/mailcommon/ |
D | Android.mk | 15 LOCAL_PATH := $(call my-dir) 21 $(call all-java-files-under, java) \ 22 $(call all-logtags-files-under, java) 26 include $(call all-makefiles-under, $(LOCAL_PATH))
|