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

12

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDatabaseTreeElement.js33 this.hasChildren = false;
68 this.hasChildren = tableNames.length;
H A DDatabaseHostTreeElement.js32 this.hasChildren = true;
H A DIndexedDatabaseHostTreeElement.js32 this.hasChildren = true;
H A DSourceCodeTreeElement.js26 WebInspector.SourceCodeTreeElement = function(sourceCode, classNames, title, subtitle, representedObject, hasChildren)
30 WebInspector.GeneralTreeElement.call(this, classNames, title, subtitle, representedObject || sourceCode, hasChildren);
47 this.hasChildren = !!this._sourceCode.sourceMaps.length;
48 this.shouldRefreshChildren = this.hasChildren;
50 if (!this.hasChildren)
68 if (!this.hasChildren || !this.shouldRefreshChildren)
177 console.assert(this.hasChildren);
H A DProfileNodeTreeElement.js76 var hasChildren = !!profileNode.childNodes.length;
78 WebInspector.GeneralTreeElement.call(this, [className], title, subtitle, profileNode, hasChildren);
121 if (!this.hasChildren || !this.shouldRefreshChildren)
H A DLegacyTopDownProfileDataGridTree.js28 var hasChildren = (profileNode.children && profileNode.children.length);
30 WebInspector.LegacyProfileDataGridNode.call(this, profileNode, owningTree, hasChildren);
H A DProfileNodeDataGridNode.js28 var hasChildren = !!profileNode.childNodes.length;
30 WebInspector.TimelineDataGridNode.call(this, false, null, hasChildren);
H A DTreeOutline.js44 this.hasChildren = false;
73 this.hasChildren = true;
85 if (child.hasChildren && child.treeOutline._treeElementsExpandedState[child.identifier] !== undefined)
122 this.hasChildren = true;
134 if (child.hasChildren && child.treeOutline._treeElementsExpandedState[child.identifier] !== undefined)
420 } else if (this.selectedTreeElement.hasChildren) {
494 function TreeElement(title, representedObject, hasChildren)
512 this.hasChildren = hasChildren;
575 get hasChildren() {
[all...]
H A DScopeVariableTreeElement.js43 if (this.hasChildren && this.constructor._expandedProperties.hasOwnProperty(this.propertyIdentifier))
H A DDataGrid.js38 this.hasChildren = false;
723 this.hasChildren = true;
771 this.hasChildren = false;
790 this.hasChildren = false;
910 } else if (this.selectedNode.hasChildren) {
1162 if (!gridNode || !gridNode.hasChildren)
1318 WebInspector.DataGridNode = function(data, hasChildren)
1324 this.hasChildren = hasChildren || false;
1350 if (this.hasChildren)
[all...]
H A DObjectPropertiesSection.js225 this.hasChildren = this.property.value.hasChildren && !this.property.wasThrown;
283 this.hasChildren = false;
H A DDOMTreeUpdater.js88 treeElement.hasChildren = event.data.hasChildNodes();
H A DGeneralTreeElement.js26 WebInspector.GeneralTreeElement = function(classNames, title, subtitle, representedObject, hasChildren)
28 TreeElement.call(this, "", representedObject, hasChildren);
H A DLegacyProfileDataGridTree.js26 WebInspector.LegacyProfileDataGridNode = function(profileNode, owningTree, hasChildren, showTimeAsPercent)
30 WebInspector.DataGridNode.call(this, null, hasChildren);
H A DTimelineDataGridNode.js26 WebInspector.TimelineDataGridNode = function(graphOnly, graphDataSource, hasChildren)
28 WebInspector.DataGridNode.call(this, {}, hasChildren);
H A DFrameTreeElement.js197 // Only store the setting if we have children, since setting hasChildren to false will cause a collapse,
199 if (this.hasChildren)
230 this.hasChildren = (this._frame.resources.length || this._frame.childFrames.length || (this.resource && this.resource.sourceMaps.length));
231 if (!this.hasChildren)
H A DDOMTreeElement.js518 if (this.hasChildren && !this.expanded)
1063 var info = {titleDOM: document.createDocumentFragment(), hasChildren: this.hasChildren};
1084 info.hasChildren = false;
1094 if (this.hasChildren) {
1119 info.hasChildren = false;
H A DLegacyBottomUpProfileDataGridTree.js83 this.hasChildren = this._willHaveChildren();
/macosx-10.10.1/llvmCore-3425.0.34/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.cpp136 if (curr_die_abbrev->hasChildren())
198 if (abbrDecl->hasChildren())
H A DDWARFDebugInfoEntry.cpp40 AbbrevDecl->hasChildren() ? '*' : ' ');
/macosx-10.10.1/IOKitUser-1050.1.21/
H A Diodisplayregistry.c117 Boolean hasChildren; local
135 hasChildren = child ? true : false;
146 if (hasChildren)
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Protocol/
H A DRemoteObject.js114 get hasChildren()
333 get hasChildren()
350 if (!this.hasChildren)

Completed in 270 milliseconds

12