/development/vndk/tools/image-diff-tool/ |
D | allowlist.txt | 2 system/build.prop=ro.system.build.date 3 system/build.prop=ro.system.build.fingerprint 4 system/build.prop=ro.system.build.version.incremental 5 system/build.prop=ro.build.display.id 6 system/build.prop=ro.build.version.incremental 7 system/build.prop=ro.build.date 8 system/build.prop=ro.build.host 9 system/build.prop=ro.build.product 10 system/build.prop=ro.build.flavor 11 system/build.prop=ro.build.description
|
/development/build/ |
D | sdk.atree | 21 # sdk/build/tools.atree 71 # Note that the build-tools sub-folder uses the platform-name as a placeholder 72 # at build-time. Packaging will later change that to the actual build-tools 75 development/sdk/sdk_files_NOTICE.txt build-tools/${PLATFORM_NAME}/NOTICE.txt 76 development/sdk/build_tools_source.properties build-tools/${PLATFORM_NAME}/source.properties 77 development/sdk/build_tools_runtime.properties build-tools/${PLATFORM_NAME}/runtime.properties 79 # build tools from out/host/$(HOST_OS)-$(HOST_ARCH)/ 80 bin/aapt strip build-tools/${PLATFORM_NAME}/aapt 81 bin/aapt2 strip build-tools/${PLATFORM_NAME}/aapt2 82 bin/aidl strip build-tools/${PLATFORM_NAME}/aidl [all …]
|
D | sdk-windows-x86.atree | 26 # are controled by sdk/build/tools.windows.atree. 67 # Note that the build-tools sub-folder uses the platform-name as a placeholder 68 # at build-time. Packaging will later change that to the actual build-tools 72 …x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/lib32/libwinpthread-1.dll strip build-tools/${PLATFORM_N… 74 rm build-tools/${PLATFORM_NAME}/aapt 75 bin/aapt.exe strip build-tools/${PLATFORM_NAME}/aapt.exe 77 rm build-tools/${PLATFORM_NAME}/aapt2 78 bin/aapt2.exe strip build-tools/${PLATFORM_NAME}/aapt2.exe 80 rm build-tools/${PLATFORM_NAME}/lib64/libaapt2_jni.so 81 lib/libaapt2_jni.dll strip build-tools/${PLATFORM_NAME}/libaapt2_jni.dll [all …]
|
D | sdk-linux-x86.atree | 26 # Note that the build-tools sub-folder uses the platform-name as a placeholder 27 # at build-time. Packaging will later change that to the actual build-tools 31 lib64/libLLVM_android.so strip build-tools/${PLATFORM_NAME}/lib64/lib… 32 lib64/libbcc.so strip build-tools/${PLATFORM_NAME}/lib64/lib… 33 lib64/libbcinfo.so strip build-tools/${PLATFORM_NAME}/lib64/lib… 34 lib64/libclang_android.so strip build-tools/${PLATFORM_NAME}/lib64/lib… 35 lib64/libc++.so strip build-tools/${PLATFORM_NAME}/lib64/lib… 36 lib64/libaapt2_jni.so strip build-tools/${PLATFORM_NAME}/lib64/lib… 38 prebuilts/sdk/tools/lld build-tools/${PLATFORM_NAME}/lld 39 prebuilts/sdk/tools/linux/bin/lld strip build-tools/${PLATFORM_NAME}/lld-bin/lld [all …]
|
D | sdk-darwin-x86.atree | 26 # Note that the build-tools sub-folder uses the platform-name as a placeholder 27 # at build-time. Packaging will later change that to the actual build-tools 31 lib64/libLLVM_android.dylib strip build-tools/${PLATFORM_NAME}/lib64/li… 32 lib64/libbcc.dylib strip build-tools/${PLATFORM_NAME}/lib64/li… 33 lib64/libbcinfo.dylib strip build-tools/${PLATFORM_NAME}/lib64/li… 34 lib64/libclang_android.dylib strip build-tools/${PLATFORM_NAME}/lib64/li… 35 lib64/libc++.dylib strip build-tools/${PLATFORM_NAME}/lib64/li… 36 lib64/libaapt2_jni.dylib strip build-tools/${PLATFORM_NAME}/lib64/li… 38 prebuilts/sdk/tools/lld build-tools/${PLATFORM_NAME}/lld 39 prebuilts/sdk/tools/darwin/bin/lld strip build-tools/${PLATFORM_NAME}/lld-bin/lld [all …]
|
/development/vndk/tools/sourcedr/ninja/ |
D | list_ninja_build_dep.py | 40 build = graph[target] 43 dfs = [build] 45 visited = {build} 46 stack = [build] 48 build = stack.pop() 49 for dep in itertools.chain(build.explicit_ins, build.implicit_ins, 50 build.depfile_implicit_ins): 68 for build in manifest.builds: 69 for path in build.explicit_outs: 70 graph[path] = build [all …]
|
D | list_installed_file_from_source.py | 62 for build in manifest.builds: 63 for path in build.explicit_outs: 64 outs[path] = build 65 for path in build.implicit_outs: 66 outs[path] = build 71 def _are_inputs_from_vendor(build): argument 75 build.explicit_ins, build.implicit_ins, build.depfile_implicit_ins) 94 build = outs.get(out_path) 95 if build: 96 matched = _are_inputs_from_vendor(build)
|
D | list_source_file.py | 59 build = graph.get(cur) 60 if build: 61 for dep in itertools.chain(build.explicit_ins, build.implicit_ins, 62 build.depfile_implicit_ins): 104 for build in manifest.builds: 105 for path in build.explicit_outs: 106 graph[path] = build 107 for path in build.implicit_outs: 108 graph[path] = build
|
D | ninja.py | 686 build = Build() 702 build.rule = self._lexer.lex_match({TK.IDENT}).value 704 rule_env = self._rules_dict[build.rule].bindings 706 if build.rule != 'phony': 736 build.bindings = bindings 739 build.bindings = None 744 build.explicit_outs = eval_path_strings(explicit_outs, env) 745 build.implicit_outs = eval_path_strings(implicit_outs, env) 746 build.explicit_ins = eval_path_strings(explicit_ins, env) 747 build.implicit_ins = eval_path_strings(implicit_ins, env) [all …]
|
/development/vndk/snapshot/ |
D | update.py | 39 def start_branch(build): argument 40 branch_name = 'update-' + (build or 'local') 59 def install_snapshot(branch, build, local_dir, install_dir, temp_artifact_dir): argument 75 if branch and build: 79 pattern=artifact_pattern, branch=branch, build=build)) 80 utils.fetch_artifact(branch, build, artifact_pattern) 82 manifest_pattern = 'manifest_{}.xml'.format(build) 84 file=manifest_pattern, branch=branch, build=build)) 85 utils.fetch_artifact(branch, build, manifest_pattern, 179 def commit(branch, build, version): argument [all …]
|
D | build.sh | 28 -a, --build-artifacts include exported header files and flags 40 (-a|--build-artifacts) additional_option="VNDK_SNAPSHOT_BUILD_ARTIFACTS=true";; 53 build/soong/soong_ui.bash --make-mode vndk dist TARGET_PRODUCT=aosp_$arch $additional_option
|
/development/tools/repo_diff/service/repodiff/ |
D | Makefile | 58 go build 61 go build; 65 go build; 98 rm -rf build/ 153 mkdir -p ./build 157 cp ../../*.{txt,py} build/ 159 cp $(GOOGLE_APPLICATION_CREDENTIALS) build/ 161 cat Dockerfile | envsubst > build/Dockerfile 163 cp static/docker_git_config ./build/.gitconfig 164 cp ~/.gitcookies ./build/.gitcookies [all …]
|
/development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/ |
D | NotificationPresets.java | 110 return new Notification[] { builder.build() }; in buildNotifications() 164 return new Notification[] { builder.build() }; in buildNotifications() 196 return new Notification[] { builder.build() }; in buildNotifications() 221 return new Notification[] { builder.build() }; in buildNotifications() 244 return new Notification[] { builder.build() }; in buildNotifications() 268 wearableOptions.addPage(secondPageBuilder.build()); in buildNotifications() 270 return new Notification[] { builder.build() }; in buildNotifications() 292 wearableOptions.addPage(secondPageBuilder.build()); in buildNotifications() 299 wearableOptions.addPage(thirdPageBuilder.build()); in buildNotifications() 303 return new Notification[] { builder.build() }; in buildNotifications() [all …]
|
D | ActionsPresets.java | 62 .build(); in apply() 78 .build(); in apply() 92 .build(); in apply() 99 .build(); in apply() 116 .build(); in apply() 123 .build(); in apply() 141 .build(); in apply() 146 .build(); in apply() 154 .build(); in apply()
|
/development/host/windows/usb/adb_winapi_test/ |
D | BUILDME.TXT | 15 In order to build a directory with a SOURCES file you will need to install 23 This old version is used because it can build for Windows Vista (WDK 8.1 31 Assuming that WDK is installed, you need to set one of the WDK's build 34 "cd" back into this directory, and execute "build -cbeEIFZ" to clean and rebuild 35 this project, or you can execute "build -befEIF" to do a minimal build. 37 Note that you need to build AdbWinApi.dll (..\api) before you build 40 When you're done with the WDK build environment, don't forget to right-click the
|
/development/host/windows/usb/winusb/ |
D | BUILDME.TXT | 15 In order to build a directory with a SOURCES file you will need to install 23 This old version is used because it can build for Windows Vista (WDK 8.1 31 Assuming that WDK is installed, you need to set one of the WDK's build 34 "cd" back into this directory, and execute "build -cbeEIFZ" to clean and rebuild 35 this project, or you can execute "build -befEIF" to do a minimal build. 37 Note that you need to build AdbWinApi.dll (..\api) before you build 40 When you're done with the WDK build environment, don't forget to right-click the
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
D | NotificationPresets.java | 78 .build(); in buildNotification() 85 .build(); in buildNotification() 101 .build()) in buildNotification() 102 .build()) in buildNotification() 105 .build(); in buildNotification() 155 return builder.build(); in buildNotification() 181 .build(); in buildNotification() 226 .build(); in buildNotification() 242 .build(); in createPageForCustomHeight() 257 .build(); in createPageForSizePreset() [all …]
|
/development/vndk/tools/header-checker/Documentation/ |
D | Development.md | 20 To build `header-abi-dumper`, `header-abi-linker` and `header-abi-diff`: 23 development/vndk/tools/header-checker/android/build-prebuilts.sh 26 ## Alternative build instructions 28 If you have a full source tree, you may build the tools with: 30 $ source build/envsetup.sh
|
/development/tools/checkcolor/ |
D | build.gradle | 9 * With the build server you are given two env variables. 10 * The OUT_DIR is a temporary directory you can use to put things during the build. 11 * The DIST_DIR is where you want to save things from the build. 13 * The build server will copy the contents of DIST_DIR to somewhere and make it available. 19 …// the build server does not pass the build number so we infer it from the last folder of the dist…
|
/development/host/windows/usb/api/ |
D | BUILDME.TXT | 15 In order to build a directory with a SOURCES file you will need to install 23 This old version is used because it can build for Windows Vista (WDK 8.1 31 Assuming that WDK is installed, you need to set one of the WDK's build 34 "cd" back into this directory, and execute "build -cbeEIFZ" to clean and rebuild 35 this project, or you can execute "build -befEIF" to do a minimal build. 37 When you're done with the WDK build environment, don't forget to right-click the
|
/development/samples/browseable/WearNotifications/Wearable/src/com.example.android.wearable.wear.wearnotifications/ |
D | StandaloneMainActivity.java | 237 .build(); in generateBigTextStyleNotification() 249 .build(); in generateBigTextStyleNotification() 299 .build(); in generateBigTextStyleNotification() 309 Notification notification = notificationCompatBuilder.build(); in generateBigTextStyleNotification() 385 .build(); in generateBigPictureStyleNotification() 407 .build(); in generateBigPictureStyleNotification() 451 Notification notification = notificationCompatBuilder.build(); in generateBigPictureStyleNotification() 542 Notification notification = notificationCompatBuilder.build(); in generateInboxStyleNotification() 613 .build(); in generateMessagingStyleNotification() 640 .build(); in generateMessagingStyleNotification() [all …]
|
/development/scripts/ |
D | aday | 6 def build_to_date(build): argument 7 letter = build[2] 8 day = int(build[3:5])
|
/development/samples/devbytes/telephony/SmsSampleProject/ |
D | build.gradle | 1 // Top-level build file where you can add configuration options common to all sub-projects/modules. 8 classpath 'com.android.tools.build:gradle:1.2.3' 11 // in the individual module build.gradle files
|
/development/samples/browseable/WearNotifications/Application/src/com.example.android.wearable.wear.wearnotifications/ |
D | MainActivity.java | 259 .build(); in generateBigTextStyleNotification() 272 .build(); in generateBigTextStyleNotification() 319 .build(); in generateBigTextStyleNotification() 411 .build(); in generateBigPictureStyleNotification() 433 .build(); in generateBigPictureStyleNotification() 483 Notification notification = notificationCompatBuilder.build(); in generateBigPictureStyleNotification() 612 Notification notification = notificationCompatBuilder.build(); in generateInboxStyleNotification() 668 .build(); in generateMessagingStyleNotification() 727 .build(); in generateMessagingStyleNotification() 751 .build(); in generateMessagingStyleNotification() [all …]
|
/development/build/tools/ |
D | sdk_repo.mk | 102 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)): $(3) development/build/tools/mk_sources_zip.py $(HOST_OUT)… 104 development/build/tools/mk_sources_zip.py --exec-zip \ 119 $(1): $$(XMLLINT) development/build/tools/mk_sdk_repo_xml.sh $(2) $(3) 120 XMLLINT=$$(XMLLINT) development/build/tools/mk_sdk_repo_xml.sh $$@ $(2) $(4) 137 $(eval $(call mk-sdk-repo-pkg-2,SDK_REPO_XML_ARGS,$(HOST_OS),$(MAIN_SDK_ZIP),build-tools)) 145 $(call sdk-repo-pkg-zip,$(HOST_OS),$(MAIN_SDK_ZIP),build-tools) \ 160 $(eval $(call mk-sdk-repo-pkg-2,SDK_REPO_XML_ARGS,windows,$(WIN_SDK_ZIP),build-tools)) 164 $(call sdk-repo-pkg-zip,windows,$(WIN_SDK_ZIP),build-tools) \
|