Searched refs:stem (Results 1 – 25 of 29) 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 | bindgen_test.go | 29 stem: "libbindgen", 82 stem: "libbindgen", 108 stem: "libbindgen", 120 stem: "libbindgen", 128 stem: "libbindgen", 153 stem: "libbindgen", 165 stem: "libbindgen",
|
D | proc_macro.go | 76 stem := procMacro.baseCompiler.getStemWithoutSuffix(ctx) 77 validateLibraryStem(ctx, stem, procMacro.crateName()) 79 return stem + String(procMacro.baseCompiler.Properties.Suffix)
|
D | androidmk.go | 164 stem, suffix, _ := android.SplitFileExt(file) 166 entries.SetString("LOCAL_MODULE_STEM", stem) 197 stem, suffix, _ := android.SplitFileExt(file) 200 entries.SetString("LOCAL_MODULE_STEM", stem)
|
D | compiler.go | 382 stem := ctx.ModuleName() 384 stem = String(compiler.Properties.Stem) 387 return stem
|
D | protobuf.go | 111 stem := proto.BaseSourceProvider.getStem(ctx) 114 stemFile := android.PathForModuleOut(ctx, "mod_"+stem+".rs")
|
D | library_test.go | 111 stem: "libfoo", 118 stem: "foo_bar",
|
D | library.go | 539 stem := library.baseCompiler.getStemWithoutSuffix(ctx) 540 validateLibraryStem(ctx, stem, library.crateName()) 542 return stem + String(library.baseCompiler.Properties.Suffix)
|
/build/soong/cc/ |
D | vendor_snapshot.go | 400 var stem string 405 stem = libPath.Base() 411 ext := filepath.Ext(stem) 412 stem = strings.TrimSuffix(stem, ext) + ".cfi" + ext 417 snapshotLibOut := filepath.Join(snapshotArchDir, targetArch, libType, stem) 420 stem = ctx.ModuleName(m) 423 propOut = filepath.Join(snapshotArchDir, targetArch, libType, stem+".json")
|
D | androidmk.go | 459 stem, suffix, _ := android.SplitFileExt(file) 462 entries.SetString("LOCAL_MODULE_STEM", stem) 477 stem, suffix, _ := android.SplitFileExt(file) 480 entries.SetString("LOCAL_MODULE_STEM", stem) 499 stem, suffix, ext := android.SplitFileExt(file) 502 entries.SetString("LOCAL_MODULE_STEM", stem) 538 stem, suffix, ext := android.SplitFileExt(file) 541 entries.SetString("LOCAL_MODULE_STEM", stem)
|
D | prebuilt_test.go | 232 stem: "libbar", 259 stem: "libbar",
|
D | binary.go | 131 stem := ctx.baseModuleName() 133 stem = String(binary.Properties.Stem) 136 return stem
|
D | test.go | 189 stem := test.binaryDecorator.Properties.Stem 190 return stem != nil && *stem == ""
|
/build/soong/python/ |
D | binary.go | 253 stem := ctx.ModuleName() 255 stem = String(binary.binaryProperties.Stem) 258 return stem + String(binary.binaryProperties.Suffix)
|
D | androidmk.go | 88 stem := strings.TrimSuffix(file, filepath.Ext(file)) 92 entries.SetString("LOCAL_MODULE_STEM", stem)
|
/build/soong/cmd/extract_apks/ |
D | main_test.go | 437 stem string member 449 stem: "Foo", 463 stem: "Bar", 481 config := TargetConfig{stem: testCase.stem}
|
/build/soong/java/ |
D | dexpreopt_config.go | 67 stem: "boot", 78 stem: "boot",
|
/build/soong/apex/ |
D | androidmk.go | 230 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.stem(), ".jar")) 246 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.stem(), ".apk")) 265 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.stem()) 277 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.stem())
|
D | builder.go | 212 if fi.isJniLib && !android.InList(fi.stem(), jniLibs) { 213 jniLibs = append(jniLibs, fi.stem()) 704 libNames = append(libNames, f.stem()) 843 target := ctx.InstallFile(android.PathForModuleInstall(ctx, dir), fi.stem(), fi.builtFile)
|
/build/soong/androidmk/androidmk/ |
D | android.go | 57 "LOCAL_MODULE_STEM": stem, 471 func stem(ctx variableAssignmentContext) error { func
|
12