Home
last modified time | relevance | path

Searched refs:parent (Results 1 – 25 of 39) sorted by relevance

12

/build/make/tools/droiddoc/templates-pdk/assets/
Dandroid-developer-docs.js285 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 …]
Dandroid-developer-reference.js355 var table = $(a.parent().parent().parent()); // ugly way to get table/tbody
/build/soong/androidmk/parser/
Dscope.go31 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/
Dscope.go61 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 …]
Dprovider_test.go174 parent *invalidProviderUsageTestModule member
203 module.(*invalidProviderUsageTestModule).parent = i
263 _ = ctx.OtherModuleProvider(i.parent, invalidProviderUsageGenerateBuildActionsInfoProvider)
Dmodule_ctx.go669 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/
Dbpdoc.go321 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
Dbpdoc_test.go37 parent := parentProps{Child: &childProps{Child: &grandchildProps{}}, Mutated: &mutatedProps{}}
39 allStructs := nestedPropertyStructs(reflect.ValueOf(parent))
/build/make/tools/droiddoc/templates-pdk/
Ddocpage.cs12 <?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 ?>">&larr; Back to <?cs var:parent.title ?></a></p>
/build/soong/tests/
Dlib.sh49 local parent="$(dirname "$dir")"
51 mkdir -p "$MOCK_TOP/$parent"
52 cp -R "$REAL_TOP/$dir" "$MOCK_TOP/$parent"
/build/soong/scripts/
Dmanifest.py26 def get_children_with_tag(parent, tag_name): argument
28 for child in parent.childNodes:
/build/soong/sdk/
Dsdk.go480 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/
DOWNERS1 # Additional owner/reviewers for rust rules, including parent directory owners.
/build/soong/finder/fs/
Dtest.go27 parent := filepath.Dir(path)
28 filesystem.MkDirs(parent)
Dfs.go774 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/
Dwritedocs.go129 …<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/
Dsystem_image.go57 ctx.WalkDeps(func(child, parent android.Module) bool {
/build/soong/apex/
Dprebuilt.go168 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) {
Dapex.go854 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/
Ddepset_test.go231 parent := NewDepSetBuilder(order).Transitive(child1).Transitive(child2).Build()
232 return parent
245 parent := NewDepSetBuilder(order).Transitive(child1).Transitive(child2).Build()
246 return parent
Ddefaults.go294 ctx.WalkDeps(func(module, parent Module) bool {
/build/pesto/experiments/prepare_bazel_test_env/
Dbazelenv.py148 _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/
Dconfig.go415 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/
Dbase_rules.mk192 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/
Dlto.go170 mctx.WalkDeps(func(dep android.Module, parent android.Module) bool {

12