/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/node/ |
D | TextNodeTest.java | 7 assertNull(TextNode.valueOf(null)); in testText() 8 TextNode empty = TextNode.valueOf(""); in testText() 10 assertSame(TextNode.EMPTY_STRING_NODE, empty); in testText() 15 assertNodeNumbers(TextNode.valueOf("-3"), -3, -3.0); in testText() 16 assertNodeNumbers(TextNode.valueOf("17.75"), 17, 17.75); in testText() 19 TextNode n = TextNode.valueOf(String.valueOf(value)); in testText() 23 n = TextNode.valueOf("foobar"); in testText() 29 assertTrue(TextNode.valueOf("true").asBoolean(true)); in testText() 30 assertTrue(TextNode.valueOf("true").asBoolean(false)); in testText() 31 assertFalse(TextNode.valueOf("false").asBoolean(true)); in testText() [all …]
|
D | TestConversions.java | 122 assertEquals(13, new TextNode("13").asInt()); in testAsInt() 123 assertEquals(0, new TextNode("foobar").asInt()); in testAsInt() 124 assertEquals(27, new TextNode("foobar").asInt(27)); in testAsInt() 136 assertEquals(true, new TextNode("true").asBoolean()); in testAsBoolean() 137 assertEquals(false, new TextNode("false").asBoolean()); in testAsBoolean() 138 assertEquals(false, new TextNode("barf").asBoolean()); in testAsBoolean() 139 assertEquals(true, new TextNode("barf").asBoolean(true)); in testAsBoolean() 199 TextNode n = new TextNode(variant.encode(input)); in testBase64Text()
|
D | ArrayNodeTest.java | 13 import com.fasterxml.jackson.databind.node.TextNode; 30 TextNode text = TextNode.valueOf("x"); in testDirectCreation() 84 TextNode text2 = TextNode.valueOf("b"); in testDirectCreation() 293 n1.add(TextNode.valueOf("Test")); in testArrayNodeEquality() 298 n2.add(TextNode.valueOf("Test")); in testArrayNodeEquality()
|
D | TestTreeDeserialization.java | 36 n1.set("x", TextNode.valueOf("Test")); in testObjectNodeEquality() 41 n2.set("x", TextNode.valueOf("Test")); in testObjectNodeEquality()
|
D | ObjectNodeTest.java | 97 assertEquals(TextNode.valueOf("x"), n); in testSimpleObject() 113 assertEquals(TextNode.valueOf("x"), en.getValue()); in testSimpleObject() 140 TextNode text = TextNode.valueOf("x"); in testBasics()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/node/ |
D | TextNode.java | 16 public class TextNode class 21 final static TextNode EMPTY_STRING_NODE = new TextNode(""); 25 public TextNode(String v) { _value = v; } in TextNode() method in TextNode 36 public static TextNode valueOf(String v) in valueOf() 44 return new TextNode(v); in valueOf() 160 if (o instanceof TextNode) { in equals() 161 return ((TextNode) o)._value.equals(_value); in equals()
|
D | JsonNodeFactory.java | 294 public TextNode textNode(String text) { return TextNode.valueOf(text); } in textNode()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | MessagePatternUtil.java | 102 if (node instanceof TextNode && !list.isEmpty()) { in addContentsNode() 105 if (lastNode instanceof TextNode) { in addContentsNode() 106 TextNode textNode = (TextNode)lastNode; in addContentsNode() 107 textNode.text = textNode.text + ((TextNode)node).text; in addContentsNode() 185 public static class TextNode extends MessageContentsNode { class in MessagePatternUtil 202 private TextNode(String text) { in TextNode() method in MessagePatternUtil.TextNode 468 new TextNode(pattern.getPatternString().substring(prevPatternIndex, in buildMessageNode()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | MessagePatternUtil.java | 99 if (node instanceof TextNode && !list.isEmpty()) { in addContentsNode() 102 if (lastNode instanceof TextNode) { in addContentsNode() 103 TextNode textNode = (TextNode)lastNode; in addContentsNode() 104 textNode.text = textNode.text + ((TextNode)node).text; in addContentsNode() 177 public static class TextNode extends MessageContentsNode { class in MessagePatternUtil 192 private TextNode(String text) { in TextNode() method in MessagePatternUtil.TextNode 440 new TextNode(pattern.getPatternString().substring(prevPatternIndex, in buildMessageNode()
|
/external/llvm-project/clang-tools-extra/clang-doc/assets/ |
D | index.js | 41 var TextNode = document.createTextNode(Ref.Name); 42 ANode.appendChild(TextNode); 51 var TextNode = document.createTextNode(Index.Name);
|
/external/llvm-project/clang-tools-extra/clang-doc/ |
D | HTMLGenerator.cpp | 76 struct TextNode : public HTMLNode { struct 77 TextNode(const Twine &Text) in TextNode() argument 87 Children.emplace_back(std::make_unique<TextNode>(Text.str())); in TagNode() 178 void TextNode::Render(llvm::raw_ostream &OS, int IndentationLevel) { in Render() 313 return std::make_unique<TextNode>(Type.Name); in genReference() 333 Out.emplace_back(std::make_unique<TextNode>(", ")); in genReferenceList() 409 LIBody->Children.emplace_back(std::make_unique<TextNode>(Access)); in genRecordMembersBlock() 411 LIBody->Children.emplace_back(std::make_unique<TextNode>(" " + M.Name)); in genRecordMembersBlock() 446 Node->Children.emplace_back(std::make_unique<TextNode>("Defined at line ")); in writeFileDefinition() 454 Node->Children.emplace_back(std::make_unique<TextNode>(" of file ")); in writeFileDefinition() [all …]
|
/external/dokka/core/src/main/kotlin/Model/ |
D | CodeNode.kt | 4 import org.jsoup.nodes.TextNode 6 class CodeNode(text: String, baseUri: String): TextNode(text, baseUri) {
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_object.h | 23 TextNode, enumerator 56 m_objectType == XFA_ObjectType::TextNode || in IsNode()
|
D | cxfa_ref.cpp | 26 XFA_ObjectType::TextNode, in CXFA_Ref()
|
D | cxfa_soapaddress.cpp | 27 XFA_ObjectType::TextNode, in CXFA_SoapAddress()
|
D | cxfa_update.cpp | 27 XFA_ObjectType::TextNode, in CXFA_Update()
|
D | cxfa_password.cpp | 27 XFA_ObjectType::TextNode, in CXFA_Password()
|
D | cxfa_user.cpp | 27 XFA_ObjectType::TextNode, in CXFA_User()
|
D | cxfa_insert.cpp | 27 XFA_ObjectType::TextNode, in CXFA_Insert()
|
D | cxfa_soapaction.cpp | 27 XFA_ObjectType::TextNode, in CXFA_SoapAction()
|
D | cxfa_select.cpp | 27 XFA_ObjectType::TextNode, in CXFA_Select()
|
D | cxfa_delete.cpp | 27 XFA_ObjectType::TextNode, in CXFA_Delete()
|
D | cxfa_connectstring.cpp | 28 XFA_ObjectType::TextNode, in CXFA_ConnectString()
|
D | cxfa_rootelement.cpp | 27 XFA_ObjectType::TextNode, in CXFA_RootElement()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_textnode.h | 30 static const TypeTag static_type__ = TypeTag::TextNode;
|