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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SidebarTreeElement.js 30 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren)
32 TreeElement.call(this, title.escapeHTML(), representedObject || {}, hasChildren);
83 * @param {boolean=} hasChildren
85 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren)
87 TreeElement.call(this, "", representedObject, hasChildren);
89 if (hasChildren) {
198 if (this.hasChildren && this.disclosureButton)
TopDownProfileDataGridTree.js 34 var hasChildren = !!(profileNode.children && profileNode.children.length);
36 WebInspector.ProfileDataGridNode.call(this, profileNode, owningTree, hasChildren);
treeoutline.js 44 this.hasChildren = false;
126 this.hasChildren = true;
138 if (child.hasChildren && typeof(child.treeOutline._expandedStateMap.get(child.representedObject)) !== "undefined")
375 } else if (this.selectedTreeElement.hasChildren) {
442 * @param {boolean=} hasChildren
444 function TreeElement(title, representedObject, hasChildren)
454 this.hasChildren = hasChildren;
503 get hasChildren() {
507 set hasChildren(x)
    [all...]
AllocationProfile.js 178 _serializeNode: function(nodeId, functionInfo, count, size, hasChildren)
188 hasChildren: hasChildren
DataGrid.js 254 rootNode.hasChildren = false;
758 addCreationNode: function(hasChildren)
766 this.creationNode = new WebInspector.CreationDataGridNode(emptyData, hasChildren);
849 } else if (this.selectedNode.hasChildren) {
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
dic_node_properties.h 41 const bool isTerminal, const bool hasChildren, const bool isBlacklistedOrNotAWord,
48 mHasChildren = hasChildren;
109 bool hasChildren() const {
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.h 73 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); }
95 return hasChildren() ? this + 1 : 0;
98 return hasChildren() ? this + 1 : 0;
DWARFAbbreviationDeclaration.h 24 bool HasChildren;
29 : Code(InvalidCode), Tag(0), HasChildren(0) {}
33 bool hasChildren() const { return HasChildren; }
DWARFAbbreviationDeclaration.cpp 29 HasChildren = data.getU8(offset_ptr);
44 HasChildren = false;
57 OS << "\tDW_CHILDREN_" << (hasChildren() ? "yes" : "no") << '\n';
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_vector.h 66 const int probability, const bool isTerminal, const bool hasChildren,
72 hasChildren, isBlacklistedOrNotAWord, mergedNodeCodePointCount,
  /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() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLCallGroups.java 35 boolean hasChildren();
61 public boolean hasChildren() {
100 public boolean hasChildren() {
StateContentProvider.java 68 public boolean hasChildren(Object element) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
malloc-tree 68 def hasChildren(self):
104 if self.hasChildren():
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dynamic_patricia_trie_reading_helper.cpp 41 if (mNodeReader.hasChildren()) {
123 if (mNodeReader.hasChildren()) {
dynamic_patricia_trie_node_reader.h 74 AK_FORCE_INLINE bool hasChildren() const {
patricia_trie_policy.cpp 30 if (!dicNode->hasChildren()) {
125 const bool hasChildren = PatriciaTrieReadingUtils::hasChildrenInFlags(flags);
131 if (hasChildren) {
211 if (hasChildren) lastCandidatePtNodePos = startPos;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXARIAGrid.cpp 106 if (!child->hasChildren())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderNamedFlowThread.h 61 bool hasChildren() const { return !m_flowThreadChildList.isEmpty(); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeContentProvider.java 72 public boolean hasChildren(Object element) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceContentProvider.java 90 public boolean hasChildren(Object element) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderItemView.java 108 && a.hasChildren == b.hasChildren
120 mFolderParentIcon.setVisibility(mFolder.hasChildren ? View.VISIBLE : View.GONE);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Folder.java 95 public boolean hasChildren;
254 public Builder setHasChildren(final boolean hasChildren) {
255 mHasChildren = hasChildren;
337 boolean hasChildren, int syncWindow, Uri conversationListUri, Uri childFoldersListUri,
347 this.hasChildren = hasChildren;
383 hasChildren = cursor.getInt(UIProvider.FOLDER_HAS_CHILDREN_COLUMN) == 1;
388 childFoldersListUri = (hasChildren && !TextUtils.isEmpty(childList)) ? Uri.parse(childList)
446 hasChildren = in.readInt() == 1;
483 dest.writeInt(hasChildren ? 1 : 0)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 437 if (parent.getOptions().isSchemaNode() && !parent.hasChildren())
552 if (!destSchema.hasChildren() && (createdSchema || deleteEmptyValues))
584 return !schemaNode.hasChildren();
608 !sourceNode.hasChildren();
652 if (deleteEmptyValues && !destNode.hasChildren())
681 if (!destNode.hasChildren())
691 || !destNode.hasChildren())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 401 public static ViewElementDescriptor createDesc(String name, String fqn, boolean hasChildren) {
402 if (hasChildren) {
411 boolean hasChildren) {
413 ViewElementDescriptor descriptor = createDesc(name, fqn, hasChildren);
421 public static UiViewElementNode createNode(String fqn, boolean hasChildren) {
422 return createNode(null, fqn, hasChildren);

Completed in 2201 milliseconds

1 2 3 4 5 6