Home
last modified time | relevance | path

Searched refs:names (Results 1 – 25 of 47) sorted by relevance

12

/build/soong/ui/build/
Dcleanbuild_test.go40 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/
Dpylintrc13 # 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 …]
Dsign_apex.py97 names, key = a.split("=")
98 names = names.split(",")
99 for n in names:
Dsign_target_files_apks.py1144 names, key = a.split("=")
1145 names = names.split(",")
1146 for n in names:
Dsign_target_files_apks1144 names, key = a.split("=")
1145 names = names.split(",")
1146 for n in names:
/build/soong/bpf/
Dbpf.go107 var names []string
113 names = append(names, objName)
125 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES :=", strings.Join(names, " "))
/build/soong/ui/logger/
Dlogger_test.go65 names, err := d.Readdirnames(0)
69 sort.Strings(names)
71 if !reflect.DeepEqual(names, expected) {
73 t.Errorf(" got: %v", names)
/build/blueprint/bootstrap/bpdoc/
Dproperties.go183 names := f.Names
184 if names == nil {
188 names = append(names, t)
191 for _, n := range names {
/build/soong/sdk/
Dsdk.go242 names := memberListProperty.getter(s.dynamicMemberTypeListProperties)
245 for _, name := range names {
355 names := memberListProperty.getter(s.dynamicMemberTypeListProperties)
356 if len(names) > 0 {
358 memberListProperty.memberType.AddDependencies(mctx, tag, names)
/build/soong/androidmk/androidmk/
Dandroidmk.go417 names := strings.Split(name, ".")
424 for i, n := range names[:len(names)-1] {
425 fqn := strings.Join(names[0:i+1], ".")
442 Name: names[len(names)-1],
/build/soong/cc/
Dpylintrc5 good-names=i,j,k,ex,Run,_
Dbinary_sdk_member.go40 …ncies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) {
42 for _, lib := range names {
Dutil.go36 func libNamesToFlags(names []string) string {
37 return android.JoinWithPrefix(names, "-l")
Dlibrary_sdk_member.go74 …ncies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) {
76 for _, lib := range names {
/build/soong/android/
Dmutator.go413 names ...string) {
415 b.bp.AddVariationDependencies(variations, tag, names...)
419 tag blueprint.DependencyTag, names ...string) {
421 b.bp.AddFarVariationDependencies(variations, tag, names...)
Dneverallow.go569 names := strings.Split(propertyNames, ".")
570 for i, v := range names {
571 names[i] = proptools.FieldNameForProperty(v)
573 return names
Dsdk.go337 AddDependencies(mctx BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string)
/build/soong/java/
Dsystem_modules.go231 …ncies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) {
232 mctx.AddVariationDependencies(nil, dependencyTag, names...)
/build/
Dbuildspec.mk.default46 # minimal targets like "make droid". This takes simple target names
47 # like "Browser" or "MyApp", the names used by LOCAL_MODULE or
/build/make/
Dbuildspec.mk.default46 # minimal targets like "make droid". This takes simple target names
47 # like "Browser" or "MyApp", the names used by LOCAL_MODULE or
/build/soong/docs/
Dmap_files.md46 Note that, with few exceptions (see "Special version names" below), the name of
57 ## Special version names
59 Version names that end with `_PRIVATE` or `_PLATFORM` will not be exposed in any
/build/soong/apex/
Dapex_test.go40 func names(s string) (ns []string) { func
973 ensureListEmpty(t, names(apexManifestRule.Args["provideNativeLibs"]))
974 ensureListContains(t, names(apexManifestRule.Args["requireNativeLibs"]), "libfoo.so")
1173 ensureListEmpty(t, names(apexManifestRule.Args["provideNativeLibs"]))
1174 ensureListContains(t, names(apexManifestRule.Args["requireNativeLibs"]), "libbar.so")
2208 requireNativeLibs := names(apexManifestRule.Args["requireNativeLibs"])
2247 libs := names(ldRule.Args["libFlags"])
2261 requireNativeLibs := names(apexManifestRule.Args["requireNativeLibs"])
3261 provideNativeLibs := names(apexManifestRule.Args["provideNativeLibs"])
3345 provideNativeLibs = names(apexManifestRule.Args["provideNativeLibs"])
[all …]
/build/make/tools/signapk/src/com/android/signapk/
DSignApk.java388 ArrayList<String> names = new ArrayList<String>(); in copyFiles() local
402 names.add(entryName); in copyFiles()
404 Collections.sort(names); in copyFiles()
416 List<String> remainingNames = new ArrayList<>(names.size()); in copyFiles()
417 for (String name : names) { in copyFiles()
/build/make/core/
DWINPTHREADS_COPYING43 * * Neither the name of Lockless Inc. nor the names of its contributors may be
Dproguard_basic_keeps.flags76 # The lite proto runtime uses reflection to access fields based on the names in

12