/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/ |
D | NodeTuple.java | 24 private Node valueNode; field in NodeTuple 26 public NodeTuple(Node keyNode, Node valueNode) { in NodeTuple() argument 27 if (keyNode == null || valueNode == null) { in NodeTuple() 31 this.valueNode = valueNode; in NodeTuple() 47 return valueNode; in getValueNode() 52 return "<NodeTuple keyNode=" + keyNode.toString() + "; valueNode=" + valueNode.toString() in toString()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/ |
D | SkipBeanTest.java | 68 Node valueNode = tuple.getValueNode(); in representJavaBeanProperty() local 69 if (Tag.NULL.equals(valueNode.getTag())) { in representJavaBeanProperty() 72 if (valueNode instanceof CollectionNode) { in representJavaBeanProperty() 73 if (Tag.SEQ.equals(valueNode.getTag())) { in representJavaBeanProperty() 74 SequenceNode seq = (SequenceNode) valueNode; in representJavaBeanProperty() 79 if (Tag.MAP.equals(valueNode.getTag())) { in representJavaBeanProperty() 80 MappingNode seq = (MappingNode) valueNode; in representJavaBeanProperty()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | ParseRDF.java | 821 Node valueNode = null; // ! Can come from rdf:value or rdf:resource. in rdf_EmptyPropertyElement() local 865 valueNode = attribute; in rdf_EmptyPropertyElement() 890 valueNode = attribute; in rdf_EmptyPropertyElement() 915 childNode.setValue(valueNode != null ? valueNode.getNodeValue() : ""); in rdf_EmptyPropertyElement() 931 if (attribute == valueNode || in rdf_EmptyPropertyElement() 1120 XMPNode valueNode = xmpParent.getChild(1); in fixupQualifiedNode() local 1121 assert "rdf:value".equals(valueNode.getName()); in fixupQualifiedNode() 1128 if (valueNode.getOptions().getHasLanguage()) in fixupQualifiedNode() 1135 XMPNode langQual = valueNode.getQualifier(1); in fixupQualifiedNode() 1136 valueNode.removeQualifier(langQual); in fixupQualifiedNode() [all …]
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
D | Constructor.java | 236 Node valueNode = tuple.getValueNode(); in constructJavaBean2ndStep() local 242 valueNode.setType(property.getType()); in constructJavaBean2ndStep() 246 switch (valueNode.getNodeId()) { in constructJavaBean2ndStep() 248 SequenceNode snode = (SequenceNode) valueNode; in constructJavaBean2ndStep() 260 MappingNode mnode = (MappingNode) valueNode; in constructJavaBean2ndStep() 270 if (!typeDetected && valueNode.getNodeId() != NodeId.scalar) { in constructJavaBean2ndStep() 276 if (valueNode.getNodeId() == NodeId.sequence) { in constructJavaBean2ndStep() 278 SequenceNode snode = (SequenceNode) valueNode; in constructJavaBean2ndStep() 280 } else if (valueNode.getTag().equals(Tag.SET)) { in constructJavaBean2ndStep() 282 MappingNode mnode = (MappingNode) valueNode; in constructJavaBean2ndStep() [all …]
|
D | SafeConstructor.java | 100 final Node valueNode = nodeTuple.getValueNode(); in mergeNode() local 103 switch (valueNode.getNodeId()) { in mergeNode() 105 MappingNode mn = (MappingNode) valueNode; in mergeNode() 109 SequenceNode sn = (SequenceNode) valueNode; in mergeNode() 126 + valueNode.getNodeId(), valueNode.getStartMark()); in mergeNode() 397 Node valueNode = mnode.getValue().get(0).getValueNode(); in construct() local 399 Object value = constructObject(valueNode); in construct() 430 Node valueNode = mnode.getValue().get(0).getValueNode(); in construct() local 432 Object value = constructObject(valueNode); in construct()
|
D | BaseConstructor.java | 362 Node valueNode = tuple.getValueNode(); in constructMapping2ndStep() local 373 Object value = constructObject(valueNode); in constructMapping2ndStep()
|
/external/snakeyaml/src/test/java/examples/staticstate/ |
D | StaticFieldsTest.java | 103 ScalarNode valueNode = (ScalarNode) tuple.getValueNode(); in constructObject() local 104 JavaBeanWithStaticState.color = valueNode.getValue(); in constructObject() 106 ScalarNode valueNode = (ScalarNode) tuple.getValueNode(); in constructObject() local 107 JavaBeanWithStaticState.setType(valueNode.getValue()); in constructObject()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/ |
D | CompactConstructor.java | 166 Node valueNode = nodeTuple.getValueNode(); in construct2ndStep() local 168 if (valueNode instanceof MappingNode) { in construct2ndStep() 169 valueNode.setType(object.getClass()); in construct2ndStep() 170 constructJavaBean2ndStep((MappingNode) valueNode, object); in construct2ndStep() 173 applySequence(object, constructSequence((SequenceNode) valueNode)); in construct2ndStep()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue139/ |
D | UniqueKeyTest.java | 50 Node valueNode = tuple.getValueNode(); in constructMapping2ndStep() local 55 Object value = constructObject(valueNode); in constructMapping2ndStep()
|
/external/dokka/core/src/main/kotlin/Kotlin/ |
D | KotlinLanguageService.kt | 238 val valueNode = node.details(NodeKind.Value).firstOrNull() in <lambda>() constant 239 if (valueNode != null) { in <lambda>() 243 text(valueNode.name) in <lambda>()
|
D | DocumentationBuilder.kt | 920 var valueNode: DocumentationNode? = null in AnnotationDescriptor() variable 922 valueNode = (value.value as AnnotationDescriptor).build(true) in AnnotationDescriptor() 924 else valueNode = value.toDocumentationNode(isWithinReplaceWith) in AnnotationDescriptor() 925 if (valueNode != null) { in AnnotationDescriptor() 927 paramNode.append(valueNode, RefKind.Detail) in AnnotationDescriptor()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/ |
D | TestCharsetDetector.java | 379 Node valueNode = node.getFirstChild(); in TestDetection() local 380 if (valueNode.getNodeType() != Node.TEXT_NODE) { in TestDetection() 387 String bytesString = Utility.unescape(valueNode.getNodeValue()); in TestDetection()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/ |
D | TestCharsetDetector.java | 382 Node valueNode = node.getFirstChild(); in TestDetection() local 383 if (valueNode.getNodeType() != Node.TEXT_NODE) { in TestDetection() 390 String bytesString = Utility.unescape(valueNode.getNodeValue()); in TestDetection()
|
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/ |
D | AtomicFUTransformerJS.kt | 249 val valueNode = node.arguments[0] in <lambda>() constant 250 (node.parent as InfixExpression).right = valueNode in <lambda>()
|
/external/dokka/core/src/main/kotlin/Java/ |
D | JavaPsiDocumentationBuilder.kt | 363 val valueNode = DocumentationNode(valueText, Content.Empty, NodeKind.Value) in appendFile() constant 364 parameter.append(valueNode, RefKind.Detail) in appendFile()
|
/external/angle/src/compiler/translator/TranslatorMetalDirect/ |
D | EmitMetal.cpp | 2218 TIntermTyped *valueNode = initNode->getRight()->getAsTyped(); in visitDeclaration() local 2219 ASSERT(leftSymbolNode && valueNode); in visitDeclaration() 2234 if (ExpressionContainsName(varName, *valueNode)) in visitDeclaration() 2241 groupedTraverse(*valueNode); in visitDeclaration()
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | LDMLComparator.java | 1066 Node valueNode = childOfSource.getFirstChild(); in extractMergeData() local 1067 if (valueNode != null) { in extractMergeData() 1068 String temp = trim(valueNode.getNodeValue()); in extractMergeData()
|