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

1 2 3 4

  /external/webkit/Source/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) {
188 if (this.hasChildren && this.disclosureButton)
TopDownProfileDataGridTree.js 28 var hasChildren = (profileNode.children && profileNode.children.length);
30 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, hasChildren);
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()
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...]
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)
    [all...]
ObjectPropertiesSection.js 213 this.hasChildren = this.property.value.hasChildren;
251 this.hasChildren = false;
ScopeChainSidebarPane.js 120 if (this.hasChildren && this.propertyIdentifier in this.treeOutline.section.pane._expandedProperties)
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.h 59 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); }
81 return hasChildren() ? this + 1 : 0;
84 return hasChildren() ? this + 1 : 0;
DWARFAbbreviationDeclaration.h 24 bool HasChildren;
29 : Code(InvalidCode), Tag(0), HasChildren(0) {}
33 bool hasChildren() const { return HasChildren; }
DWARFCompileUnit.cpp 118 if (curr_die_abbrev->hasChildren())
180 if (abbrDecl->hasChildren())
DWARFAbbreviationDeclaration.cpp 29 HasChildren = data.getU8(offset_ptr);
44 HasChildren = false;
57 OS << "\tDW_CHILDREN_" << (hasChildren() ? "yes" : "no") << '\n';
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeStackContentProvider.java 47 public boolean hasChildren(Object element) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
ElementDescriptor.java 254 int color = hasChildren() ? IconFactory.COLOR_BLUE
256 int shape = hasChildren() ? IconFactory.SHAPE_RECT
288 int color = hasChildren() ? IconFactory.COLOR_BLUE : IconFactory.COLOR_GREEN;
289 int shape = hasChildren() ? IconFactory.SHAPE_RECT : IconFactory.SHAPE_CIRCLE;
313 public boolean hasChildren() {
  /external/webkit/Source/WebCore/accessibility/
AccessibilityListBox.cpp 119 if (!hasChildren())
133 if (!hasChildren())
AccessibilityARIAGrid.cpp 113 if (!child->hasChildren())
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtilsTest.java 132 private static ViewElementDescriptor createDesc(String name, String fqn, boolean hasChildren) {
133 if (hasChildren) {
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfectTree.java 71 public boolean hasChildren(Object element) {
101 if (hasChildren(element)) {
  /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) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceContentProvider.java 87 public boolean hasChildren(Object element) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 250 boolean hasChildren = isViewGroup || parentDescriptor.hasChildren();
252 if (hasChildren && builtInList != null) {
  /packages/inputmethods/LatinIME/native/src/
binary_format.h 358 const bool hasChildren = (UnigramDictionary::FLAG_GROUP_ADDRESS_TYPE_NOADDRESS !=
365 if (hasChildren) {
427 if (hasChildren) lastCandidateGroupPos = startPos;
  /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();
  /external/webkit/Source/WebCore/inspector/
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);

Completed in 499 milliseconds

1 2 3 4