HomeSort by relevance Sort by last modified time
    Searched defs:Text (Results 76 - 100 of 486) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/bufio/
scan.go 15 // a file of newline-delimited lines of text. Successive calls to
59 // as always, holds unprocessed text.
104 // Text returns the most recent token generated by a call to Scan
106 func (s *Scanner) Text() string {
121 // available through the Bytes or Text method. It returns false when the
335 // text, stripped of any trailing end-of-line marker. The returned line may
382 // space-separated word of text, with surrounding spaces deleted. It will
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
input.go 13 "text/scanner"
29 text string // Text of last token returned by Next.
80 in.Error(append(args, "; got", strconv.Quote(in.Stack.Text()))...)
99 in.text = in.peekText
114 name := in.Stack.Text()
124 // We're skipping text but have run out of input with no #endif.
129 in.text = in.Stack.Text()
138 func (in *Input) Text() string
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
objfile.go 20 text() (textStart uint64, text []byte, err error)
42 Code rune // nm code (T for text, D for data, and so on)
101 func (f *File) Text() (uint64, []byte, error) {
102 return f.entries[0].Text()
154 func (e *Entry) Text() (uint64, []byte, error) {
155 return e.raw.text()
  /prebuilts/go/linux-x86/src/bufio/
scan.go 15 // a file of newline-delimited lines of text. Successive calls to
59 // as always, holds unprocessed text.
104 // Text returns the most recent token generated by a call to Scan
106 func (s *Scanner) Text() string {
121 // available through the Bytes or Text method. It returns false when the
335 // text, stripped of any trailing end-of-line marker. The returned line may
382 // space-separated word of text, with surrounding spaces deleted. It will
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
input.go 13 "text/scanner"
29 text string // Text of last token returned by Next.
80 in.Error(append(args, "; got", strconv.Quote(in.Stack.Text()))...)
99 in.text = in.peekText
114 name := in.Stack.Text()
124 // We're skipping text but have run out of input with no #endif.
129 in.text = in.Stack.Text()
138 func (in *Input) Text() string
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
objfile.go 20 text() (textStart uint64, text []byte, err error)
42 Code rune // nm code (T for text, D for data, and so on)
101 func (f *File) Text() (uint64, []byte, error) {
102 return f.entries[0].Text()
154 func (e *Entry) Text() (uint64, []byte, error) {
155 return e.raw.text()
  /build/blueprint/parser/
ast.go 20 "text/scanner"
448 // Return the text of the comment with // or /* and */ stripped
449 func (c Comment) Text() string {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/
IfrOnTheFly.c 5 which accompanies this distribution. The full text of the license may be found at
282 Create a line of text
286 String - First string of the text
288 String2 - Second string of the text
290 String3 - Help string of the text
292 Flags - Flag of the text
294 Key - Key of the text
296 FormBuffer - The form where this text adds to
302 EFI_SUCCESS - Text successfully created
307 EFI_IFR_TEXT Text;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
UefiIfrOpCodeCreation.c 6 which accompanies this distribution. The full text of the license may be found at
213 EFI_IFR_TEXT Text;
222 Text.Header.OpCode = EFI_IFR_TEXT_OP;
223 Text.Header.Length = (UINT8) sizeof (EFI_IFR_TEXT);
224 Text.Header.Scope = 0;
225 Text.Statement.Prompt = Prompt;
226 Text.Statement.Help = Help;
227 Text.TextTwo = TextTwo;
230 EfiCopyMem (LocalBuffer, &Text, sizeof (EFI_IFR_TEXT));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
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/Tree/
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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 61 public string Text
63 /** <summary>Return the text matched so far for the current token or any text override.</summary> */
66 if ( state.text != null )
68 return state.text;
72 /** <summary>Set the complete text of this token; it wipes any previous changes to the text.</summary> */
75 state.text = value;
125 state.text = null;
143 state.text = null
    [all...]
  /external/clang/include/clang/Edit/
Commit.h 35 StringRef Text;
67 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
69 bool insertAfterToken(SourceLocation loc, StringRef text,
71 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
73 bool insertBefore(SourceLocation loc, StringRef text) {
74 return insert(loc, text, /*afterToken=*/false,
84 bool replace(CharSourceRange range, StringRef text);
86 bool replaceText(SourceLocation loc, StringRef text,
101 bool replace(SourceRange TokenRange, StringRef text) {
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 159 * Text question.
161 private static class Text extends DNSQuestion {
162 Text(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
253 return new Text(name, type, recordClass, unique);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
parsetree.py 66 def __init__(self, keyword, isend, text, **kwargs):
68 self.text = text
77 code = ast.PythonFragment(text, **self.exception_kwargs)
103 self.text,
108 class Text(Node):
109 """defines plain text in the template."""
112 super(Text, self).__init__(**kwargs)
116 return "Text(%r, %r)" % (self.content, (self.lineno, self.pos))
135 def __init__(self, text, ismodule, **kwargs)
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
mock_tk.py 90 class Text(object):
91 """A semi-functional non-gui replacement for tkinter.Text text editors.
93 The mock's data model is that a text is a list of \n-terminated lines.
100 For testing, we are not concerned with Tk Text's treatment of,
104 '''Initialize mock, non-gui, text-only Text widget.
107 There are just a few Text-only options that affect text behavior.
112 "Return string version of index decoded according to current text.
    [all...]
  /external/python/cpython3/Lib/idlelib/idle_test/
mock_tk.py 90 class Text:
91 """A semi-functional non-gui replacement for tkinter.Text text editors.
93 The mock's data model is that a text is a list of \n-terminated lines.
100 For testing, we are not concerned with Tk Text's treatment of,
104 '''Initialize mock, non-gui, text-only Text widget.
107 There are just a few Text-only options that affect text behavior.
112 "Return string version of index decoded according to current text.
    [all...]
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement.h 63 explicit XmlText(const std::string& text) :
65 text_(text) {
77 const std::string& Text() const { return text_; }
78 void SetText(const std::string& text);
80 void AddText(const std::string& text);
128 void SetBodyText(const std::string& text);
203 void AddText(const std::string& text);
204 void AddText(const std::string& text, int depth);
  /frameworks/base/libs/hwui/
LayerBuilder.h 51 Text,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Edit/
Commit.h 35 StringRef Text;
67 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
69 bool insertAfterToken(SourceLocation loc, StringRef text,
71 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
73 bool insertBefore(SourceLocation loc, StringRef text) {
74 return insert(loc, text, /*afterToken=*/false,
84 bool replace(CharSourceRange range, StringRef text);
86 bool replaceText(SourceLocation loc, StringRef text,
101 bool replace(SourceRange TokenRange, StringRef text) {
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Edit/
Commit.h 35 StringRef Text;
67 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
69 bool insertAfterToken(SourceLocation loc, StringRef text,
71 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
73 bool insertBefore(SourceLocation loc, StringRef text) {
74 return insert(loc, text, /*afterToken=*/false,
84 bool replace(CharSourceRange range, StringRef text);
86 bool replaceText(SourceLocation loc, StringRef text,
101 bool replace(SourceRange TokenRange, StringRef text) {
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Edit/
Commit.h 35 StringRef Text;
67 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
69 bool insertAfterToken(SourceLocation loc, StringRef text,
71 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
73 bool insertBefore(SourceLocation loc, StringRef text) {
74 return insert(loc, text, /*afterToken=*/false,
84 bool replace(CharSourceRange range, StringRef text);
86 bool replaceText(SourceLocation loc, StringRef text,
101 bool replace(SourceRange TokenRange, StringRef text) {
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Edit/
Commit.h 35 StringRef Text;
67 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
69 bool insertAfterToken(SourceLocation loc, StringRef text,
71 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
73 bool insertBefore(SourceLocation loc, StringRef text) {
74 return insert(loc, text, /*afterToken=*/false,
84 bool replace(CharSourceRange range, StringRef text);
86 bool replaceText(SourceLocation loc, StringRef text,
101 bool replace(SourceRange TokenRange, StringRef text) {
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Edit/
Commit.h 35 StringRef Text;
67 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
69 bool insertAfterToken(SourceLocation loc, StringRef text,
71 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
73 bool insertBefore(SourceLocation loc, StringRef text) {
74 return insert(loc, text, /*afterToken=*/false,
84 bool replace(CharSourceRange range, StringRef text);
86 bool replaceText(SourceLocation loc, StringRef text,
101 bool replace(SourceRange TokenRange, StringRef text) {
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Edit/
Commit.h 35 StringRef Text;
67 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
69 bool insertAfterToken(SourceLocation loc, StringRef text,
71 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
73 bool insertBefore(SourceLocation loc, StringRef text) {
74 return insert(loc, text, /*afterToken=*/false,
84 bool replace(CharSourceRange range, StringRef text);
86 bool replaceText(SourceLocation loc, StringRef text,
101 bool replace(SourceRange TokenRange, StringRef text) {
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
    [all...]

Completed in 2100 milliseconds

1 2 34 5 6 7 8 91011>>