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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/my.pkg/
pkg.go 3 var Text = "unset"
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/my.pkg/
pkg.go 3 var Text = "unset"
  /external/webrtc/tools/cpu/
cpu_mon.py 30 def Text(self):
75 pyplot.plot(s.samples, label=s.Text(), linewidth=2)
  /frameworks/base/libs/hwui/service/
GraphicsStatsService.h 41 Text,
  /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 {
  /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);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IToken.cs 38 /** <summary>Get the text of the token</summary> */
39 string Text
  /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 );
  /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/skia/experimental/sksg/geometry/
SkSGText.cpp 19 sk_sp<Text> Text::Make(sk_sp<SkTypeface> tf, const SkString& text) {
20 return sk_sp<Text>(new Text(std::move(tf), text));
23 Text::Text(sk_sp<SkTypeface> tf, const SkString& text)
25 , fText(text) {}
    [all...]
  /external/skqp/experimental/sksg/geometry/
SkSGText.cpp 19 sk_sp<Text> Text::Make(sk_sp<SkTypeface> tf, const SkString& text) {
20 return sk_sp<Text>(new Text(std::move(tf), text));
23 Text::Text(sk_sp<SkTypeface> tf, const SkString& text)
25 , fText(text) {}
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAtom.h 41 std::vector<std::pair<uint64_t, MCInst> > Text;
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
slice.go 8 "text/scanner"
38 func (s *Slice) Text() string {
39 return s.tokens[s.pos].text
51 // Cannot happen because we only have slices of already-scanned text,
69 // text/scanner strip the blanks for us, this is extremely rare, hard to fix, and not worth it.
stack.go 8 "text/scanner"
36 func (s *Stack) Text() string {
37 return s.tr[len(s.tr)-1].Text()
tokenizer.go 11 "text/scanner"
19 // A Tokenizer is a simple wrapping of text/scanner.Scanner, configured
21 // turning text from readers into tokens.
69 func (t *Tokenizer) Text() string {
  /prebuilts/go/darwin-x86/src/math/big/
ftoa.go 17 // Text converts the floating-point number x to a string according
33 // If format is a different character, Text returns a "%" followed by the
43 func (x *Float) Text(format byte, prec int) string {
51 // String formats x like x.Text('g', 10).
54 return x.Text('g', 10)
58 // as generated by x.Text, and returns the extended buffer.
383 // 'g', 'G') as well as 'p' and 'v'. See (*Float).Text for the
400 // (*Float).Text doesn't support 'F'; handle like 'f'
intconv.go 15 // Text returns the string representation of x in the given base.
20 func (x *Int) Text(base int) string {
28 // x.Text(base), to buf and returns the extended buffer.
37 return x.Text(10)
40 // write count copies of text to s
41 func writeMultiple(s fmt.State, text string, count int) {
42 if len(text) > 0 {
43 b := []byte(text)
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
slice.go 8 "text/scanner"
38 func (s *Slice) Text() string {
39 return s.tokens[s.pos].text
51 // Cannot happen because we only have slices of already-scanned text,
69 // text/scanner strip the blanks for us, this is extremely rare, hard to fix, and not worth it.
stack.go 8 "text/scanner"
36 func (s *Stack) Text() string {
37 return s.tr[len(s.tr)-1].Text()
tokenizer.go 11 "text/scanner"
19 // A Tokenizer is a simple wrapping of text/scanner.Scanner, configured
21 // turning text from readers into tokens.
69 func (t *Tokenizer) Text() string {
  /prebuilts/go/linux-x86/src/math/big/
ftoa.go 17 // Text converts the floating-point number x to a string according
33 // If format is a different character, Text returns a "%" followed by the
43 func (x *Float) Text(format byte, prec int) string {
51 // String formats x like x.Text('g', 10).
54 return x.Text('g', 10)
58 // as generated by x.Text, and returns the extended buffer.
383 // 'g', 'G') as well as 'p' and 'v'. See (*Float).Text for the
400 // (*Float).Text doesn't support 'F'; handle like 'f'
intconv.go 15 // Text returns the string representation of x in the given base.
20 func (x *Int) Text(base int) string {
28 // x.Text(base), to buf and returns the extended buffer.
37 return x.Text(10)
40 // write count copies of text to s
41 func writeMultiple(s fmt.State, text string, count int) {
42 if len(text) > 0 {
43 b := []byte(text)

Completed in 1426 milliseconds

1 2 3 4 5 6 7 8 91011>>