/build/make/tools/droiddoc/templates-pdk/assets/ |
D | android-developer-docs.js | 285 link.parent().addClass('selected'); 288 if (link.parent().parent().hasClass('toggle-list')) { 289 toggle(link.parent().parent(), false); // open our own list 291 if (link.parent().parent().parent().is(':hidden')) { 292 toggle(link.parent().parent().parent().parent(), false); // open the super parent list 296 else if (link.parent().parent().is(':hidden')) { 297 toggle(link.parent().parent().parent(), false); // open the parent list 299 if (link.parent().parent().parent().parent().is(':hidden')) { 300 … toggle(link.parent().parent().parent().parent().parent(), false); // open the super parent list 440 var li = ul.parent(); [all …]
|
D | android-developer-reference.js | 355 var table = $(a.parent().parent().parent()); // ugly way to get table/tbody
|
/build/soong/androidmk/parser/ |
D | scope.go | 31 parent Scope member 37 } else if s.parent != nil { 38 return s.parent.Get(name) 62 func NewScope(parent Scope) Scope { 66 parent: parent,
|
/build/blueprint/ |
D | scope.go | 61 parent *basicScope member 68 func newScope(parent *basicScope) *basicScope { 70 parent: parent, 78 func makeRuleScope(parent *basicScope, argNames map[string]bool) *basicScope { 79 scope := newScope(parent) 140 for ; s != nil; s = s.parent { 169 s = s.parent 194 s = s.parent 201 for ; s != nil; s = s.parent { 255 func newLocalScope(parent *basicScope, namePrefix string) *localScope { [all …]
|
D | provider_test.go | 174 parent *invalidProviderUsageTestModule member 203 module.(*invalidProviderUsageTestModule).parent = i 263 _ = ctx.OtherModuleProvider(i.parent, invalidProviderUsageGenerateBuildActionsInfoProvider)
|
D | module_ctx.go | 669 m.context.walkDeps(m.module, false, nil, func(dep depInfo, parent *moduleInfo) { 670 m.visitingParent = parent 689 m.context.walkDeps(m.module, false, nil, func(dep depInfo, parent *moduleInfo) { 691 m.visitingParent = parent 701 func (m *baseModuleContext) WalkDeps(visit func(child, parent Module) bool) { 702 m.context.walkDeps(m.module, true, func(dep depInfo, parent *moduleInfo) bool { 703 m.visitingParent = parent 705 return visit(dep.module.logicModule, parent.logicModule)
|
/build/blueprint/bootstrap/bpdoc/ |
D | bpdoc.go | 321 for _, parent := range *p { 323 for j := range parent.Properties { 324 child := &parent.Properties[j] 331 if containsProperty || len(parent.Properties) == 0 { 332 n = append(n, parent) 334 for j := range parent.Properties { 335 child := parent.Properties[j] 336 child.Name = parent.Name + "." + child.Name
|
D | bpdoc_test.go | 37 parent := parentProps{Child: &childProps{Child: &grandchildProps{}}, Mutated: &mutatedProps{}} 39 allStructs := nestedPropertyStructs(reflect.ValueOf(parent))
|
/build/make/tools/droiddoc/templates-pdk/ |
D | docpage.cs | 12 <?cs if:parent.link ?> 13 <a href="<?cs var:parent.link ?>"><?cs var:parent.title ?></a>: 93 <?cs if:parent.link ?> 94 <p><a href="<?cs var:parent.link ?>">← Back to <?cs var:parent.title ?></a></p>
|
/build/soong/tests/ |
D | lib.sh | 49 local parent="$(dirname "$dir")" 51 mkdir -p "$MOCK_TOP/$parent" 52 cp -R "$REAL_TOP/$dir" "$MOCK_TOP/$parent"
|
/build/soong/scripts/ |
D | manifest.py | 26 def get_children_with_tag(parent, tag_name): argument 28 for child in parent.childNodes:
|
/build/soong/sdk/ |
D | sdk.go | 480 if parent, ok := mctx.Module().(sdkAndApexModule); ok { 483 requiredSdks := parent.RequiredSdks() 487 if dep, ok := m.(android.SdkAware); ok && android.IsDepInSameApex(mctx, parent, dep) { 524 if parent, ok := from.(android.RequiredSdks); ok { 525 replace = parent.RequiredSdks().Contains(sdk)
|
/build/soong/rust/ |
D | OWNERS | 1 # Additional owner/reviewers for rust rules, including parent directory owners.
|
/build/soong/finder/fs/ |
D | test.go | 27 parent := filepath.Dir(path) 28 filesystem.MkDirs(parent)
|
D | fs.go | 774 parent, err := m.getDir(parentPath, createIfMissing) 778 if parent.readErr != nil { 782 Err: parent.readErr, 785 childDir, dirExists := parent.subdirs[leaf] 789 _, fileExists := parent.files[leaf] 799 parent.subdirs[leaf] = childDir 800 parent.modTime = m.Clock.Time()
|
/build/blueprint/bootstrap/ |
D | writedocs.go | 129 …<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapse… 158 …<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapse…
|
/build/soong/filesystem/ |
D | system_image.go | 57 ctx.WalkDeps(func(child, parent android.Module) bool {
|
/build/soong/apex/ |
D | prebuilt.go | 168 ctx.WalkDeps(func(child, parent android.Module) bool { 349 mctx.WalkDeps(func(child, parent android.Module) bool { 352 if !android.IsDepInSameApex(mctx, parent, child) { 385 direct := parent == mctx.Module() 566 ctx.WalkDeps(func(child, parent android.Module) bool { 570 if !android.IsDepInSameApex(ctx, parent, child) {
|
D | apex.go | 854 continueApexDepsWalk := func(child, parent android.Module) bool { 867 if !android.IsDepInSameApex(mctx, parent, child) { 883 mctx.WalkDeps(func(child, parent android.Module) bool { 884 if !continueApexDepsWalk(child, parent) { 888 _, directDep := parent.(*apexBundle) 920 mctx.WalkDeps(func(child, parent android.Module) bool { 921 if !continueApexDepsWalk(child, parent) { 1581 ctx.WalkDeps(func(child, parent android.Module) bool { 1600 return do(ctx, parent, am, externalDep) 1655 ctx.WalkDepsBlueprint(func(child, parent blueprint.Module) bool { [all …]
|
/build/soong/android/ |
D | depset_test.go | 231 parent := NewDepSetBuilder(order).Transitive(child1).Transitive(child2).Build() 232 return parent 245 parent := NewDepSetBuilder(order).Transitive(child1).Transitive(child2).Build() 246 return parent
|
D | defaults.go | 294 ctx.WalkDeps(func(module, parent Module) bool {
|
/build/pesto/experiments/prepare_bazel_test_env/ |
D | bazelenv.py | 148 _verify_directory(self.stage_path.parent) 205 _verify_directory(self.stage_path.parent) 263 self.prebuilts_stage_path = self.stage_path.parent.joinpath( 265 self.prebuilts_workspace_path = self.workspace_path.parent.joinpath(
|
/build/soong/dexpreopt/ |
D | config.go | 415 ctx.WalkDeps(func(child, parent android.Module) bool { 416 if parent == ctx.Module() && ctx.OtherModuleDependencyTag(child) == Dex2oatDepTag { 425 if parent == dex2oatModule && ctx.OtherModuleDependencyTag(child) == android.PrebuiltDepTag {
|
/build/make/core/ |
D | base_rules.mk | 192 gpl_license_file := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*_GPL* MODULE_LICENSE*_MPL*… 477 parent := $(patsubst %/,%,$(dir $(1))) 478 parent_target := MODULES-IN-$$(subst /,-,$$(parent)) 483 ifneq (,$$(findstring /,$$(parent))) 484 $$(eval $$(call my_path_comp,$$(parent),$$(parent_target))) 1044 license_files := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*)
|
/build/soong/cc/ |
D | lto.go | 170 mctx.WalkDeps(func(dep android.Module, parent android.Module) bool {
|