Searched refs:hasChildren (Results 1 - 25 of 59) sorted by relevance

123

/external/webkit/Source/WebCore/inspector/front-end/
H A DSidebarTreeElement.js26 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren)
28 TreeElement.call(this, title.escapeHTML(), representedObject || {}, hasChildren);
66 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren)
68 TreeElement.call(this, "", representedObject || {}, hasChildren);
70 if (hasChildren) {
188 if (this.hasChildren && this.disclosureButton)
H A DRemoteObject.js31 WebInspector.RemoteObject = function(objectId, type, description, hasChildren)
36 this._hasChildren = hasChildren;
67 return new WebInspector.RemoteObject(payload.objectId, payload.type, payload.description, payload.hasChildren);
100 get hasChildren()
242 get hasChildren()
H A DTopDownProfileDataGridTree.js28 var hasChildren = (profileNode.children && profileNode.children.length);
30 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, hasChildren);
H A Dtreeoutline.js39 this.hasChildren = false;
65 this.hasChildren = true;
77 if (child.hasChildren && child.treeOutline._treeElementsExpandedState[child.identifier] !== undefined)
113 this.hasChildren = true;
125 if (child.hasChildren && child.treeOutline._treeElementsExpandedState[child.identifier] !== undefined)
380 } else if (this.selectedTreeElement.hasChildren) {
443 function TreeElement(title, representedObject, hasChildren)
458 this.hasChildren = hasChildren;
507 get hasChildren() {
[all...]
H A DDataGrid.js147 this.hasChildren = false;
557 addCreationNode: function(hasChildren)
565 this.creationNode = new WebInspector.CreationDataGridNode(emptyData, hasChildren);
585 this.hasChildren = true;
633 this.hasChildren = false;
650 this.hasChildren = false;
758 } else if (this.selectedNode.hasChildren) {
906 if (!gridNode || !gridNode.hasChildren)
987 WebInspector.DataGridNode = function(data, hasChildren)
993 this.hasChildren
[all...]
H A DObjectPropertiesSection.js213 this.hasChildren = this.property.value.hasChildren;
251 this.hasChildren = false;
H A DScopeChainSidebarPane.js120 if (this.hasChildren && this.propertyIdentifier in this.treeOutline.section.pane._expandedProperties)
H A DProfileDataGridTree.js26 WebInspector.ProfileDataGridNode = function(profileView, profileNode, owningTree, hasChildren)
31 WebInspector.DataGridNode.call(this, null, hasChildren);
/external/llvm/lib/DebugInfo/
H A DDWARFDebugInfoEntry.h68 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); } function in class:llvm::DWARFDebugInfoEntryMinimal
90 return hasChildren() ? this + 1 : 0;
93 return hasChildren() ? this + 1 : 0;
H A DDWARFAbbreviationDeclaration.h33 bool hasChildren() const { return HasChildren; } function in class:llvm::DWARFAbbreviationDeclaration
H A DDWARFAbbreviationDeclaration.cpp57 OS << "\tDW_CHILDREN_" << (hasChildren() ? "yes" : "no") << '\n';
H A DDWARFCompileUnit.cpp133 if (curr_die_abbrev->hasChildren())
195 if (abbrDecl->hasChildren())
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dtree.js304 this.hasChildren = true;
321 this.hasChildren = false;
479 get hasChildren() {
487 set hasChildren(b) {
652 if (item.expanded && item.hasChildren) {
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityListBox.cpp119 if (!hasChildren())
133 if (!hasChildren())
H A DAccessibilityARIAGrid.cpp113 if (!child->hasChildren())
/external/chromium/chrome/browser/resources/
H A Dcookies_tree.js34 this.hasChildren = this.data.hasChildren;
/external/chromium/chrome/browser/resources/options/
H A Dcertificate_manager.js117 var hasChildren = this.tree.items.length > 0;
124 this.backupAllButton.disabled = !hasChildren;
H A Dcookies_list.js407 } else if (this.data && !this.data.hasChildren) {
430 } else if (this.data && !this.data.hasChildren) {
474 if (this.data && !this.data.hasChildren) {
524 if (this.data && this.data.hasChildren &&
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPUtilsImpl.java437 if (parent.getOptions().isSchemaNode() && !parent.hasChildren())
552 if (!destSchema.hasChildren() && (createdSchema || deleteEmptyValues))
584 return !schemaNode.hasChildren();
608 !sourceNode.hasChildren();
652 if (deleteEmptyValues && !destNode.hasChildren())
681 if (!destNode.hasChildren())
691 || !destNode.hasChildren())
H A DXMPIteratorImpl.java314 (!getOptions().isJustLeafnodes() || !visitedNode.hasChildren()))
582 if (!getOptions().isJustLeafnodes() || !child.hasChildren())
H A DXMPNode.java348 public boolean hasChildren() method in class:XMPNode
674 if (hasChildren())
783 if (recursive && hasChildren())
H A DXMPNormalizer.java384 else if (baseNode.hasChildren())
503 if (!schema.hasChildren())
602 if (dcRightsArray == null || !dcRightsArray.hasChildren())
H A DXMPSerializerRDF.java688 if (!node.hasChildren())
1077 if (!node.hasChildren())
1146 if (isStartTag || arrayNode.hasChildren())
1164 if (isStartTag && !arrayNode.hasChildren())
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java82 public boolean hasChildren() method in class:PKIXPolicyNode
/external/webkit/Source/WebCore/inspector/
H A DInjectedScriptSource.js444 InjectedScript.RemoteObject = function(objectId, type, description, hasChildren)
448 this.hasChildren = hasChildren;
463 var hasChildren = (rawType === "object" && object !== null && (!!Object.getOwnPropertyNames(object).length || !!object.__proto__)) || rawType === "function";
467 return new InjectedScript.RemoteObject(objectId, type, description, hasChildren);

Completed in 416 milliseconds

123