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

12 3 4 5 6 7 8 91011>>

  /external/ImageMagick/coders/
ttf.c 175 *text;
178 *Text = (char *)
264 (void) FormatLocaleString(buffer,MagickPathExtent," text 10,%.20g '",(double) y);
266 text=EscapeString(Text,'"');
267 ConcatenateString(&draw_info->primitive,text);
268 text=DestroyString(text);
271 y+=20*(ssize_t) MultilineCensus((char *) Text)+20;
276 (void) FormatLocaleString(buffer,MagickPathExtent," text 10,%.20g '%.20g'\n"
171 *text; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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/CSharp3/Sources/Antlr3.Runtime/
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/clang/include/clang/Edit/
EditedSource.h 35 StringRef Text;
75 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
  /external/llvm/tools/llvm-cov/
CoverageViewOptions.h 20 Text,
  /external/python/cpython2/Lib/idlelib/idle_test/
test_text.py 1 # Test mock_tk.Text class against tkinter.Text class by running same tests with both.
12 Text = None
14 self.text = self.Text()
17 self.assertEqual(self.text.get('1.0'), '\n')
18 self.assertEqual(self.text.get('end'), '')
21 index = self.text.index
31 index = self.text.index
32 self.text.insert('1.0', self.hw
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyOutput.java 29 * There are two types of expected output, an integer code point and a string output text.
41 return new Text(outputText);
46 abstract boolean hasSameKeyOutput(final String text);
78 boolean hasSameKeyOutput(final String text) {
79 return StringUtils.codePointCount(text) == 1 && text.codePointAt(0) == mCode;
115 * This class represents a string output text.
117 private static class Text extends ExpectedKeyOutput {
120 Text(final String text) { mText = text;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Edit/
EditedSource.h 35 StringRef Text;
75 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Edit/
EditedSource.h 35 StringRef Text;
75 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiIfrSupportLib/
IfrOpCodeCreation.c 5 which accompanies this distribution. The full text of the license may be found at
75 Create a Text opcode independent of string creation
82 StringToken - First string token of the text
84 StringTokenTwo - Second string token of the text
86 StringTokenThree - Help string token of the text
88 Flags - Flag of the text
90 Key - Key of the text
92 FormBuffer - Output of text as a form
96 EFI_SUCCESS - Text created to be a form
100 EFI_IFR_TEXT Text;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
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/Tree/
CommonTree.cs 162 public override string Text
169 return Token.Text;
293 return Token.Text;
ITree.cs 153 string 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...]
  /external/llvm/include/llvm/LineEditor/
LineEditor.h 51 /// Insert Text at the cursor position.
59 /// The text to insert.
60 std::string Text;
72 /// The text to insert. If the user has already input some of the
73 /// completion, this should only include the rest of the text.
  /external/llvm/unittests/Bitcode/
BitReaderTest.cpp 103 char *Text = new char[InputSize];
104 std::memset(Text, 'a', InputSize);
105 Text[InputSize - 1] = '\0';
106 StringRef Input(Text);
126 delete[] Text;
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITDebugRegisterer.cpp 80 // Copy the binary into the .text section. This isn't necessary, but it's
82 ELFSection &Text = EW.getTextSection(const_cast<Function *>(F));
83 Text.Addr = (uint64_t)I.FnStart;
86 Text.getData().assign(I.FnStart, I.FnEnd);
107 FnSym->SectionIdx = Text.SectionIdx;
  /libcore/benchmarks/src/benchmarks/regression/
BreakIteratorBenchmark.java 20 import java.text.BreakIterator;
25 public static enum Text {
40 final String text; field in class:BreakIteratorBenchmark.Text
42 Text(Locale locale, String text) {
43 this.text = text;
48 @Param private Text text; field in class:BreakIteratorBenchmark
52 BreakIterator it = BreakIterator.getLineInstance(text.locale)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LineEditor/
LineEditor.h 51 /// Insert Text at the cursor position.
59 /// The text to insert.
60 std::string Text;
72 /// The text to insert. If the user has already input some of the
73 /// completion, this should only include the rest of the text.

Completed in 648 milliseconds

12 3 4 5 6 7 8 91011>>