Searched refs:OtherModuleName (Results 1 – 25 of 27) sorted by relevance
12
/build/blueprint/ |
D | visit_test.go | 57 panic(fmt.Errorf("unexpected dependency tag on %q", ctx.OtherModuleName(dep))) 59 m.properties.VisitDepsDepthFirst = m.properties.VisitDepsDepthFirst + ctx.OtherModuleName(dep) 62 return ctx.OtherModuleName(dep) != "B" 64 … m.properties.VisitDepsDepthFirstIf = m.properties.VisitDepsDepthFirstIf + ctx.OtherModuleName(dep) 67 m.properties.VisitDirectDeps = m.properties.VisitDirectDeps + ctx.OtherModuleName(dep) 70 return ctx.OtherModuleName(dep) != "B" 72 m.properties.VisitDirectDepsIf = m.properties.VisitDirectDepsIf + ctx.OtherModuleName(dep)
|
D | module_ctx.go | 269 OtherModuleName(m Module) string methodSpec 487 func (m *baseModuleContext) OtherModuleName(logicModule Module) string { func
|
/build/soong/android/ |
D | license.go | 70 mergeStringProps(&m.base().commonProperties.Effective_license_kinds, ctx.OtherModuleName(module)) 72 …ctx.ModuleErrorf("license_kinds property %q is not a license_kind module", ctx.OtherModuleName(mod…
|
D | licenses.go | 172 …ctx.ModuleErrorf("license_kinds property %q is not a license_kind module", ctx.OtherModuleName(mod… 189 …ctx.ModuleErrorf("%s property %q is not a license module", propertyName, ctx.OtherModuleName(modul… 211 licenses = append(licenses, ctx.OtherModuleName(module)) 225 …ctx.ModuleErrorf("%s property %q is not a license module", propertyName, ctx.OtherModuleName(modul…
|
D | path_properties_test.go | 60 p.sourceDeps = append(p.sourceDeps, ctx.OtherModuleName(dep))
|
D | bazel_paths.go | 78 OtherModuleName(m blueprint.Module) string methodSpec 334 moduleName := ctx.OtherModuleName(module)
|
D | proto.go | 76 ctx.OtherModuleName(dep))
|
D | visibility.go | 448 depName := ctx.OtherModuleName(dep) 570 moduleName := ctx.OtherModuleName(module)
|
D | defaults.go | 304 ctx.OtherModuleName(module))
|
D | neverallow.go | 518 name := ctx.OtherModuleName(m)
|
D | apex.go | 942 toName := ctx.OtherModuleName(to)
|
D | paths.go | 158 } else if x, ok := ctx.(interface{ OtherModuleName(blueprint.Module) string }); ok { 159 return x.OtherModuleName(module)
|
/build/soong/java/ |
D | hiddenapi_singleton.go | 148 name := ctx.OtherModuleName(module) 161 … configured in boot jars but does not support being added to an apex", ctx.OtherModuleName(module))
|
D | platform_bootclasspath.go | 218 …updatable apexes %q is not allowed in the framework boot image", ctx.OtherModuleName(m), apexInfo.… 233 name := ctx.OtherModuleName(m)
|
D | device_host_converter.go | 110 ctx.PropertyErrorf("libs", "module %q cannot be used as a dependency", ctx.OtherModuleName(m))
|
D | robolectric.go | 164 r.libs = append(r.libs, ctx.OtherModuleName(dep)) 165 if !android.InList(ctx.OtherModuleName(dep), config.FrameworkLibraries) {
|
D | droidstubs.go | 335 "module %q is not a metalava merge-annotations dir", ctx.OtherModuleName(m)) 346 "module %q is not a metalava merge-annotations dir", ctx.OtherModuleName(m)) 389 "module %q is not a metalava api-levels-annotations dir", ctx.OtherModuleName(m))
|
D | app.go | 746 otherName := ctx.OtherModuleName(module) 769 name: ctx.OtherModuleName(module), 1256 dep := ctx.OtherModuleName(m)
|
D | droiddoc.go | 355 otherName := ctx.OtherModuleName(module) 618 …opertyErrorf("custom_template", "module %q is not a droiddoc_exported_dir", ctx.OtherModuleName(m))
|
D | java.go | 377 ctx.OtherModuleName(dep.(blueprint.Module))) 1836 depName := ctx.OtherModuleName(depModule)
|
D | lint.go | 349 "%s is not a java module", ctx.OtherModuleName(extraLintCheckModule))
|
/build/soong/python/ |
D | python.go | 448 sharedLibs = append(sharedLibs, ctx.OtherModuleName(dep)) 678 ctx.ModuleName(), ctx.OtherModuleName(child)) 685 path.dest, path.src.String(), ctx.ModuleName(), ctx.OtherModuleName(child)) 690 path.dest, path.src.String(), ctx.ModuleName(), ctx.OtherModuleName(child))
|
/build/soong/apex/ |
D | apex.go | 889 depName := mctx.OtherModuleName(child) 1660 depName := ctx.OtherModuleName(child) 2276 fromName := ctx.OtherModuleName(from) 2277 toName := ctx.OtherModuleName(to) 2329 ctx.ModuleErrorf("cannot depend on \"%v\": %v", ctx.OtherModuleName(module), err) 2363 fromName := ctx.OtherModuleName(from) 2364 toName := ctx.OtherModuleName(to)
|
/build/soong/sdk/ |
D | update.go | 158 …ctx.ModuleErrorf("module %q is not valid in property %s", ctx.OtherModuleName(child), memberType.S… 200 name := ctx.OtherModuleName(variant) 472 name := android.RemoveOptionalPrebuiltPrefix(ctx.OtherModuleName(dep.variant)) 651 memberName := ctx.OtherModuleName(memberVariantDep.variant)
|
/build/soong/cc/ |
D | test.go | 373 depName := ctx.OtherModuleName(dep)
|
12