HomeSort by relevance Sort by last modified time
    Searched refs:mk (Results 276 - 300 of 1538) sorted by null

<<11121314151617181920>>

  /external/icu4c/stubdata/
Android.mk 21 include $(LOCAL_PATH)/root.mk
25 LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
35 LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
  /external/valgrind/main/memcheck/tests/
leak-cases-possible.stderr.exp 7 by 0x........: mk (leak-cases.c:52)
13 by 0x........: mk (leak-cases.c:52)
19 by 0x........: mk (leak-cases.c:52)
leak-tree.stderr.exp 7 by 0x........: mk (leak-tree.c:28)
13 by 0x........: mk (leak-tree.c:28)
  /ndk/build/core/
default-application.mk 16 # This is the default Application.mk that is being used for applications
17 # that don't provide $PROJECT_PATH/jni/Application.mk
22 APP_BUILD_SCRIPT := $(APP_PROJECT_PATH)/jni/Android.mk
main.mk 24 # This assumes we are located under $NDK_ROOT/build/core/main.mk
27 NDK_ROOT := $(strip $(NDK_ROOT:%build/core/main.mk=%))
39 include $(NDK_ROOT)/build/core/init.mk
45 # Each 'application' must have a corresponding Application.mk file
49 # See docs/ANDROID-MK.TXT for their specification.
68 You can also add new applications by writing an Application.mk file.)
70 See docs/APPLICATION-MK.TXT for details.)
84 # Check that all apps listed in APP have an Application.mk
87 $(eval _application_mk := $(strip $(wildcard $(NDK_ROOT)/apps/$(_app)/Application.mk))) \
90 $(eval include $(BUILD_SYSTEM)/add-application.mk)\
    [all...]
build-all.mk 26 # Prepare the build for parsing Android.mk files
40 # These macros are used in Android.mk to include the corresponding
43 CLEAR_VARS := $(BUILD_SYSTEM)/clear-vars.mk
44 BUILD_HOST_EXECUTABLE := $(BUILD_SYSTEM)/build-host-executable.mk
45 BUILD_HOST_STATIC_LIBRARY := $(BUILD_SYSTEM)/build-host-static-library.mk
46 BUILD_STATIC_LIBRARY := $(BUILD_SYSTEM)/build-static-library.mk
47 BUILD_SHARED_LIBRARY := $(BUILD_SYSTEM)/build-shared-library.mk
48 BUILD_EXECUTABLE := $(BUILD_SYSTEM)/build-executable.mk
49 PREBUILT_SHARED_LIBRARY := $(BUILD_SYSTEM)/prebuilt-shared-library.mk
50 PREBUILT_STATIC_LIBRARY := $(BUILD_SYSTEM)/prebuilt-static-library.mk
    [all...]
  /bionic/libstdc++/
Android.mk 22 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
41 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
  /build/core/
host_executable.mk 28 include $(BUILD_SYSTEM)/binary.mk
static_library.mk 28 include $(BUILD_SYSTEM)/binary.mk
version_defaults.mk 34 INTERNAL_BUILD_ID_MAKEFILE := $(wildcard $(BUILD_SYSTEM)/build_id.mk)
config.mk 12 # This is repeated from main.mk, since envsetup.sh runs this file
52 include $(BUILD_SYSTEM)/pathmap.mk
60 CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk
61 BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk
62 BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk
63 BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk
64 BUILD_RAW_STATIC_LIBRARY := $(BUILD_SYSTEM)/raw_static_library.mk
65 BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk
66 BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk
67 BUILD_RAW_EXECUTABLE:= $(BUILD_SYSTEM)/raw_executable.mk
    [all...]
  /external/chromium_org/third_party/icu/source/data/translit/
trnsfiles.mk 9 # you should consider creating a 'trnslocal.mk' file in this same directory.
13 # Example 'trnslocal.mk' files:
  /external/dhcpcd/dhcpcd-hooks/
Makefile 3 include ${TOP}/config.mk
  /external/icu4c/data/translit/
trnsfiles.mk 9 # you should consider creating a 'trnslocal.mk' file in this same directory.
13 # Example 'trnslocal.mk' files:
  /external/llvm/tools/opt/
Android.mk 51 include $(LLVM_ROOT_PATH)/llvm.mk
76 include $(LLVM_ROOT_PATH)/llvm.mk
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant_conf.mk 21 include $(BUILD_SYSTEM)/base_rules.mk
  /hardware/broadcom/wlan/bcmdhd/firmware/bcm4329/
device-bcm.mk 18 -include hardware/broadcom/wlan/bcmdhd/config/config-bcm.mk
  /hardware/broadcom/wlan/bcmdhd/firmware/bcm4330/
device-bcm.mk 18 -include hardware/broadcom/wlan/bcmdhd/config/config-bcm.mk
  /hardware/qcom/bt/libbt-vendor/
Android.mk 44 include $(LOCAL_PATH)/vnd_buildcfg.mk
  /hardware/ti/omap3/omx/core_plugin/omx_core_plugin/
Android.mk 39 -include $(PV_TOP)/Android_platform_extras.mk
41 -include $(PV_TOP)/Android_system_extras.mk
  /hardware/ti/omap4xxx/
Android.mk 15 BUILD_HEAPTRACKED_SHARED_LIBRARY:= hardware/ti/omap4xxx/heaptracked-shared-library.mk
16 BUILD_HEAPTRACKED_EXECUTABLE:= hardware/ti/omap4xxx/heaptracked-executable.mk
  /ndk/tests/build/absolute-src-file-paths/jni/
Android.mk 5 # when it Android.mk is included in make -f $NDK/build/core/build-local.mk DUMP_*
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbshelve.py 53 def mk(self, key): member in class:DBShelveTestCase
63 d[self.mk('S' + x)] = 10 * x # add a string
64 d[self.mk('I' + x)] = ord(x) # add an integer
65 d[self.mk('L' + x)] = [x] * 10 # add a list
71 d[self.mk('O' + x)] = inst
105 self.assertEqual(0, d.has_key(self.mk('bad key')))
106 self.assertEqual(1, d.has_key(self.mk('IA')))
107 self.assertEqual(1, d.has_key(self.mk('OA')))
109 d.delete(self.mk('IA'))
110 del d[self.mk('OA')
353 def mk(self, key): member in class:RecNoShelveTestCase
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_dbshelve.py 53 def mk(self, key): member in class:DBShelveTestCase
63 d[self.mk('S' + x)] = 10 * x # add a string
64 d[self.mk('I' + x)] = ord(x) # add an integer
65 d[self.mk('L' + x)] = [x] * 10 # add a list
71 d[self.mk('O' + x)] = inst
105 self.assertEqual(0, d.has_key(self.mk('bad key')))
106 self.assertEqual(1, d.has_key(self.mk('IA')))
107 self.assertEqual(1, d.has_key(self.mk('OA')))
109 d.delete(self.mk('IA'))
110 del d[self.mk('OA')
353 def mk(self, key): member in class:RecNoShelveTestCase
    [all...]
  /external/icu4c/data/
makedata.mak 62 # The directory that contains ucmcore.mk files along with *.ucm files
67 # The directory that contains resfiles.mk files along with *.txt locale data files
72 # The directory that contains colfiles.mk files along with *.txt collation data files
77 # The directory that contains rbnffiles.mk files along with *.txt RBNF data files
82 # The directory that contains trfiles.mk files along with *.txt transliterator files
87 # The directory that contains resfiles.mk files along with *.txt break iterator files
98 # The directory that contains miscfiles.mk along with files that are miscelleneous data
104 # The directory that contains sprepfiles.mk files along with *.txt stringprep files
191 !IF EXISTS("$(ICUSRCDATA)\$(ICUUCM)\ucmcore.mk")
192 !INCLUDE "$(ICUSRCDATA)\$(ICUUCM)\ucmcore.mk"
    [all...]

Completed in 876 milliseconds

<<11121314151617181920>>