Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 59) sorted by relevance

123

/build/soong/scripts/
Dpackage-check.sh60 found=false
63 found=true
67 if [[ "${found}" == "false" ]]; then
/build/soong/android/
Dnamespace.go142 func (r *NameResolver) namespaceAt(path string) (namespace *Namespace, found bool) {
143 mapVal, found := r.namespacesByDir.Load(path)
144 if !found {
152 namespace, found := r.namespaceAt(path)
153 if found {
244 …uleFromName(name string, namespace blueprint.Namespace) (group blueprint.ModuleGroup, found bool) {
248 namespace, found := r.namespaceAt(nsName)
249 if !found {
256 group, found = candidate.moduleContainer.ModuleFromName(name, nil)
257 if found {
[all …]
Dutil.go413 func CheckDuplicate(values []string) (duplicate string, found bool) {
416 if duplicate, found = seen[v]; found {
Dtesting.go377 found := false
380 found = true
384 if !found {
Dutil_test.go356 found, out := RemoveFromList(testCase.key, testCase.input)
357 if found != testCase.expectedFound {
362 t.Errorf(" got: %#v", found)
/build/soong/cmd/diff_target_files/
Dtarget_files.go55 found := false
59 found = true
68 if !found {
/build/soong/cc/
Dsanitize.go238 var found bool
239 …if found, globalSanitizers = removeFromList("undefined", globalSanitizers); found && s.All_undefin…
243 …if found, globalSanitizers = removeFromList("default-ub", globalSanitizers); found && s.Undefined …
247 …if found, globalSanitizers = removeFromList("address", globalSanitizers); found && s.Address == ni…
251 …if found, globalSanitizers = removeFromList("thread", globalSanitizers); found && s.Thread == nil {
255 …if found, globalSanitizers = removeFromList("fuzzer", globalSanitizers); found && s.Fuzzer == nil {
259 …if found, globalSanitizers = removeFromList("safe-stack", globalSanitizers); found && s.Safestack …
263 if found, globalSanitizers = removeFromList("cfi", globalSanitizers); found && s.Cfi == nil {
270 …if found, globalSanitizers = removeFromList("integer_overflow", globalSanitizers); found && s.Inte…
276 if found, globalSanitizers = removeFromList("scudo", globalSanitizers); found && s.Scudo == nil {
[all …]
Dsdk_test.go60 found := false
73 found = true
76 if !found {
Dsnapshot_utils.go56 func (s *snapshotMap) get(name string, arch android.ArchType) (snapshot string, found bool) {
57 snapshot, found = s.snapshots[snapshotMapKey(name, arch)]
58 return snapshot, found
Dprebuilt_test.go135 var found bool
138 found = true
141 return found
Dmakevars.go337 found := false
338 flags, includes, found = extract(flags, includes, "-I")
339 if !found {
340 flags, systemIncludes, found = extract(flags, systemIncludes, "-isystem ")
342 if !found {
/build/soong/java/
Dlegacy_core_platform_api_usage.go144 _, found := legacyCorePlatformApiLookup[ctx.ModuleName()]
145 return found
/build/blueprint/
Dname_interface.go58 ModuleFromName(moduleName string, namespace Namespace) (group ModuleGroup, found bool)
121 …Interface) ModuleFromName(moduleName string, namespace Namespace) (group ModuleGroup, found bool) {
122 group, found = s.modules[moduleName]
123 return group, found
/build/make/tools/fs_config/
Dfs_config_generator.py143 def __init__(self, identifier, value, found, login_shell): argument
158 self.found = found
178 and self.value == other.value and self.found == other.found \
553 found = False
562 found = True
565 if not found:
974 (base.identifier, base.friendly, base.found, oem.found))
1222 found_file = aid.found
1302 if self._old_file != aid.found:
1303 self._old_file = aid.found
[all …]
Dtest_fs_config_generator.py51 self.assertEqual(aid.found, 'myfakefile')
59 self.assertEqual(aid.found, 'myfakefile')
/build/soong/partner/bpfix/extensions/
Dheaders.go63 if lib, found := findHeaderLib(item); found {
78 func getLiteralListProperty(mod *parser.Module, name string) (list *parser.List, found bool) {
/build/soong/bpfix/bpfix/
Dbpfix.go726 found := map[string]bool{}
731 found[name] = true
741 if len(found) == 0 {
763 if found[nameValue.Value] {
1136 list, found := getLiteralListProperty(mod, name)
1137 return found && len(list.Values) > 0
1141 s, found := getLiteralStringPropertyValue(mod, name)
1142 return found && len(s) > 0
1145 func getLiteralListProperty(mod *parser.Module, name string) (list *parser.List, found bool) {
1154 func getLiteralListPropertyValue(mod *parser.Module, name string) (list []string, found bool) {
[all …]
/build/soong/cmd/host_bionic_inject/
Dhost_bionic_inject.go143 found := false
152 found = true
164 if !found {
/build/blueprint/parser/
Dast.go278 func (x *Map) GetProperty(name string) (Property *Property, found bool) {
279 prop, found, _ := x.getPropertyImpl(name)
280 return prop, found // we don't currently expose the index to callers
283 func (x *Map) getPropertyImpl(name string) (Property *Property, found bool, index int) {
294 _, found, index := x.getPropertyImpl(propertyName)
295 if found {
298 return found
/build/soong/python/
Dpython.go386 if _, found := set[l]; found {
395 if _, found := set[l]; found {
546 if v, found := relativeRootMap[relativeRoot]; found {
676 if oldValue, found := m[key]; found {
/build/soong/zip/cmd/
Dmain.go38 if _, found := (*u)[s]; found {
/build/soong/cmd/merge_zips/
Dmerge_zips.go361 if _, found := initedPackages[pyPkg]; found {
367 if _, found := allPackages[pyPkg]; found {
377 if _, found := initedPackages[pyPkg]; !found {
/build/soong/cmd/pom2bp/
Dpom2bp.go112 _, found := n[groupId+":"+artifactId]
113 return found
130 _, found := n[groupId+":"+artifactId]
132 return found
588 the Android.bp module name using <replace>. If no matches are found, <artifactId> is used.
/build/blueprint/proptools/
Dextend.go285 found := false
307 found = true
405 } else if !found {
/build/soong/finder/
Dfinder.go506 child, found := node.children[firstComponent]
508 if !found {
546 ours, found := m.children[key]
547 if found {
652 _, found := dirsByDevice[entry.Device]
653 if !found {
1428 childNode, found := parentNode.children[subdirName]
1431 if !found {

123