Home
last modified time | relevance | path

Searched refs:valueNode (Results 1 – 17 of 17) sorted by relevance

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
DNodeTuple.java24 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/
DSkipBeanTest.java68 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/
DParseRDF.java821 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/
DConstructor.java236 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 …]
DSafeConstructor.java100 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()
DBaseConstructor.java362 Node valueNode = tuple.getValueNode(); in constructMapping2ndStep() local
373 Object value = constructObject(valueNode); in constructMapping2ndStep()
/external/snakeyaml/src/test/java/examples/staticstate/
DStaticFieldsTest.java103 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/
DCompactConstructor.java166 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/
DUniqueKeyTest.java50 Node valueNode = tuple.getValueNode(); in constructMapping2ndStep() local
55 Object value = constructObject(valueNode); in constructMapping2ndStep()
/external/dokka/core/src/main/kotlin/Kotlin/
DKotlinLanguageService.kt238 val valueNode = node.details(NodeKind.Value).firstOrNull() in <lambda>() constant
239 if (valueNode != null) { in <lambda>()
243 text(valueNode.name) in <lambda>()
DDocumentationBuilder.kt920 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/
DTestCharsetDetector.java379 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/
DTestCharsetDetector.java382 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/
DAtomicFUTransformerJS.kt249 val valueNode = node.arguments[0] in <lambda>() constant
250 (node.parent as InfixExpression).right = valueNode in <lambda>()
/external/dokka/core/src/main/kotlin/Java/
DJavaPsiDocumentationBuilder.kt363 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/
DEmitMetal.cpp2218 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/
DLDMLComparator.java1066 Node valueNode = childOfSource.getFirstChild(); in extractMergeData() local
1067 if (valueNode != null) { in extractMergeData()
1068 String temp = trim(valueNode.getNodeValue()); in extractMergeData()