Searched refs:InList (Results 1 – 25 of 28) sorted by relevance
12
/build/soong/rust/ |
D | library_test.go | 141 if !android.InList("libstd", libfoo.Module().(*Module).Properties.AndroidMkDylibs) { 175 if !android.InList("libbar", static.Module().(*Module).Properties.AndroidMkRlibs) { 178 if android.InList("libbar", static.Module().(*Module).Properties.AndroidMkDylibs) { 184 if !android.InList("libbar", dyn.Module().(*Module).Properties.AndroidMkDylibs) { 187 if android.InList("libbar", dyn.Module().(*Module).Properties.AndroidMkRlibs) {
|
D | rust_test.go | 206 if !android.InList("libdylib", module.Properties.AndroidMkDylibs) { 210 if !android.InList("librlib", module.Properties.AndroidMkRlibs) { 214 if !android.InList("libpm", module.Properties.AndroidMkProcMacroLibs) { 218 if !android.InList("libshared", module.Properties.AndroidMkSharedLibs) { 222 if !android.InList("libstatic", module.Properties.AndroidMkStaticLibs) { 351 if android.InList("libstd", module.Properties.AndroidMkDylibs) {
|
D | coverage_test.go | 49 if android.InList("android_arm64_armv8-a_dylib_cov", ctx.ModuleVariantsForTests("libbar_nocov")) {
|
/build/soong/android/ |
D | util.go | 120 func InList(s string, list []string) bool { func 167 if InList(l, filter) { 180 if !InList(l, filter_out) {
|
D | apex.go | 224 return InList(what, apex_available) || 225 (what != AvailableToPlatform && InList(AvailableToAnyApex, apex_available))
|
D | neverallow.go | 537 …return (len(r.moduleTypes) == 0 || InList(moduleType, r.moduleTypes)) && !InList(moduleType, r.unl…
|
D | config.go | 879 if InList(name, exemptedList) { 884 if InList("*", enforceList) { 887 return InList(name, enforceList) 1058 InList("*", c.config.productVariables.JavaCoveragePaths) || 1092 …if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.produ…
|
D | arch.go | 471 if !InList(feature, archFeatures[arch]) { 1039 if !InList(target, targets) { 1045 if !InList(target, targets) {
|
D | util_test.go | 231 out := InList(testCase.key, input)
|
D | paths.go | 389 if !InList(p.String(), expandedExcludes) { 424 if InList(p.String(), expandedExcludes) {
|
/build/soong/apex/ |
D | apex.go | 1347 …if proptools.Bool(a.properties.Use_vendor) && !android.InList(a.Name(), useVendorAllowList(ctx.Con… 1556 if !android.InList(sanitizerName, a.properties.SanitizerNames) { 1562 if android.InList(sanitizerName, a.properties.SanitizerNames) { 1572 if len(arches) == 0 || android.InList(a.Arch().ArchType.Name, arches) { 1576 return android.InList(sanitizerName, globalSanitizerNames) 1817 if android.InList(ver, ctx.Config().PlatformVersionActiveCodenames()) { 2159 if android.InList(cc.Name(), providedNativeSharedLibs) { 2186 if !android.InList(name, a.requiredDeps) { 2341 if val, ok := apexAvailBaseline[key]; ok && android.InList(moduleName, val) { 2346 if val, ok := apexAvailBaseline[key]; ok && android.InList(moduleName, val) {
|
D | prebuilt.go | 79 forceDisable = forceDisable || android.InList("address", ctx.Config().SanitizeDevice()) || 80 android.InList("hwaddress", ctx.Config().SanitizeDevice())
|
D | androidmk.go | 95 if !android.InList(moduleName, moduleNames) {
|
D | builder.go | 488 for !android.InList(dir, executablePaths) && dir != "" { 782 if !android.InList(from.Name(), info.From) {
|
/build/soong/cc/config/ |
D | toolchain.go | 241 var inList = android.InList
|
/build/soong/cc/ |
D | util.go | 41 var inList = android.InList
|
D | cc_test.go | 2954 if len(variants) != 1 || !android.InList(arm64, variants) { 2959 if android.InList(arm64, variants) { 3315 if !android.InList("-DBAR", libfoo.flags.Local.CppFlags) {
|
/build/soong/java/ |
D | gen.go | 125 if baseDir != "" && !android.InList(baseDir, baseDirs) {
|
D | robolectric.go | 153 if !android.InList(m.BaseModuleName(), config.FrameworkLibraries) {
|
D | sdk.go | 338 if len(allowedVersions) > 0 && !android.InList(s.version.String(), allowedVersions) {
|
D | droiddoc.go | 1355 android.InList("--validate-nullability-from-merged-stubs", d.Javadoc.args) || 1569 if android.InList("--generate-documentation", d.Javadoc.args) {
|
/build/soong/cmd/pom2mk/ |
D | pom2mk.go | 109 func InList(s string, list []string) bool { func 185 if d.Type != typeExt || !InList(d.Scope, scopes) {
|
/build/soong/cmd/pom2bp/ |
D | pom2bp.go | 151 func InList(s string, list []string) bool { func 276 if d.Type != typeExt || !InList(d.Scope, scopes) {
|
/build/soong/tradefed/ |
D | autogen.go | 51 …} else if BoolDefault(autoGenConfig, true) && (!android.InList("cts", testSuites) || testConfigTem…
|
/build/soong/sdk/ |
D | testing.go | 174 if !android.InList(expected, result) {
|
12