Searched refs:names (Results 1 – 25 of 50) sorted by relevance
12
/build/soong/ui/build/ |
D | cleanbuild_test.go | 40 touch := func(names ...string) { 41 for _, name := range names { 49 runCleanOldFiles := func(names ...string) { 50 data := []byte(strings.Join(names, " ")) 58 assertFileList := func(names ...string) { 61 sort.Strings(names) 72 if !reflect.DeepEqual(names, foundNames) { 73 t.Errorf("Expected a different list of files:\nwant: %v\n got: %v", names, foundNames)
|
/build/make/tools/releasetools/ |
D | pylintrc | 13 # Add files or directories to the blacklist. They should be base names, not 20 # List of plugins (as comma separated values of python modules names) to load, 31 # A comma-separated list of package or module names from where C extensions may 120 # List of module names for which member attributes should not be checked 125 # List of classes names for which member attributes should not be checked 147 # List of builtins function names that should not be used, separated by a comma 150 # Good variable names which should always be accepted, separated by a comma 151 good-names=i,j,k,ex,Run,_ 153 # Bad variable names which should always be refused, separated by a comma 154 bad-names=foo,bar,baz,toto,tutu,tata [all …]
|
D | sign_apex.py | 97 names, key = a.split("=") 98 names = names.split(",") 99 for n in names:
|
/build/bazel/json_module_graph/ |
D | fullTransitiveDeps.jq | 5 transitiveDeps($m)) as $names | 7 select (IN(.Name; $names | .[]))] |
|
D | README.md | 19 * `directDeps` prints the names of the direct dependencies of the given module 20 * `transitiveDeps` prints the names of the transitive dependencies of the given
|
/build/soong/bpf/ |
D | bpf.go | 120 var names []string 126 names = append(names, objName) 140 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES :=", strings.Join(names, " "))
|
/build/soong/ui/logger/ |
D | logger_test.go | 65 names, err := d.Readdirnames(0) 69 sort.Strings(names) 71 if !reflect.DeepEqual(names, expected) { 73 t.Errorf(" got: %v", names)
|
/build/soong/android/ |
D | license_sdk_member.go | 34 …dDependencies(mctx BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) { 36 mctx.AddDependency(mctx.Module(), dependencyTag, names...)
|
D | neverallow.go | 585 names := strings.Split(propertyNames, ".") 586 for i, v := range names { 587 names[i] = proptools.FieldNameForProperty(v) 589 return names
|
/build/blueprint/bootstrap/bpdoc/ |
D | properties.go | 191 names := f.Names 192 if names == nil { 196 names = append(names, t) 199 for _, n := range names {
|
/build/soong/cc/ |
D | pylintrc | 5 good-names=i,j,k,ex,Run,_
|
D | binary_sdk_member.go | 41 …ncies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) { 43 for _, bin := range names {
|
D | util.go | 36 func libNamesToFlags(names []string) string { 37 return android.JoinWithPrefix(names, "-l")
|
D | library_sdk_member.go | 77 …ncies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) { 79 for _, lib := range names {
|
/build/soong/androidmk/androidmk/ |
D | androidmk.go | 440 names := strings.Split(name, ".") 447 for i, n := range names[:len(names)-1] { 448 fqn := strings.Join(names[0:i+1], ".") 465 Name: names[len(names)-1],
|
/build/soong/docs/ |
D | map_files.md | 46 Note that, with few exceptions (see "Special version names" below), the name of 58 ## Special version names 60 Version names that end with `_PRIVATE` or `_PLATFORM` will not be exposed in any 100 **Symbol names for which no other rule applies will implicitly be introduced in 103 Code names can (and typically should) be used when defining new APIs. This
|
/build/soong/sdk/ |
D | sdk.go | 417 names := memberListProperty.getter(s.dynamicMemberTypeListProperties) 418 if len(names) > 0 { 420 memberListProperty.memberType.AddDependencies(mctx, tag, names)
|
/build/make/ |
D | buildspec.mk.default | 46 # minimal targets like "make droid". This takes simple target names 47 # like "Browser" or "MyApp", the names used by LOCAL_MODULE or
|
/build/ |
D | buildspec.mk.default | 46 # minimal targets like "make droid". This takes simple target names 47 # like "Browser" or "MyApp", the names used by LOCAL_MODULE or
|
/build/soong/java/ |
D | platform_compat_config.go | 137 …ncies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) { 138 mctx.AddVariationDependencies(nil, dependencyTag, names...)
|
D | system_modules.go | 248 …ncies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) { 249 mctx.AddVariationDependencies(nil, dependencyTag, names...)
|
/build/soong/finder/fs/ |
D | LICENSE | 14 * Neither the name of the Google Inc. nor the names of its
|
/build/soong/third_party/zip/ |
D | LICENSE | 14 * Neither the name of the Google Inc. nor the names of its
|
/build/make/tools/signapk/src/com/android/signapk/ |
D | SignApk.java | 390 ArrayList<String> names = new ArrayList<String>(); in copyFiles() local 404 names.add(entryName); in copyFiles() 406 Collections.sort(names); in copyFiles() 418 List<String> remainingNames = new ArrayList<>(names.size()); in copyFiles() 419 for (String name : names) { in copyFiles()
|
/build/make/tools/rbcrun/ |
D | README.md | 74 "*top*/" prefix from the matching file names.
|
12