Searched refs:text (Results 101 - 125 of 6287) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/gui/splash/
H A DTextSprite.java26 * This Sprite represents a text.
32 private final VariableString[] text; field in class:TextSprite
39 * Creates a new TextSprite containing a single line of text.
40 * @param text the variable text string.
41 * @param x the variable x-coordinate of the lower-left corner of the text.
42 * @param y the variable y-coordinate of the lower-left corner of the text.
44 public TextSprite(VariableString text, argument
48 this(new VariableString[] { text }, new ConstantInt(0), x, y);
53 * Creates a new TextSprite containing a multiple lines of text
61 TextSprite(VariableString[] text, VariableInt spacing, VariableInt x, VariableInt y) argument
[all...]
/external/python/cpython2/Demo/cgi/
H A Dcgi0.sh5 echo Content-type: text/plain
/external/swiftshader/third_party/LLVM/test/MC/ELF/
H A Ddebug-line.s18 .text
H A Drelax-crash.s7 .text
H A Dalign-nops.s3 // Test that we get optimal nops in text
4 .text
18 // CHECK: (('sh_name', 0x00000001) # '.text'
/external/swiftshader/third_party/LLVM/test/MC/MachO/
H A Dzerofill-1.s3 .text
/external/tensorflow/tensorflow/contrib/text/python/ops/
H A D__init__.py15 """Various contrib ops related to text-processing."""
21 from tensorflow.contrib.text.python.ops.skip_gram_ops import skip_gram_sample
22 from tensorflow.contrib.text.python.ops.skip_gram_ops import skip_gram_sample_with_text_vocab
/external/python/cpython3/Lib/idlelib/idle_test/
H A Dtest_search.py33 self.text = tk.Text(self.root)
34 self.text.insert('1.0', 'Hello World!')
38 text = self.text
41 self.assertFalse(self.dialog.find_again(text))
45 self.assertTrue(self.dialog.find_again(text))
48 self.assertFalse(self.dialog.find_again(text))
51 self.assertTrue(self.dialog.find_again(text))
54 self.assertTrue(self.dialog.find_again(text))
59 self.assertTrue(self.dialog.find_again(text))
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A Doutput_text.properties21 # Specify defaults when method="text".
25 method=text
26 media-type=text/plain
/external/boringssl/linux-arm/crypto/fipsmodule/
H A Daesv8-armx32.S5 .text
/external/boringssl/src/util/fipstools/testdata/ppc64le-LoadToR0/
H A Din.s1 .text
/external/clang/test/Preprocessor/
H A Dpp-record.c5 #define STRINGIZE(text) STRINGIZE_I(text)
6 #define STRINGIZE_I(text) #text
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHyperRef.java19 public HyperRef (final String href, final String text, final boolean nbsp) argument
26 if ((text == null) || (text.length () == 0))
27 throw new IllegalArgumentException ("null or empty input: text");
32 setText (text, nbsp);
/external/fio/
H A Dcairo_text_helpers.h5 double fontsize, const char *text);
9 double fontsize, const char *text);
13 double fontsize, const char *text);
17 const char *text);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTransform.java10 package android.icu.text;
13 * Provide an interface for Transforms that focuses just on the transformation of the text.
H A DSymbolTable.java10 package android.icu.text;
11 import java.text.ParsePosition;
71 * text.length(), then return null. This indicates an isolated
73 * @param text the text to parse for the name
82 String parseReference(String text, ParsePosition pos, int limit); argument
/external/llvm/test/DebugInfo/AArch64/
H A Deh_frame.s3 .text
/external/llvm/test/MC/AArch64/
H A Darm64-mapping-across-sections.s3 .text
6 // .wibble should *not* inherit .text's mapping symbol. It's a completely different section.
14 // Changing back to .text should not emit a redundant $x
15 .text
19 // + .text to have $x at 0 and no others
25 // CHECK-NEXT: 00000000 .text 00000000 $x
H A Dmapping-across-sections.s3 .text
6 // .wibble should *not* inherit .text's mapping symbol. It's a completely different section.
14 // Changing back to .text should not emit a redundant $x
15 .text
19 // + .text to have $x at 0 and no others
25 // CHECK-NEXT: 00000000 .text 00000000 $x
/external/llvm/test/MC/COFF/
H A Dalign-nops.s3 // Test that we get optimal nops in text
4 .text
18 //CHECK: Name: .text
/external/llvm/test/MC/ELF/
H A Dalign-nops.s3 // Test that we get optimal nops in text
4 .text
19 // CHECK: Name: .text
H A Duleb.s6 .text
16 // ELF_32: Name: .text
20 // ELF_64: Name: .text
/external/swiftshader/third_party/LLVM/test/MC/COFF/
H A Dalign-nops.s3 // Test that we get optimal nops in text
4 .text
18 //CHECK: Name = .text
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DTestSuiteAdapter.java63 private static String trimChars(String text, int numOfChars) { argument
64 return text.substring(numOfChars, text.length() - numOfChars);
78 public static ITestCaseInput createMultiInput(String text) { argument
79 if(text == null) throw new IllegalArgumentException("null");
81 return new TestCaseInputMultiString(trimChars(text, 2));
93 public static ITestCaseOutput createStdOutput(String text) { argument
94 if(text == null) throw new IllegalArgumentException("null");
96 return new TestCaseOutputStdOut(trimChars(text, 1));
99 public static ITestCaseOutput createReturnOutput(String text) { argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DClassicToken.java38 protected String text; field in class:ClassicToken
52 text = oldToken.getText();
59 public ClassicToken(int type, String text) { argument
61 this.text = text;
64 public ClassicToken(int type, String text, int channel) { argument
66 this.text = text;
79 return text;
82 public void setText(String text) { argument
[all...]

Completed in 2376 milliseconds

1234567891011>>