Searched defs:Text (Results 1 - 25 of 105) sorted by path

12345

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs88 public string Text { property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
173 return "[" + Text + "/<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + ",@" + index + "]";
199 public override string Text { property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTree.cs37 using StringBuilder = System.Text.StringBuilder;
124 public abstract string Text { property in class:Antlr.Runtime.Tree.BaseTree
H A DCommonErrorNode.cs67 public override string Text { property in class:Antlr.Runtime.Tree.CommonErrorNode
106 ", resync=" + Text + ">";
108 return "<mismatched token: " + trappedException.Token + ", resync=" + Text + ">";
111 ", resync=" + Text + ">";
113 return "<error: " + Text + ">";
H A DCommonTree.cs132 public override string Text { property in class:Antlr.Runtime.Tree.CommonTree
137 return token.Text;
224 return token.Text;
H A DITree.cs144 string Text { property in interface:Antlr.Runtime.Tree.ITree
H A DParseTree.cs36 using StringBuilder = System.Text.StringBuilder;
55 public override string Text { property in class:Antlr.Runtime.Tree.ParseTree
95 return t.Text;
110 buf.Append(hidden.Text);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DClassicToken.cs59 text = oldToken.Text;
78 public string Text { property in class:Antlr.Runtime.ClassicToken
163 string txt = Text;
H A DCommonToken.cs35 using Regex = System.Text.RegularExpressions.Regex;
86 text = oldToken.Text;
100 public string Text { property in class:Antlr.Runtime.CommonToken
203 string txt = Text;
217 text = Text;
H A DIToken.cs37 string Text { property in interface:Antlr.Runtime.IToken
H A DLexer.cs60 public string Text { property in class:Antlr.Runtime.Lexer
202 t.Text = state.text;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs94 public string Text property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
208 return "[" + Text + "/<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + ",@" + index + "]";
237 public override string Text property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs61 public string Text property in class:Antlr.Runtime.SlimLexer
253 //Text = state.text
260 //t.Text = state.text;
H A DSlimToken.cs55 string IToken.Text
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DClassicToken.cs63 text = oldToken.Text;
84 public string Text property in class:Antlr.Runtime.ClassicToken
198 string txt = Text;
H A DCommonToken.cs36 using Regex = System.Text.RegularExpressions.Regex;
93 text = oldToken.Text;
108 public string Text property in class:Antlr.Runtime.CommonToken
239 string txt = Text;
257 text = Text;
H A DIToken.cs39 string Text property in interface:Antlr.Runtime.IToken
H A DLexer.cs65 public string Text property in class:Antlr.Runtime.Lexer
244 t.Text = state.text;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBaseTree.cs38 using StringBuilder = System.Text.StringBuilder;
149 public abstract string Text property in class:Antlr.Runtime.Tree.BaseTree
H A DCommonErrorNode.cs73 public override string Text property in class:Antlr.Runtime.Tree.CommonErrorNode
128 ", resync=" + Text + ">";
132 return "<mismatched token: " + trappedException.Token + ", resync=" + Text + ">";
137 ", resync=" + Text + ">";
139 return "<error: " + Text + ">";
H A DCommonTree.cs162 public override string Text property in class:Antlr.Runtime.Tree.CommonTree
169 return Token.Text;
293 return Token.Text;
H A DITree.cs153 string Text property in interface:Antlr.Runtime.Tree.ITree
H A DParseTree.cs37 using StringBuilder = System.Text.StringBuilder;
58 public override string Text property in class:Antlr.Runtime.Tree.ParseTree
114 return t.Text;
132 buf.Append( hidden.Text );
/external/chromium_org/chrome/browser/first_run/
H A Dfirst_run_browsertest.cc123 template<const char Text[]>
131 SetMasterPreferencesForTest(Text); variable
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DText.h33 class Text : public CharacterData { class in namespace:blink
38 static PassRefPtrWillBeRawPtr<Text> create(Document&, const String&);
39 static PassRefPtrWillBeRawPtr<Text> createEditingText(Document&, const String&);
46 PassRefPtrWillBeRawPtr<Text> splitText(unsigned offset, ExceptionState&);
51 PassRefPtrWillBeRawPtr<Text> replaceWholeText(const String&);
53 void recalcTextStyle(StyleRecalcChange, Text* nextTextSibling);
64 Text(TreeScope& treeScope, const String& data, ConstructionType type) function in class:blink::Text
75 virtual PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&);
82 DEFINE_NODE_TYPE_CASTS(Text, isTextNode());

Completed in 332 milliseconds

12345