Home
last modified time | relevance | path

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

12345

/external/chromium_org/third_party/WebKit/Source/core/dom/
DPositionIterator.cpp46 if (m_anchorNode->hasChildren()) in operator Position()
63 if (!m_anchorNode->hasChildren() && m_offsetInAnchor < lastOffsetForEditing(m_anchorNode)) in increment()
82 m_offsetInAnchor = m_anchorNode->hasChildren() ? 0 : lastOffsetForEditing(m_anchorNode); in decrement()
91 if (m_anchorNode->hasChildren()) { in decrement()
93 m_offsetInAnchor = m_anchorNode->hasChildren()? 0: lastOffsetForEditing(m_anchorNode); in decrement()
110 …return (!m_anchorNode->hasChildren() && !m_offsetInAnchor) || (m_nodeAfterPositionInAnchor && !m_n… in atStart()
119 …return !m_anchorNode->parentNode() && (m_anchorNode->hasChildren() || m_offsetInAnchor >= lastOffs… in atEnd()
127 return !m_anchorNode->hasChildren() && !m_offsetInAnchor; in atStartOfNode()
137 return m_anchorNode->hasChildren() || m_offsetInAnchor >= lastOffsetForEditing(m_anchorNode); in atEndOfNode()
163 …return !m_offsetInAnchor && (!m_anchorNode->hasChildren() || m_nodeAfterPositionInAnchor) && !Posi… in isCandidate()
DNodeTraversal.h89 if (current.hasChildren()) in traverseNextTemplate()
99 if (current.hasChildren()) in traverseNextTemplate()
DTreeWalker.cpp84 if (node->hasChildren()) { in firstChild()
191 if (sibling->hasChildren()) { in nextSibling()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DSidebarTreeElement.js30 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren) argument
32 TreeElement.call(this, title.escapeHTML(), representedObject || {}, hasChildren);
82 …Inspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren) argument
84 TreeElement.call(this, "", representedObject, hasChildren);
86 if (hasChildren)
178 if (this.hasChildren && this.disclosureButton)
Dtreeoutline.js44 this.hasChildren = false;
127 this.hasChildren = true;
139 …if (child.hasChildren && typeof(child.treeOutline._expandedStateMap.get(child.representedObject)) …
377 } else if (this.selectedTreeElement.hasChildren) {
449 function TreeElement(title, representedObject, hasChildren) argument
459 this.hasChildren = hasChildren;
508 get hasChildren() { getter in TreeElement
512 set hasChildren(x) { setter in TreeElement
597 if (this.hasChildren)
702 if (element.treeElement.hasChildren && !element.treeElement.expanded)
[all …]
DDataGrid.js248 rootNode.hasChildren = false;
734 addCreationNode: function(hasChildren) argument
742 this.creationNode = new WebInspector.CreationDataGridNode(emptyData, hasChildren);
782 } else if (this.selectedNode.hasChildren) {
942 if (!gridNode || !gridNode.hasChildren)
1086 WebInspector.DataGridNode = function(data, hasChildren) argument
1107 this.hasChildren = hasChildren || false;
1149 if (this.hasChildren)
1201 set hasChildren(x) setter in WebInspector.DataGridNode
1215 get hasChildren() getter in WebInspector.DataGridNode
[all …]
/external/llvm/lib/DebugInfo/
DDWARFDebugInfoEntry.h61 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); } in hasChildren() function
73 return hasChildren() ? this + 1 : nullptr; in getFirstChild()
DDWARFAbbreviationDeclaration.h37 bool hasChildren() const { return HasChildren; } in hasChildren() function
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
DHeapSnapshotCommon.js67 …d, functionName, scriptName, scriptId, line, column, count, size, liveCount, liveSize, hasChildren) argument
90 this.hasChildren = hasChildren;
DCPUProfileTopDownDataGrid.js34 var hasChildren = !!(profileNode.children && profileNode.children.length);
36 WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, hasChildren);
DHeapSnapshotDataGrids.js425 var hasChildren = child.hasChildren;
427 child.hasChildren = hasChildren;
606 if (rootNode.hasChildren)
/external/chromium_org/ui/webui/resources/js/cr/ui/
Dtree.js332 this.hasChildren = true;
349 this.hasChildren = false;
507 get hasChildren() { getter in TreeItem
515 set hasChildren(b) { setter in TreeItem
680 if (item.expanded && item.hasChildren) {
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPUtilsImpl.java437 if (parent.getOptions().isSchemaNode() && !parent.hasChildren()) in removeProperties()
552 if (!destSchema.hasChildren() && (createdSchema || deleteEmptyValues)) in appendProperties()
584 return !schemaNode.hasChildren(); in removeSchemaChildren()
608 !sourceNode.hasChildren(); in appendSubtree()
652 if (deleteEmptyValues && !destNode.hasChildren()) in appendSubtree()
681 if (!destNode.hasChildren()) in appendSubtree()
691 || !destNode.hasChildren()) in appendSubtree()
DXMPNode.java348 public boolean hasChildren() in hasChildren() method in XMPNode
674 if (hasChildren())
783 if (recursive && hasChildren())
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DJSArticle.js74 if (block && block.hasChildren() && block.children()[0].hasChildren())
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
Ddirectory_tree.js59 this.hasChildren = false;
62 this.hasChildren = true;
191 this.hasChildren = false;
236 this.hasChildren = false;
515 if (this.isDrive() && this.entry && !this.hasChildren) {
925 this.hasChildren = true;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DElementsTreeOutline.js1223 if (this.children.length || !this.hasChildren)
1234 if (!this.hasChildren)
1350 if (this._node.nodeType() === Node.ELEMENT_NODE && this.hasChildren)
1536 if (this.hasChildren && !this.expanded)
2378 var info = {titleDOM: document.createDocumentFragment(), hasChildren: this.hasChildren}; property
2389 info.hasChildren = false;
2396 info.hasChildren = false;
2402 var showInlineText = this._showInlineText() && !this.hasChildren;
2404 if (this.hasChildren) {
2416 console.assert(!this.hasChildren);
[all …]
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLHRElement.h35 virtual bool canContainRangeEndPoint() const OVERRIDE { return hasChildren(); } in canContainRangeEndPoint()
/external/chromium_org/chrome/browser/resources/options/
Dcertificate_manager.js139 var hasChildren = this.tree.items.length > 0;
147 this.backupAllButton.disabled = !hasChildren;
/external/chromium_org/third_party/WebKit/Source/wtf/
DTreeNode.h71 bool hasChildren() const { return m_firstChild; } in hasChildren() function
143 while (oldParent->hasChildren()) { in takeChildrenFrom()
/external/chromium_org/third_party/WebKit/Tools/Scripts/
Dmalloc-tree68 def hasChildren(self): member in Node
104 if self.hasChildren():
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGTitleElement.cpp41 if (hasChildren() && document().isSVGDocument()) in DEFINE_NODE_FACTORY()
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
Dtree.jquery.js496 Node.prototype.hasChildren = function() { method in Node
501 return this.hasChildren() || this.load_on_demand;
532 if (_this.hasChildren() && result) {
587 if (node.hasChildren()) {
1266 if (node.hasChildren()) {
1358 if (child.hasChildren()) {
1802 if (node.is_open && node.id && node.hasChildren()) {
1826 node.is_open = node.id && node.hasChildren() && (indexOf(open_nodes, node.id) >= 0);
2144 must_iterate_inside = (node.is_open || !node.element) && node.hasChildren();
2154 if (!node.hasChildren()) {
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DObjectPropertiesSection.js247 this.hasChildren = this.property.value.hasChildren && !this.property.wasThrown;
332 this.hasChildren = false;
628 this.hasChildren = true;
715 this.hasChildren = true;
769 this.hasChildren = true;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DRemoteObject.js58 get hasChildren() getter in WebInspector.RemoteObject
290 get hasChildren() getter in WebInspector.RemoteObjectImpl
981 get hasChildren() getter in WebInspector.LocalJSONObject
1013 if (!this.hasChildren)

12345