/build/soong/cc/symbolfile/ |
D | __init__.py | 82 def __contains__(self, tag: Union[Tag, str]) -> bool: 83 return tag in self.tags 106 for tag in self.tags: 107 if tag == 'llndk' or tag.startswith('llndk='): 118 for tag in tags: 119 if tag.startswith('introduced=') or tag.startswith('introduced-'): 120 name, _ = split_tag(tag) 122 self.tags += (tag,) 157 def is_api_level_tag(tag: Tag) -> bool: 159 if tag.startswith('llndk-deprecated='): [all …]
|
/build/make/tools/droiddoc/templates-pdk/assets/ |
D | android-developer-resource-browser.js | 12 params.tag = params.tag ? makeArray(params.tag) : null; 62 for (var tag in ANDROID_TAGS[tagClass]) { 63 allTags[tag] = { 64 displayTag: ANDROID_TAGS[tagClass][tag], 85 for (tag in resource.tagsHash) 86 if (tag in allTags) { 87 if (allTags[tag].tagClass == 'type') { 88 resource.type = tag; 89 } else if (allTags[tag].tagClass == 'topic') { 90 resource.topics.push(tag); [all …]
|
/build/blueprint/proptools/ |
D | tag.go | 25 tag := field.Tag.Get(name) 26 for len(tag) > 0 { 27 idx := strings.Index(tag, ",") 30 return tag == value 32 if tag[:idx] == value { 36 tag = tag[idx+1:]
|
/build/soong/sdk/ |
D | bp.go | 93 if tag, ok := propSet.tags[name]; ok { 94 s.AddPropertyWithTag(name, propSet.properties[name], tag) 123 func (s *bpPropertySet) AddPropertyWithTag(name string, value interface{}, tag android.BpPropertyTa… 125 s.tags[name] = tag 157 tag := s.tags[name] 162 newPropertySet, newTag = transformPropertySet(transformer, name, propertySet, tag) 169 newValue, newTag = transformer.transformProperty(name, value, tag) 185 …ransformer bpPropertyTransformer, name string, propertySet *bpPropertySet, tag android.BpPropertyT… 186 newPropertySet, newTag := transformer.transformPropertySetBeforeContents(name, propertySet, tag) 262 …transformPropertySetBeforeContents(name string, propertySet *bpPropertySet, tag android.BpProperty… [all …]
|
D | bp_test.go | 157 func (t removeFredTransformation) transformProperty(name string, value interface{}, tag android.BpP… 161 return value, tag 164 …ransformPropertySetBeforeContents(name string, propertySet *bpPropertySet, tag android.BpPropertyT… 168 return propertySet, tag 171 …transformPropertySetAfterContents(name string, propertySet *bpPropertySet, tag android.BpPropertyT… 175 return propertySet, tag
|
D | sdk.go | 225 func (s *sdk) OutputFiles(tag string) (android.Paths, error) { 226 switch tag { 233 return nil, fmt.Errorf("unknown tag %q", tag) 324 tag := memberListProperty.dependencyTag 325 memberType.AddDependencies(ctx, tag, names)
|
/build/soong/android/ |
D | base_module_context.go | 104 GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module 109 GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module 142 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) 273 func (b *baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint… 274 return b.bp.GetDirectDepWithTag(name, tag) 314 func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, tag blueprint.Dependency… 323 b.ModuleErrorf("module %q (%#v) not an android module", b.OtherModuleName(module), tag) 329 …if t, ok := tag.(AllowDisabledModuleDependency); !ok || !t.AllowDisabledModuleDependency(aModule) { 343 tag blueprint.DependencyTag member 346 func (b *baseModuleContext) getDirectDepsInternal(name string, tag blueprint.DependencyTag) []dep { [all …]
|
D | deptag.go | 40 func IsInstallDepNeededTag(tag blueprint.DependencyTag) bool { 41 if i, ok := tag.(InstallNeededDependencyTag); ok {
|
D | androidmk_test.go | 105 func (m *customModule) OutputFiles(tag string) (Paths, error) { 106 switch tag { 120 return nil, fmt.Errorf("unsupported module reference tag %q", tag) 220 tag: ".multiple", 225 tag: ".multiple", 404 tag: ".another-tag", 444 tag: ".another-tag", 525 tag: ".multiple", 530 tag: ".multiple", 610 tag: ".multiple", [all …]
|
D | mutator.go | 225 …AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string) []blueprint.Mo… 232 AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string) 273 …AddVariationDependencies(variations []blueprint.Variation, tag blueprint.DependencyTag, names ...s… 294 AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module) 732 func (b *bottomUpMutatorContext) AddDependency(module blueprint.Module, tag blueprint.DependencyTag… 736 return b.bp.AddDependency(module, tag, name...) 739 func (b *bottomUpMutatorContext) AddReverseDependency(module blueprint.Module, tag blueprint.Depend… 743 b.bp.AddReverseDependency(module, tag, name) 790 func (b *bottomUpMutatorContext) AddVariationDependencies(variations []blueprint.Variation, tag blu… 795 return b.bp.AddVariationDependencies(variations, tag, names...) [all …]
|
D | module.go | 600 func (t TaggedDistFiles) addPathsForTag(tag string, paths ...Path) TaggedDistFiles { 606 if distFile != nil && !t[tag].containsPath(distFile) { 607 t[tag] = append(t[tag], distFile) 618 for tag, paths := range other { 619 t = t.addPathsForTag(tag, paths...) 1236 tag := proptools.StringDefault(dist.Tag, DefaultDistTag) 1240 distFilesForTag, err := outputFileProducer.OutputFiles(tag) 1245 if err != nil && tag != DefaultDistTag { 1249 distFiles = distFiles.addPathsForTag(tag, distFilesForTag...) 1250 } else if tag != DefaultDistTag { [all …]
|
/build/soong/cc/ndk_api_coverage_parser/ |
D | __init__.py | 58 for tag in tags: 59 if tag.startswith(tuple(API_LEVEL_TAG_PREFIXES)): 60 key, _, value = tag.partition('=') 62 elif tag in ALL_ARCHITECTURES: 63 arch.append(tag) 64 elif tag in EXPOSED_TARGET_TAGS: 65 attributes.update({tag: 'True'})
|
D | test_ndk_api_coverage_parser.py | 41 if elem1.tag != elem2.tag:
|
/build/soong/java/ |
D | bootclasspath.go | 55 ….BottomUpMutatorContext, propertyName string, refs []ApexVariantReference, tag blueprint.Dependenc… 65 addDependencyOntoApexModulePair(ctx, apex, name, tag) 78 …exModulePair(ctx android.BottomUpMutatorContext, apex string, name string, tag blueprint.Dependenc… 92 ctx.AddFarVariationDependencies(variations, tag, name) 99 ctx.AddVariationDependencies(variations, tag, prebuiltName) 128 func gatherApexModulePairDepsWithTag(ctx android.BaseModuleContext, tag blueprint.DependencyTag) []… 135 if t == tag {
|
/build/soong/multitree/ |
D | api_surface.go | 71 for tag, files := range copied { 72 contributionFiles[child.Name()+"#"+tag] = files 93 func (surface *ApiSurface) OutputFiles(tag string) (android.Paths, error) { 94 if tag != "" { 95 return nil, fmt.Errorf("unknown tag: %q", tag)
|
D | metadata.go | 57 for tag, files := range e.TaggedOutputs() { 59 …metadata.Exported[e.Name()+":"+tag] = append(metadata.Exported[e.Name()+":"+tag], files.Strings().…
|
/build/bazel/scripts/bp2build_progress/ |
D | dependency_analysis.py | 372 if attr.tag == "rule-input": 422 if module.tag != "rule": 554 tag = dep["Tag"] 555 if not tag: 558 if tag.startswith("java.dependencyTag") and ( 559 "name:system modules" in tag or "name:bootclasspath" in tag 583 tag.startswith("java.dependencyTag") 585 "name:proguard-raise" in tag 586 or "name:framework-res" in tag 587 or "name:sdklib" in tag [all …]
|
D | soong_module_json.py | 19 def make_dep(name, tag=None, variations=None): argument 22 'Tag': tag,
|
/build/soong/scripts/hiddenapi/ |
D | generate_hiddenapi_lists.py | 314 def assign_flag(self, flag, apis, source='<unknown>', tag=None): argument 334 if tag: 335 self._dict[api].add(tag) 344 currentflag, file, ignore_conflicts, packages, tag = None, None, False, \ 352 tag)) 353 ignore_conflicts, packages, tag = False, False, None 366 tag = value[0] 369 r.append(FlagFile(currentflag, file, ignore_conflicts, packages, tag)) 397 info.tag) 409 …flags.assign_flag(info.flag, valid_entries, filename, info.tag) #pylint: disable=undefined-loop-va… [all …]
|
/build/soong/cc/ |
D | afdo.go | 124 func afdoPropagateViaDepTag(tag blueprint.DependencyTag) bool { 125 libTag, isLibTag := tag.(libraryDependencyTag) 130 return tag == objDepTag || tag == reuseObjTag || tag == staticVariantTag
|
D | lto.go | 172 func ltoPropagateViaDepTag(tag blueprint.DependencyTag) bool { 173 libTag, isLibTag := tag.(libraryDependencyTag) 178 return tag == objDepTag || tag == reuseObjTag || tag == staticVariantTag
|
D | orderfile.go | 195 func orderfilePropagateViaDepTag(tag blueprint.DependencyTag) bool { 196 libTag, isLibTag := tag.(libraryDependencyTag) 201 return tag == objDepTag || tag == reuseObjTag || tag == staticVariantTag
|
/build/blueprint/ |
D | module_ctx.go | 209 GetDirectDepWithTag(name string, tag DependencyTag) Module 539 return m.visitingDep.tag 544 return dep.tag 616 return dep.module.logicModule, dep.tag 623 func (m *baseModuleContext) GetDirectDepWithTag(name string, tag DependencyTag) Module { 627 if dep.tag == tag { 635 …rorf("Unable to find dependency %q with requested tag %#v. Found: %#v", deps[0].module, tag, deps)) 856 AddDependency(module Module, tag DependencyTag, name ...string) []Module 863 AddReverseDependency(module Module, tag DependencyTag, name string) 925 AddInterVariantDependency(tag DependencyTag, from, to Module) [all …]
|
/build/make/tools/ |
D | event_log_tags.py | 80 tag = None 83 tag = int(parts[0]) 102 self.tags.append(Tag(tag, tagname, description,
|
/build/make/tools/perf/ |
D | format_benchmarks | 183 tagsort = lambda tag: args.tags.index(tag) argument 185 tagsort = lambda tag: tag argument
|