HomeSort by relevance Sort by last modified time
    Searched defs:Text (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/webkit/Source/WebCore/dom/
Text.h 30 class Text : public CharacterData {
34 static PassRefPtr<Text> create(Document*, const String&);
35 static PassRefPtr<Text> createWithLengthLimit(Document*, const String&, unsigned positionInString, unsigned lengthLimit = defaultLengthLimit);
37 PassRefPtr<Text> splitText(unsigned offset, ExceptionCode&);
42 PassRefPtr<Text> replaceWholeText(const String&, ExceptionCode&);
47 Text(Document* document, const String& data)
61 virtual PassRefPtr<Text> virtualCreate(const String&);
  /libcore/luni/src/main/java/org/w3c/dom/
Text.java 16 * The <code>Text</code> interface inherits from <code>CharacterData</code>
18 * markup inside an element's content, the text is contained in a single
19 * object implementing the <code>Text</code> interface that is the only
21 * information items (elements, comments, etc.) and <code>Text</code> nodes
24 * <code>Text</code> node for each block of text. Users may create adjacent
25 * <code>Text</code> nodes that represent the contents of a given element
30 * <code>Text</code> objects into a single node for each block of text.
31 * <p> No lexical check is done on the content of a <code>Text</code> nod
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IToken.cs 36 /** <summary>Get the text of the token</summary> */
37 string Text {
ClassicToken.cs 45 string text; field in class:Antlr.Runtime.ClassicToken
59 text = oldToken.Text;
66 public ClassicToken(int type, string text) {
68 this.text = text;
71 public ClassicToken(int type, string text, int channel) {
73 this.text = text;
78 public string Text {
    [all...]
CommonToken.cs 35 using Regex = System.Text.RegularExpressions.Regex;
48 * We need to be able to change the text once in a while. If
53 string text; field in class:Antlr.Runtime.CommonToken
79 public CommonToken(int type, string text) {
82 this.text = text;
86 text = oldToken.Text;
100 public string Text {
102 if (text != null
    [all...]
Lexer.cs 60 public string Text {
61 /** <summary>Return the text matched so far for the current token or any text override.</summary> */
63 if (state.text != null) {
64 return state.text;
68 /** <summary>Set the complete text of this token; it wipes any previous changes to the text.</summary> */
70 state.text = value;
106 state.text = null;
117 state.text = null
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 67 public override string Text {
106 ", resync=" + Text + ">";
108 return "<mismatched token: " + trappedException.Token + ", resync=" + Text + ">";
111 ", resync=" + Text + ">";
113 return "<error: " + Text + ">";
ParseTree.cs 36 using StringBuilder = System.Text.StringBuilder;
55 public override string Text {
95 return t.Text;
110 buf.Append(hidden.Text);
CommonTree.cs 132 public override string Text {
137 return token.Text;
224 return token.Text;
ITree.cs 144 string Text {
BaseTree.cs 37 using StringBuilder = System.Text.StringBuilder;
124 public abstract string Text {
438 /** <summary>Override to say how a node (not a tree) should look as text</summary> */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IToken.cs 38 /** <summary>Get the text of the token</summary> */
39 string Text
ClassicToken.cs 47 string text; field in class:Antlr.Runtime.ClassicToken
63 text = oldToken.Text;
70 public ClassicToken( int type, string text )
73 this.text = text;
76 public ClassicToken( int type, string text, int channel )
79 this.text = text;
84 public string Text
    [all...]
CommonToken.cs 36 using Regex = System.Text.RegularExpressions.Regex;
50 * We need to be able to change the text once in a while. If
55 string text; field in class:Antlr.Runtime.CommonToken
84 public CommonToken( int type, string text )
88 this.text = text;
93 text = oldToken.Text;
108 public string Text
112 if ( text != null
    [all...]
Lexer.cs 65 public string Text
67 /** <summary>Return the text matched so far for the current token or any text override.</summary> */
70 if ( state.text != null )
72 return state.text;
76 /** <summary>Set the complete text of this token; it wipes any previous changes to the text.</summary> */
79 state.text = value;
124 state.text = null;
137 state.text = null
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 73 public override string Text
128 ", resync=" + Text + ">";
132 return "<mismatched token: " + trappedException.Token + ", resync=" + Text + ">";
137 ", resync=" + Text + ">";
139 return "<error: " + Text + ">";
ParseTree.cs 37 using StringBuilder = System.Text.StringBuilder;
58 public override string Text
114 return t.Text;
132 buf.Append( hidden.Text );
CommonTree.cs 162 public override string Text
169 return Token.Text;
293 return Token.Text;
ITree.cs 153 string Text
BaseTree.cs 38 using StringBuilder = System.Text.StringBuilder;
149 public abstract string Text
525 /** <summary>Override to say how a node (not a tree) should look as text</summary> */
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Text.java 7 * $Id: Text.java,v 1.1.1.1 2004/05/09 16:57:42 vlad_r Exp $
18 final class Text implements IContent
22 public Text (final String text, final boolean nbsp)
24 m_text = text;
  /external/llvm/include/llvm/MC/
MCAtom.h 41 std::vector<std::pair<uint64_t, MCInst> > Text;
  /external/clang/include/clang/Edit/
EditedSource.h 33 StringRef Text;
73 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 55 string IToken.Text
  /external/clang/unittests/AST/
CommentLexer.cpp 123 // Single comment with plain text.
137 ASSERT_EQ(tok::text, Toks[0].getKind());
144 // Single comment with plain text.
157 ASSERT_EQ(tok::text, Toks[0].getKind());
180 ASSERT_EQ(tok::text, Toks[0].getKind());
182 ASSERT_EQ(tok::text, Toks[1].getKind());
186 ASSERT_EQ(tok::text, Toks[3].getKind());
188 ASSERT_EQ(tok::text, Toks[4].getKind());
190 ASSERT_EQ(tok::text, Toks[5].getKind());
194 ASSERT_EQ(tok::text, Toks[7].getKind())
    [all...]

Completed in 936 milliseconds

1 2 3 4