Home
last modified time | relevance | path

Searched refs:hasChildren (Results 1 – 18 of 18) sorted by relevance

/external/webkit/WebCore/inspector/front-end/
DSidebarTreeElement.js26 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren) argument
28 TreeElement.call(this, title.escapeHTML(), representedObject || {}, hasChildren);
66 …Inspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren) argument
68 TreeElement.call(this, "", representedObject || {}, hasChildren);
70 if (hasChildren) {
186 if (this.hasChildren && this.disclosureButton)
Dtreeoutline.js39 this.hasChildren = false;
62 this.hasChildren = true;
74 …if (child.hasChildren && child.treeOutline._treeElementsExpandedState[child.identifier] !== undefi…
110 this.hasChildren = true;
122 …if (child.hasChildren && child.treeOutline._treeElementsExpandedState[child.identifier] !== undefi…
363 } else if (this.selectedTreeElement.hasChildren) {
417 function TreeElement(title, representedObject, hasChildren) argument
432 this.hasChildren = hasChildren;
473 get hasChildren() { getter in TreeElement
477 set hasChildren(x) { setter in TreeElement
[all …]
DDataGrid.js111 this.hasChildren = false;
194 this.hasChildren = true;
316 } else if (this.selectedNode.hasChildren) {
424 if (!gridNode || !gridNode.hasChildren)
446 WebInspector.DataGridNode = function(data, hasChildren) argument
452 this.hasChildren = hasChildren || false;
475 if (this.hasChildren)
652 if (!this.hasChildren || this.expanded)
743 if (!dontPopulate && this.hasChildren)
779 if (!dontPopulate && node && node.hasChildren)
[all …]
DElementsTreeOutline.js250 …var hasChildren = node.contentDocument || (Preferences.ignoreWhitespace ? (firstChildSkippingWhite…
251 var titleInfo = nodeTitleInfo.call(node, hasChildren, WebInspector.linkifyURL);
253 if (titleInfo.hasChildren)
257 TreeElement.call(this, "", node, titleInfo.hasChildren);
494 if (this.hasChildren && !this.expanded)
618 …var title = nodeTitleInfo.call(this.representedObject, this.hasChildren, WebInspector.linkifyURL).…
DObjectPropertiesSection.js167 this.hasChildren = hasSubProperties;
186 this.hasChildren = false;
DStylesSidebarPane.js717 var context = { expanded: this.expanded, hasChildren: this.hasChildren }; property
720 this.hasChildren = false;
824 this.hasChildren = context.hasChildren;
DProfileView.js529 var hasChildren = false;
534 hasChildren = true;
539 WebInspector.DataGridNode.call(this, null, hasChildren);
Dutilities.js772 function nodeTitleInfo(hasChildren, linkify) argument
774 var info = {title: "", hasChildren: hasChildren}; property
812 info.hasChildren = false;
DScopeChainSidebarPane.js112 …if (this.hasChildren && this.propertyIdentifier in this.treeOutline.section.pane.callFrame._expand…
/external/webkit/WebCore/page/
DAccessibilityTable.cpp292 if (!hasChildren()) in columns()
300 if (!hasChildren()) in rows()
311 if (!hasChildren()) in rowHeaders()
328 if (!hasChildren()) in columnHeaders()
345 if (!hasChildren()) in cells()
357 if (!hasChildren()) in columnCount()
365 if (!hasChildren()) in rowCount()
376 if (!hasChildren()) in cellForColumnAndRow()
DAccessibilityListBox.cpp117 if (!hasChildren()) in selectedChildren()
131 if (!hasChildren()) in visibleChildren()
DAccessibilityObject.h327 virtual bool hasChildren() const { return m_haveChildren; }; in hasChildren() function
DAccessibilityRenderObject.cpp2282 if (!obj->hasChildren()) in addChildren()
2359 if (!hasChildren()) in ariaListboxVisibleChildren()
/external/webkit/WebCore/history/
DHistoryItem.h144 bool hasChildren() const;
DHistoryItem.cpp465 bool HistoryItem::hasChildren() const in hasChildren() function in WebCore::HistoryItem
/external/webkit/WebKit/mac/History/
DWebHistoryItem.mm586 if (coreItem->isTargetItem() || !coreItem->hasChildren())
/external/webkit/WebCore/
DChangeLog-2008-08-103140 (TreeElement.prototype.get hasChildren): Return _hasChildren.
3141 (TreeElement.prototype.set hasChildren): Set _hasChildren and update the className.
23107 (WebCore::AccessibilityObject::hasChildren):
28918 hasChildren() to be called from outside of AccessibilityObject.
28928 * page/AccessibilityObject.h: Removed hasChildren(). Made addChildren()
28933 call hasChildren() or addChildren().
34317 (WebCore::AccessibilityObject::hasChildren):
35852 (WebCore::AccessibilityObject::hasChildren):
DChangeLog-2007-10-1470019 (WebCore::HistoryItem::hasChildren):