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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/dom/
Text.h 34 class Text : public CharacterData {
38 static PassRefPtr<Text> create(Document*, const String&);
39 static PassRefPtr<Text> createWithLengthLimit(Document*, const String&, unsigned positionInString, unsigned lengthLimit = defaultLengthLimit);
40 static PassRefPtr<Text> createEditingText(Document*, const String&);
42 PassRefPtr<Text> splitText(unsigned offset, ExceptionState&);
47 PassRefPtr<Text> replaceWholeText(const String&);
60 Text(TreeScope* treeScope, const String& data, ConstructionType type)
73 virtual PassRefPtr<Text> cloneWithData(const String&);
80 inline Text* toText(Node* node)
83 return static_cast<Text*>(node)
    [all...]
  /external/chromium_org/chrome/test/pyautolib/
omnibox_info.py 30 Sample info text:
67 u'text': u'google'}}
129 def Text(self):
130 """Get the text in the omnibox.
132 This need not be the same as the user-inputted text, since omnibox may
136 return self.Properties('text')
  /external/chromium_org/extensions/common/
install_warning.h 20 static InstallWarning Text(const std::string& message) {
  /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 {
  /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
  /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/clang/include/clang/Edit/
EditedSource.h 33 StringRef Text;
73 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 1 """A ScrolledText widget feels like a text widget but also has a
7 Configuration options are passed to the Text widget.
8 A Frame widget is inserted between the master and the text, to hold
10 Most methods calls are inherited from the Text widget; Pack, Grid and
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
19 class ScrolledText(Text):
26 Text.__init__(self, self.frame, **kw)
30 # Copy geometry methods of self.frame without overriding Text
32 text_meths = vars(Text).keys()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
__init__.py 13 import Text
23 'TEXT' : Text,
35 'TEXT' : ('Netscape.Text', 'Text'),
44 from Text import *
66 getbaseclasses(text)
74 getbaseclasses(StdSuites.Text_Suite.text)
82 'ctxt' : text,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 1 """A ScrolledText widget feels like a text widget but also has a
7 Configuration options are passed to the Text widget.
8 A Frame widget is inserted between the master and the text, to hold
10 Most methods calls are inherited from the Text widget; Pack, Grid and
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
19 class ScrolledText(Text):
26 Text.__init__(self, self.frame, **kw)
30 # Copy geometry methods of self.frame without overriding Text
32 text_meths = vars(Text).keys()

Completed in 1874 milliseconds

1 2 3 4 5