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

1 2

  /external/icu/android_icu4j/src/main/java/android/icu/text/
MessagePatternUtil.java 97 if (node instanceof TextNode && !list.isEmpty()) {
100 if (lastNode instanceof TextNode) {
101 TextNode textNode = (TextNode)lastNode;
102 textNode.text = textNode.text + ((TextNode)node).text;
126 * This is a TextNode containing literal text (downcast and call getText()).
172 public static class TextNode extends MessageContentsNode
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MessagePatternUtil.java 102 if (node instanceof TextNode && !list.isEmpty()) {
105 if (lastNode instanceof TextNode) {
106 TextNode textNode = (TextNode)lastNode;
107 textNode.text = textNode.text + ((TextNode)node).text;
133 * This is a TextNode containing literal text (downcast and call getText()).
185 public static class TextNode extends MessageContentsNode
    [all...]
  /external/pdfium/xfa/fxfa/parser/
xfa_basic_data.cpp 65 XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, XFA_ObjectType::TextNode},
71 XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, XFA_ObjectType::TextNode},
74 XFA_ObjectType::TextNode},
138 XFA_XDPPACKET_ConnectionSet, XFA_ObjectType::TextNode},
220 XFA_XDPPACKET_ConnectionSet, XFA_ObjectType::TextNode},
241 XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, XFA_ObjectType::TextNode},
245 XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, XFA_ObjectType::TextNode},
279 XFA_ObjectType::TextNode},
285 XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, XFA_ObjectType::TextNode},
342 XFA_ObjectType::TextNode},
    [all...]
xfa_object.h 29 TextNode,
64 m_objectType == XFA_ObjectType::TextNode ||
    [all...]
cxfa_dataexporter.cpp 265 case XFA_ObjectType::TextNode:
cxfa_simple_parser.cpp     [all...]
xfa_document_datamerger_imp.cpp 104 case XFA_ObjectType::TextNode:
    [all...]
cxfa_node.cpp     [all...]
  /prebuilts/tools/common/m2/repository/org/pegdown/pegdown/1.1.0/
pegdown-1.1.0.jar 
  /prebuilts/go/darwin-x86/src/text/template/parse/
node.go 119 // TextNode holds plain text.
120 type TextNode struct {
127 func (t *Tree) newText(pos Pos, text string) *TextNode {
128 return &TextNode{tr: t, NodeType: NodeText, Pos: pos, Text: []byte(text)}
131 func (t *TextNode) String() string {
135 func (t *TextNode) tree() *Tree {
139 func (t *TextNode) Copy() Node {
140 return &TextNode{tr: t.tr, NodeType: NodeText, Pos: t.Pos, Text: append([]byte{}, t.Text...)}
parse.go 268 case *TextNode:
  /prebuilts/go/linux-x86/src/text/template/parse/
node.go 119 // TextNode holds plain text.
120 type TextNode struct {
127 func (t *Tree) newText(pos Pos, text string) *TextNode {
128 return &TextNode{tr: t, NodeType: NodeText, Pos: pos, Text: []byte(text)}
131 func (t *TextNode) String() string {
135 func (t *TextNode) tree() *Tree {
139 func (t *TextNode) Copy() Node {
140 return &TextNode{tr: t.tr, NodeType: NodeText, Pos: t.Pos, Text: append([]byte{}, t.Text...)}
parse.go 268 case *TextNode:
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
MessagePatternUtilDemo.java 35 ((MessagePatternUtil.TextNode)contents).getText() + "»");
137 escapeString(((MessagePatternUtil.TextNode)contents).getText()) +
  /external/v8/src/regexp/
jsregexp.cc     [all...]
jsregexp.h 664 class TextNode: public SeqRegExpNode {
666 TextNode(ZoneList<TextElement>* elms, bool read_backward,
669 TextNode(RegExpCharacterClass* that, bool read_backward,
676 // Create TextNode for a single character class for the given ranges.
677 static TextNode* CreateForCharacterRanges(Zone* zone,
681 // Create TextNode for a surrogate pair with a range given for the
683 static TextNode* CreateForSurrogatePair(Zone* zone, CharacterRange lead,
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
MessagePatternUtilTest.java 28 import android.icu.text.MessagePatternUtil.TextNode;
123 assertEquals("not a TextNode",
125 assertTrue("TextNode does not contain \"" + subString + "\"",
126 ((TextNode)c).getText().contains(subString));
472 return ((TextNode)v.getMessage().getContents().get(0)).getText();
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
MessagePatternUtilTest.java 27 import com.ibm.icu.text.MessagePatternUtil.TextNode;
122 assertEquals("not a TextNode",
124 assertTrue("TextNode does not contain \"" + subString + "\"",
125 ((TextNode)c).getText().contains(subString));
471 return ((TextNode)v.getMessage().getContents().get(0)).getText();
  /prebuilts/tools/common/m2/repository/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /prebuilts/go/darwin-x86/src/html/template/
escape.go 92 textNodeEdits map[*parse.TextNode][]byte
104 map[*parse.TextNode][]byte{},
128 case *parse.TextNode:
595 func (e *escaper) escapeText(c context, n *parse.TextNode) context {
742 func (e *escaper) editTextNode(n *parse.TextNode, text []byte) {
  /prebuilts/go/linux-x86/src/html/template/
escape.go 92 textNodeEdits map[*parse.TextNode][]byte
104 map[*parse.TextNode][]byte{},
128 case *parse.TextNode:
595 func (e *escaper) escapeText(c context, n *parse.TextNode) context {
742 func (e *escaper) editTextNode(n *parse.TextNode, text []byte) {
  /prebuilts/tools/common/m2/repository/org/jsoup/jsoup/1.6.3/
jsoup-1.6.3.jar 
  /prebuilts/tools/common/m2/repository/org/jsoup/jsoup/1.7.3/
jsoup-1.7.3.jar 
  /prebuilts/go/darwin-x86/src/text/template/
exec.go 246 case *parse.TextNode:
  /prebuilts/go/linux-x86/src/text/template/
exec.go 246 case *parse.TextNode:

Completed in 1954 milliseconds

1 2