Searched refs:stem (Results 1 – 25 of 34) sorted by relevance
12
/build/make/core/ |
D | configure_module_stem.mk | 4 $(call verify-module-stem,my_multilib_stem) 7 $(call verify-module-stem,LOCAL_MODULE_STEM) 14 $(call verify-module-stem,LOCAL_BUILT_MODULE_STEM) 17 $(call verify-module-stem,LOCAL_MODULE_SUFFIX) 22 $(call verify-module-stem,LOCAL_INSTALLED_MODULE_STEM) 25 $(call verify-module-stem,LOCAL_MODULE_SUFFIX)
|
D | header_library_internal.mk | 11 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
D | host_static_library_internal.mk | 17 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
D | host_shared_library_internal.mk | 17 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
D | static_library_internal.mk | 18 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
D | shared_library_internal.mk | 17 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
/build/soong/rust/ |
D | source_provider.go | 61 stem := ctx.ModuleName() 63 stem = String(sp.Properties.Stem) 65 return stem
|
D | builder_test.go | 31 stem: "bindings", 36 stem: "bindings",
|
D | proc_macro.go | 77 stem := procMacro.baseCompiler.getStemWithoutSuffix(ctx) 78 validateLibraryStem(ctx, stem, procMacro.crateName()) 80 return stem + String(procMacro.baseCompiler.Properties.Suffix)
|
D | androidmk.go | 167 stem, suffix, _ := android.SplitFileExt(file) 169 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem) 188 stem, suffix, _ := android.SplitFileExt(file) 191 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
|
D | library_test.go | 111 stem: "libfoo", 118 stem: "foo_bar",
|
D | bindgen_test.go | 27 stem: "bindings",
|
D | compiler.go | 246 stem := ctx.ModuleName() 248 stem = String(compiler.Properties.Stem) 251 return stem
|
D | rust_test.go | 263 stem: "bindings", 308 stem: "bindings",
|
D | library.go | 427 stem := library.baseCompiler.getStemWithoutSuffix(ctx) 428 validateLibraryStem(ctx, stem, library.crateName()) 430 return stem + String(library.baseCompiler.Properties.Suffix)
|
/build/soong/python/ |
D | binary.go | 162 stem := ctx.ModuleName() 164 stem = String(binary.binaryProperties.Stem) 167 return stem + String(binary.binaryProperties.Suffix)
|
D | androidmk.go | 91 stem := strings.TrimSuffix(file, filepath.Ext(file)) 95 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
|
/build/soong/cmd/extract_apks/ |
D | main.go | 42 stem string member 372 config.stem + `.apk`, 376 config.stem + `$1`, 380 config.stem + ".apk", 498 `-screen-densities value {-stem value | -extract-single} [-allow-prereleased] `+ 510 flag.StringVar(&targetConfig.stem, "stem", "", "output entries base name in the output zip file") 513 (targetConfig.stem == "" && !*extractSingle) || (*apkcertsOutput != "" && *partition == "") {
|
D | main_test.go | 437 stem string member 449 stem: "Foo", 463 stem: "Bar", 481 config := TargetConfig{stem: testCase.stem}
|
/build/soong/cc/ |
D | androidmk.go | 452 stem, suffix, _ := android.SplitFileExt(file) 455 entries.SetString("LOCAL_MODULE_STEM", stem) 465 stem, suffix, _ := android.SplitFileExt(file) 468 entries.SetString("LOCAL_MODULE_STEM", stem) 499 stem, suffix, ext := android.SplitFileExt(file) 503 entries.SetString("LOCAL_MODULE_STEM", stem) 532 stem, suffix, ext := android.SplitFileExt(file) 535 entries.SetString("LOCAL_MODULE_STEM", stem)
|
D | prebuilt_test.go | 234 stem: "libbar", 261 stem: "libbar",
|
D | vendor_snapshot.go | 742 var stem string 747 stem = libPath.Base() 748 snapshotLibOut := filepath.Join(snapshotArchDir, targetArch, libType, stem) 751 stem = ctx.ModuleName(m) 754 propOut = filepath.Join(snapshotArchDir, targetArch, libType, stem+".json")
|
D | binary.go | 117 stem := ctx.baseModuleName() 119 stem = String(binary.Properties.Stem) 122 return stem
|
/build/soong/java/ |
D | dexpreopt_config.go | 133 stem: "boot", 143 stem: "boot",
|
D | dexpreopt_bootjars.go | 41 stem string member 117 name := image.stem 128 return image.stem 366 symbolsFile := symbolsDir.Join(ctx, image.stem+".oat") 368 outputPath := outputDir.Join(ctx, image.stem+".oat")
|
12