Home
last modified time | relevance | path

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

12345

/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugInfoEntry.h61 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); } in hasChildren() function
73 return hasChildren() ? this + 1 : nullptr; in getFirstChild()
DDWARFAbbreviationDeclaration.h33 bool hasChildren() const { return HasChildren; } in hasChildren() function
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugInfoEntry.h53 bool hasChildren() const { return AbbrevDecl && AbbrevDecl->hasChildren(); } in hasChildren() function
DDWARFDie.h79 bool hasChildren() const { in hasChildren() function
81 return Die->hasChildren(); in hasChildren()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugInfoEntry.h53 bool hasChildren() const { return AbbrevDecl && AbbrevDecl->hasChildren(); } in hasChildren() function
DDWARFDie.h79 bool hasChildren() const { in hasChildren() function
81 return Die->hasChildren(); in hasChildren()
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsUnixLikeFileSystemTest.java391 assertThatPath("/").hasChildren("work"); in testNewFileSystem_hasRootAndWorkingDirectory()
400 assertThatPath("/").hasChildren("test", "work"); in testCreateDirectory_absolute()
406 assertThatPath("/foo").hasChildren("bar"); in testCreateDirectory_absolute()
414 assertThatPath("/").hasChildren("test.txt", "work"); in testCreateFile_absolute()
420 assertThatPath("/foo").hasChildren("test.txt"); in testCreateFile_absolute()
428 assertThatPath("/").hasChildren("link.txt", "work"); in testCreateSymbolicLink_absolute()
434 assertThatPath("/foo").hasChildren("link.txt"); in testCreateSymbolicLink_absolute()
445 assertThatPath("/").hasChildren("link.txt", "test.txt", "work"); in testCreateLink_absolute()
451 assertThatPath("/foo").hasChildren("link.txt"); in testCreateLink_absolute()
460 assertThatPath("/work").hasChildren("test"); in testCreateDirectory_relative()
[all …]
/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()
DXMPSerializerRDF.java688 if (!node.hasChildren()) in serializeCompactRDFStructProp()
1077 if (!node.hasChildren()) in serializePrettyRDFProperty()
1146 if (isStartTag || arrayNode.hasChildren()) in emitRDFArrayTag()
1164 if (isStartTag && !arrayNode.hasChildren()) in emitRDFArrayTag()
DXMPNode.java348 public boolean hasChildren() in hasChildren() method in XMPNode
674 if (hasChildren())
783 if (recursive && hasChildren())
DXMPIteratorImpl.java314 (!getOptions().isJustLeafnodes() || !visitedNode.hasChildren())) in reportNode()
582 if (!getOptions().isJustLeafnodes() || !child.hasChildren())
DXMPNormalizer.java384 else if (baseNode.hasChildren()) in moveExplicitAliases()
503 if (!schema.hasChildren()) in deleteEmptySchemas()
602 if (dcRightsArray == null || !dcRightsArray.hasChildren()) in migrateAudioCopyright()
/external/skia/modules/svg/src/
DSkSVGPattern.cpp73 if (!contentNode->hasChildren()) { in resolveHref()
77 if (contentNode->hasChildren() && !didInherit) { in resolveHref()
DSkSVGContainer.cpp20 bool SkSVGContainer::hasChildren() const { in hasChildren() function in SkSVGContainer
/external/catch2/include/internal/
Dcatch_test_case_tracker.h42 virtual bool hasChildren() const = 0;
110 bool hasChildren() const override;
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfFile.cpp116 if (Die.hasChildren()) { in computeSizeAndOffset()
118 assert(Abbrev.hasChildren() && "Children flag not set"); in computeSizeAndOffset()
/external/skqp/experimental/svg/model/
DSkSVGPattern.cpp123 if (!contentNode->hasChildren()) { in resolveHref()
127 if (contentNode->hasChildren() && !didInherit) { in resolveHref()
DSkSVGContainer.h27 bool hasChildren() const final;
DSkSVGContainer.cpp20 bool SkSVGContainer::hasChildren() const { in hasChildren() function in SkSVGContainer
DSkSVGNode.h86 virtual bool hasChildren() const { return false; } in hasChildren() function
/external/llvm-project/mlir/lib/Analysis/
DCallGraph.cpp55 bool CallGraphNode::hasChildren() const { in hasChildren() function in CallGraphNode
155 if (node->hasChildren()) { in eraseNode()
/external/skia/modules/svg/include/
DSkSVGContainer.h27 bool hasChildren() const final;
/external/slf4j/slf4j-api/src/main/java/org/slf4j/
DMarker.java83 public boolean hasChildren(); in hasChildren() method
/external/slf4j/log4j-over-slf4j/compatibility/lib/
Dslf4j-api-1.4.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/slf4j/ org/ ...
/external/llvm/lib/DebugInfo/DWARF/
DDWARFAbbreviationDeclaration.cpp71 OS << "\tDW_CHILDREN_" << (hasChildren() ? "yes" : "no") << '\n'; in dump()

12345