Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 86) sorted by relevance

1234

/build/soong/android/
Dsoong_config_modules.go269 func importModuleTypes(ctx LoadHookContext, from string, moduleTypes ...string) {
270 from = filepath.Clean(from)
271 if filepath.Ext(from) != ".bp" {
272 ctx.PropertyErrorf("from", "%q must be a file with extension .bp", from)
276 if strings.HasPrefix(from, "../") {
278 from)
282 moduleTypeDefinitions := loadSoongConfigModuleTypeDefinition(ctx, from)
291 moduleType, from)
298 func loadSoongConfigModuleTypeDefinition(ctx LoadHookContext, from string) map[string]blueprint.Mod…
300 key := NewCustomOnceKey(onceKeyType(filepath.Clean(from)))
[all …]
Donceper_test.go144 t.Errorf(`second call to Once with the NewOnceKey from same string should return "b": %q`, b)
164 t.Errorf(`second call to Once with the NewCustomOnceKey from equal key should return "a": %q`, b)
/build/make/core/
Dsoong_android_app_set.mk6 $(call pretty-error,soong_apk_set.mk may only be used from Soong)
20 define extract-master-from-apk-set
26 $(eval $(call extract-master-from-apk-set,$(LOCAL_PREBUILT_MODULE_FILE),$(LOCAL_APK_SET_MASTER_FILE…
Dexecutable_internal.mk21 ifeq (,$(call if-build-from-source,$(LOCAL_MODULE),$(LOCAL_PATH)))
34 …ULE) is statically linking libc to dynamic executable, please remove libc from static libs or set …
Dhost_shared_library_internal.mk26 ifeq (,$(call if-build-from-source,$(LOCAL_MODULE),$(LOCAL_PATH)))
Dhost_executable_internal.mk21 ifeq (,$(call if-build-from-source,$(LOCAL_MODULE),$(LOCAL_PATH)))
/build/blueprint/bootstrap/bpdoc/
Dbpdoc.go222 for _, from := range mt.PropertyStructs {
224 if from.Name == to.Name {
225 CollapseDuplicateProperties(&to.Properties, &from.Properties)
229 collapsed = append(collapsed, from)
234 func CollapseDuplicateProperties(to, from *[]Property) {
236 for _, f := range *from {
/build/make/
DDeprecation.md3 We've made significant progress converting AOSP from Make to Soong (Android.mk
37 from AOSP (and Google's internal trees). The process will go something like
42 * `BUILD_PACKAGE` will be moved from `AVAILABLE_BUILD_MODULE_TYPES` to
47 * `BUILD_PACKAGE` will be switched from `DEFAULT_WARNING_BUILD_MODULE_TYPES` to
51 `BUILD_BROKEN_USES_BUILD_PACKAGE`, `BUILD_PACKAGE` will be moved from
/build/blueprint/pathtools/
Dfs_test.go52 from, to string
97 t.Run(test.from, func(t *testing.T) {
98 got := mock.followSymlinks(test.from)
296 from, to string
342 t.Run(test.from, func(t *testing.T) {
343 got, err := fs.Readlink(test.from)
346 t.Errorf("fs.Readlink(%q) want: %q, got %q", test.from, test.to, got)
/build/soong/symbol_inject/cmd/
Dsymbol_inject.go29 from = flag.String("from", "", "optional existing value of the symbol for verification") var
91 err = symbol_inject.InjectStringSymbol(file, w, *symbol, *value, *from)
/build/soong/cc/
Dsdk_test.go58 assertDep := func(t *testing.T, from, to android.TestingModule) {
70 rule := from.Description("link")
/build/soong/symbol_inject/
Dsymbol_inject.go54 func InjectStringSymbol(file *File, w io.Writer, symbol, value, from string) error {
64 if from != "" {
68 copy(expected, from)
/build/soong/ui/status/ninja_frontend/
Dfrontend.proto47 // Description field from the edge.
49 // Command field from the edge.
74 // Info/warning/error message from Ninja.
DREADME1 This comes from https://android.googlesource.com/platform/external/ninja/+/master/src/frontend.proto
/build/make/target/board/generic_arm64/
DREADME.txt5 from it or use it in any way.
/build/soong/ui/logger/
Dlogger.go80 func fileRotation(from, baseName, ext string, cur, max int) error { argument
89 if err := os.Rename(from, newName); err != nil {
90 return fmt.Errorf("Failed to rotate %s to %s. %s", from, newName, err)
/build/make/target/board/generic_x86_64/
DREADME.txt8 from it or use it in any way.
/build/make/target/board/generic_x86/
DREADME.txt8 from it or use it in any way.
/build/make/target/board/generic/
DREADME.txt9 from it or use it in any way.
/build/make/tools/zipalign/
DREADME.txt21 from being page-aligned. The adjustment is made by altering the size of
39 facilitates directly loading shared libraries from inside a zip archive.
/build/make/target/board/generic_x86_64_arm64/
DREADME.txt8 from it or use it in any way.
/build/make/target/board/generic_x86_arm/
DREADME.txt8 from it or use it in any way.
/build/make/tools/acp/
DREADME17 volume. "cp" works okay copying from local disk.
22 If you copy from NFS to local disk, your NFS files will always be
/build/soong/cmd/extract_apks/bundle_proto/
Dconfig.proto61 // If no StandaloneConfig is set, the configuration is inherited from
83 // Whether 64 bit libraries should be stripped from Standalone APKs.
111 // from assets paths for this dimension when splits (or asset slices) are
/build/make/tools/droiddoc/templates-ndk/assets/
DGPL-LICENSE.txt74 running the Program is not restricted, and the output from the Program
99 whole or in part contains or is derived from the Program or any
115 identifiable sections of that work are not derived from the Program,
167 access to copy from a designated place, then offering equivalent
168 access to copy the source code from the same place counts as
176 However, parties who have received copies, or rights, from you under
190 Program), the recipient automatically receives a license from the
201 excuse you from the conditions of this License. If you cannot
208 refrain entirely from distribution of the Program.
238 of the General Public License from time to time. Such new versions will

1234