HomeSort by relevance Sort by last modified time
    Searched refs:hasChildren (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/webkit/WebCore/inspector/front-end/
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) {
186 if (this.hasChildren && this.disclosureButton)
ObjectProxy.js 31 WebInspector.ObjectProxy = function(injectedScriptId, objectId, path, protoDepth, description, hasChildren)
38 this.hasChildren = hasChildren;
TopDownProfileDataGridTree.js 28 var hasChildren = (profileNode.children && profileNode.children.length);
30 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, hasChildren);
DataGrid.js 132 this.hasChildren = false;
417 addCreationNode: function(hasChildren)
425 this.creationNode = new WebInspector.CreationDataGridNode(emptyData, hasChildren);
445 this.hasChildren = true;
492 this.hasChildren = false;
509 this.hasChildren = false;
575 } else if (this.selectedNode.hasChildren) {
712 if (!gridNode || !gridNode.hasChildren)
790 WebInspector.DataGridNode = function(data, hasChildren)
796 this.hasChildren = hasChildren || false
    [all...]
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) {
432 function TreeElement(title, representedObject, hasChildren)
447 this.hasChildren = hasChildren;
488 get hasChildren() {
    [all...]
ObjectPropertiesSection.js 184 this.hasChildren = this.property.value.hasChildren;
203 this.hasChildren = false;
ScopeChainSidebarPane.js 104 if (this.hasChildren && this.propertyIdentifier in this.treeOutline.section.pane._expandedProperties)
ProfileDataGridTree.js 26 WebInspector.ProfileDataGridNode = function(profileView, profileNode, owningTree, hasChildren)
31 WebInspector.DataGridNode.call(this, null, hasChildren);
ElementsTreeOutline.js 552 if (this.hasChildren && !this.expanded)
882 var title = self._nodeTitleInfo(self.representedObject, self.hasChildren, WebInspector.linkifyURL, tooltipText).title;
919 _nodeTitleInfo: function(node, hasChildren, linkify, tooltipText)
921 var info = {title: "", hasChildren: hasChildren}
    [all...]
BottomUpProfileDataGridTree.js 82 this.hasChildren = this._willHaveChildren();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
UiElementTreeEditPartFactory.java 40 if (node.getDescriptor().hasChildren()) {
UiElementsEditPartFactory.java 55 if (node.getDescriptor().hasChildren()) {
  /external/webkit/WebCore/accessibility/
AccessibilityTable.cpp 290 if (!hasChildren())
298 if (!hasChildren())
309 if (!hasChildren())
326 if (!hasChildren())
343 if (!hasChildren())
355 if (!hasChildren())
363 if (!hasChildren())
374 if (!hasChildren())
AccessibilityARIAGrid.cpp 104 if (!child->hasChildren())
134 if (!hasChildren())
AccessibilityListBox.cpp 119 if (!hasChildren())
133 if (!hasChildren())
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 190 int color = hasChildren() ? IconFactory.COLOR_BLUE : IconFactory.COLOR_GREEN;
191 int shape = hasChildren() ? IconFactory.SHAPE_RECT : IconFactory.SHAPE_CIRCLE;
207 int color = hasChildren() ? IconFactory.COLOR_BLUE : IconFactory.COLOR_GREEN;
208 int shape = hasChildren() ? IconFactory.SHAPE_RECT : IconFactory.SHAPE_CIRCLE;
232 public boolean hasChildren() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeContentProvider.java 69 public boolean hasChildren(Object element) {
PasteAction.java 73 if (mUiNode.getDescriptor().hasChildren()) {
UiActions.java 221 if (ui_prev.getDescriptor().hasChildren()) {
301 if (uiNext.getDescriptor().hasChildren()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceContentProvider.java 81 public boolean hasChildren(Object element) {
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXPolicyNode.java 82 public boolean hasChildren()
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/
DeviceContentProvider.java 125 * @see org.eclipse.jface.viewers.ITreeContentProvider#hasChildren(java.lang.Object)
127 public boolean hasChildren(Object element) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitPropertyTester.java 93 return ((IPackageFragment) element).hasChildren();
  /packages/apps/Contacts/src/com/android/contacts/ui/widget/
KindSectionView.java 186 final boolean hasChildren = mEditors.getChildCount() > 0;
187 mEditors.setVisibility(hasChildren ? View.VISIBLE : View.GONE);
  /external/webkit/WebCore/history/
HistoryItem.h 157 bool hasChildren() const;

Completed in 934 milliseconds

1 2 3