Home
last modified time | relevance | path

Searched refs:parent (Results 1 – 25 of 31) 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.go58 parent *basicScope member
65 func newScope(parent *basicScope) *basicScope {
67 parent: parent,
75 func makeRuleScope(parent *basicScope, argNames map[string]bool) *basicScope {
76 scope := newScope(parent)
137 for ; s != nil; s = s.parent {
166 s = s.parent
191 s = s.parent
198 for ; s != nil; s = s.parent {
252 func newLocalScope(parent *basicScope, namePrefix string) *localScope {
[all …]
Dmodule_ctx.go171 WalkDeps(visit func(child, parent Module) bool)
438 m.context.walkDeps(m.module, false, nil, func(dep depInfo, parent *moduleInfo) {
439 m.visitingParent = parent
463 m.context.walkDeps(m.module, false, nil, func(dep depInfo, parent *moduleInfo) {
465 m.visitingParent = parent
479 func (m *baseModuleContext) WalkDeps(visit func(child, parent Module) bool) {
480 m.context.walkDeps(m.module, true, func(dep depInfo, parent *moduleInfo) bool {
481 m.visitingParent = parent
483 return visit(dep.module.logicModule, parent.logicModule)
Dcontext_test.go193 func(dep depInfo, parent *moduleInfo) bool {
200 func(dep depInfo, parent *moduleInfo) {
285 func(dep depInfo, parent *moduleInfo) bool {
292 func(dep depInfo, parent *moduleInfo) {
Dcontext.go601 parent *fileParseContext member
772 if blueprint.parent != nil && blueprint.parent.doneVisiting != nil {
774 <-blueprint.parent.doneVisiting
876 parent *fileParseContext) (file *parser.File,
908 file, subBlueprints, errs = c.parseOne(rootDir, filename, f, scope, parent)
934 …scope *parser.Scope, parent *fileParseContext) (file *parser.File, subBlueprints []fileParseContex…
992 …subBlueprintsAndScope[i] = fileParseContext{b, parser.NewScope(scope), parent, make(chan struct{})}
2940 c.walkDeps(topModule, false, nil, func(dep depInfo, parent *moduleInfo) {
2958 c.walkDeps(topModule, false, nil, func(dep depInfo, parent *moduleInfo) {
/build/blueprint/bootstrap/bpdoc/
Dbpdoc.go265 for _, parent := range *p {
267 for j := range parent.Properties {
268 child := &parent.Properties[j]
275 if containsProperty || len(parent.Properties) == 0 {
276 n = append(n, parent)
278 for j := range parent.Properties {
279 child := parent.Properties[j]
280 child.Name = parent.Name + "." + child.Name
/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/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/finder/fs/
Dfs.go759 parent, err := m.getDir(parentPath, createIfMissing)
763 if parent.readErr != nil {
767 Err: parent.readErr,
770 childDir, dirExists := parent.subdirs[leaf]
774 _, fileExists := parent.files[leaf]
784 parent.subdirs[leaf] = childDir
785 parent.modTime = m.Clock.Time()
/build/kati/
Ddep.cc146 const RuleMerger* parent; member
151 : primary_rule(nullptr), parent(nullptr), is_double_colon(false) {} in RuleMerger()
162 if (parent) { in SetImplicitOutput()
167 LOCF(parent->primary_rule->cmd_loc())); in SetImplicitOutput()
174 parent = merger; in SetImplicitOutput()
646 if (rule_merger && rule_merger->parent) { in BuildPlan()
Dpathutil.go129 parent := strings.Join(dir, string(filepath.Separator))
130 if parent == "" {
131 parent = "."
133 _, ents := fsCache.readdir(parent, unknownFileid)
/build/make/tools/droiddoc/templates-ndk/
Dsdkpage.cs218 $("label#agreeLabel").parent().stop().animate({color: "#258AAF"}, 200, in onDownloadNdkForRealz()
219 function() {$("label#agreeLabel").parent().stop().animate({color: "#222"}, 200)} in onDownloadNdkForRealz()
496 $("label#agreeLabel").parent().stop().animate({color: "#258AAF"}, 200, in onDownloadForRealz()
497 function() {$("label#agreeLabel").parent().stop().animate({color: "#222"}, 200)} in onDownloadForRealz()
/build/soong/android/
Ddefaults.go136 ctx.WalkDeps(func(module, parent Module) bool {
Dmutator.go292 a.TopDownMutatorContext.WalkDeps(func(child, parent blueprint.Module) bool {
294 parentAndroidModule, _ := parent.(Module)
/build/soong/scripts/
Dmanifest_fixer.py28 def get_children_with_tag(parent, tag_name): argument
30 for child in parent.childNodes:
/build/soong/cc/
Dlto.go142 mctx.WalkDeps(func(dep android.Module, parent android.Module) bool {
Dsanitize.go655 mctx.WalkDeps(func(child, parent android.Module) bool {
687 mctx.WalkDeps(func(child, parent android.Module) bool {
/build/make/tools/droiddoc/templates-ndk/assets/js/
Dandroid_3p-bundle.js2478 …tion(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return… method
2615 ….jspArrow").each(function(){l+=b(this).outerWidth()});l-=s;v-=s;aj-=aI;G.parent().append(b('<div c…
2646 …"fixed"){f=parseInt(d.css("zIndex"),10);if(!isNaN(f)&&f!==0)return f}d=d.parent()}}return 0},disab…
2662parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.originalPosition=this.pos… property
2670parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.cs…
2678parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","ab… property
2682parent().css("overflow");this.element.parent().css("overflow","hidden")}c=this.element.parent().he…
2686 …er-all").attr("tabindex",-1).mouseenter(function(c){b.activate(c,a(this).parent())}).mouseleave(fu…
2706 …et).closest(b);if($.datepicker._isDisabledDatepicker(instActive.inline?a.parent()[0]:instActive.in…
Ddocs.js1202 var li = ul.parent();
2820 $dragBar.css({'width': $dragBar.parent().width() - 5 + "px"});
3397 var table = $(a.parent().parent().parent()); // ugly way to get table/tbody
4164 var remainingHeight = $this.parent().parent().height();
4165 $this.parent().siblings().each(function ()
4174 $this.parent().css({'height': adjustedRemainingHeight});
/build/soong/apex/
Dapex.go157 mctx.WalkDeps(func(child, parent android.Module) bool {
160 _, directDep := parent.(*apexBundle)
675 ctx.WalkDepsBlueprint(func(child, parent blueprint.Module) bool {
676 if _, ok := parent.(*apexBundle); ok {
/build/make/core/
Dbase_rules.mk191 license_files := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*)
192 gpl_license_file := $(call find-parent-file,$(LOCAL_PATH),MODULE_LICENSE*_GPL* MODULE_LICENSE*_MPL*…
/build/soong/python/
Dpython.go607 ctx.WalkDeps(func(child, parent android.Module) bool {
/build/soong/finder/
Dfinder_test.go82 parent := filepath.Dir(path)
83 filesystem.MkDirs(parent)

12