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

1 2 3 4 5 6 7 8

  /external/slf4j/slf4j-api/src/main/java/org/slf4j/
Marker.java 83 public boolean hasChildren();
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
_base.py 49 def emptyTag(self, namespace, name, attrs, hasChildren=False):
60 if hasChildren:
146 hasChildren = False
156 namespace, name, attributes, hasChildren = details
159 hasChildren):
161 hasChildren = False
172 hasChildren = True
177 if hasChildren:
189 namespace, name, attributes, hasChildren = details
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugInfoEntry.h 61 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); }
73 return hasChildren() ? this + 1 : nullptr;
DWARFAbbreviationDeclaration.h 33 bool hasChildren() const { return HasChildren; }
55 bool HasChildren;
  /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() {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
dynamic_pt_reading_helper.cpp 54 if (ptNodeParams.hasChildren()) {
140 if (ptNodeParams.hasChildren()) {
248 if (!ptNodeParams.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/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.cpp 109 if (Die.hasChildren()) {
111 assert(Abbrev.hasChildren() && "Children flag not set");
  /frameworks/base/core/java/android/view/
WindowInfo.java 140 final boolean hasChildren = (parcel.readInt() == 1);
141 if (hasChildren) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderItemView.java 105 && a.hasChildren == b.hasChildren
  /external/llvm/lib/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.cpp 20 HasChildren = false;
37 HasChildren = (ChildrenByte == DW_CHILDREN_yes);
71 OS << "\tDW_CHILDREN_" << (hasChildren() ? "yes" : "no") << '\n';
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
dic_node_properties.h 106 bool hasChildren() const {
  /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/providers/
Folder.java 99 public boolean hasChildren;
258 public Builder setHasChildren(final boolean hasChildren) {
259 mHasChildren = hasChildren;
341 boolean hasChildren, int syncWindow, Uri conversationListUri, Uri childFoldersListUri,
351 this.hasChildren = hasChildren;
386 hasChildren = cursor.getInt(UIProvider.FOLDER_HAS_CHILDREN_COLUMN) == 1;
391 childFoldersListUri = (hasChildren && !TextUtils.isEmpty(childList)) ? Uri.parse(childList)
448 hasChildren = in.readInt() == 1;
484 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...]
XMPIteratorImpl.java 314 (!getOptions().isJustLeafnodes() || !visitedNode.hasChildren()))
582 if (!getOptions().isJustLeafnodes() || !child.hasChildren())
XMPNode.java 348 public boolean hasChildren()
674 if (hasChildren())
783 if (recursive && hasChildren())
  /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);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXPolicyNode.java 82 public boolean hasChildren()
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
BasicMarker.java 84 public boolean hasChildren() {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.cpp 35 if (!dicNode->hasChildren()) {
157 const bool hasChildren = PatriciaTrieReadingUtils::hasChildrenInFlags(flags);
163 if (hasChildren) {
251 if (hasChildren) lastCandidatePtNodePos = startPos;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitPropertyTester.java 94 return ((IPackageFragment) element).hasChildren();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtilsTest.java 189 private static ViewElementDescriptor createDesc(String name, String fqn, boolean hasChildren) {
190 if (hasChildren) {

Completed in 422 milliseconds

1 2 3 4 5 6 7 8