/external/webkit/Source/WebCore/inspector/front-end/ |
H A D | SidebarTreeElement.js | 26 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 D | RemoteObject.js | 31 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 D | TopDownProfileDataGridTree.js | 28 var hasChildren = (profileNode.children && profileNode.children.length); 30 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, hasChildren);
|
H A D | treeoutline.js | 39 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 D | DataGrid.js | 147 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 D | ObjectPropertiesSection.js | 213 this.hasChildren = this.property.value.hasChildren; 251 this.hasChildren = false;
|
H A D | ScopeChainSidebarPane.js | 120 if (this.hasChildren && this.propertyIdentifier in this.treeOutline.section.pane._expandedProperties)
|
H A D | ProfileDataGridTree.js | 26 WebInspector.ProfileDataGridNode = function(profileView, profileNode, owningTree, hasChildren) 31 WebInspector.DataGridNode.call(this, null, hasChildren);
|
/external/llvm/lib/DebugInfo/ |
H A D | DWARFDebugInfoEntry.h | 68 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 D | DWARFAbbreviationDeclaration.h | 33 bool hasChildren() const { return HasChildren; } function in class:llvm::DWARFAbbreviationDeclaration
|
H A D | DWARFAbbreviationDeclaration.cpp | 57 OS << "\tDW_CHILDREN_" << (hasChildren() ? "yes" : "no") << '\n';
|
H A D | DWARFCompileUnit.cpp | 133 if (curr_die_abbrev->hasChildren()) 195 if (abbrDecl->hasChildren())
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
H A D | tree.js | 304 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 D | AccessibilityListBox.cpp | 119 if (!hasChildren()) 133 if (!hasChildren())
|
H A D | AccessibilityARIAGrid.cpp | 113 if (!child->hasChildren())
|
/external/chromium/chrome/browser/resources/ |
H A D | cookies_tree.js | 34 this.hasChildren = this.data.hasChildren;
|
/external/chromium/chrome/browser/resources/options/ |
H A D | certificate_manager.js | 117 var hasChildren = this.tree.items.length > 0; 124 this.backupAllButton.disabled = !hasChildren;
|
H A D | cookies_list.js | 407 } 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 D | XMPUtilsImpl.java | 437 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 D | XMPIteratorImpl.java | 314 (!getOptions().isJustLeafnodes() || !visitedNode.hasChildren())) 582 if (!getOptions().isJustLeafnodes() || !child.hasChildren())
|
H A D | XMPNode.java | 348 public boolean hasChildren() method in class:XMPNode 674 if (hasChildren()) 783 if (recursive && hasChildren())
|
H A D | XMPNormalizer.java | 384 else if (baseNode.hasChildren()) 503 if (!schema.hasChildren()) 602 if (dcRightsArray == null || !dcRightsArray.hasChildren())
|
H A D | XMPSerializerRDF.java | 688 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 D | PKIXPolicyNode.java | 82 public boolean hasChildren() method in class:PKIXPolicyNode
|
/external/webkit/Source/WebCore/inspector/ |
H A D | InjectedScriptSource.js | 444 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);
|