Searched refs:text (Results 176 - 200 of 4837) sorted by relevance

1234567891011>>

/external/valgrind/coregrind/m_mach/
H A Dmach_traps-amd64-darwin.S37 .text
48 // .text
58 .text
68 .text
78 .text
88 .text
98 .text
108 .text
118 .text
128 .text
[all...]
/external/icu/icu4c/source/common/
H A Duchriter.cpp21 text(0)
29 text(textPtr)
37 text(textPtr)
47 text(textPtr)
53 text(that.text)
60 text = that.text;
78 return text == realThat.text
[all...]
/external/opencv3/samples/python2/
H A Ddemo.py25 def __init__(self, text, url_callback = None):
26 self.text = text
27 self.text.tag_config("link", foreground="blue", underline=1)
28 self.text.tag_bind("link", "<Enter>", self._enter)
29 self.text.tag_bind("link", "<Leave>", self._leave)
30 self.text.tag_bind("link", "<Button-1>", self._click)
39 # associated text widget
45 self.text.config(cursor="hand2")
47 self.text
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestCompatibility.java12 import java.text.AttributedCharacterIterator;
13 import java.text.AttributedString;
15 import com.ibm.icu.text.Bidi;
18 * Regression test for java.text.Bidi compatibility
25 void compareBidi(Bidi bidi, java.text.Bidi jbidi)
117 char[] text = bidi.getText();
118 if (Bidi.requiresBidi(text, 0, text.length) !=
119 java.text.Bidi.requiresBidi(text,
[all...]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
H A DIndicInputMethodImpl.java15 import java.text.AttributedCharacterIterator;
101 // Array used to hold the text to be sent.
102 // If the last character was not committed it is stored in text[0].
107 private char [] text = new char[4]; field in class:IndicInputMethodImpl
113 // the total valid characters in variable text currently.
213 int nuktaIndex = nuktaIndex(text[0]);
216 text[0] = NUKTA_FORM[nuktaIndex];
222 text[totalChars++] = currentChar;
232 text[totalChars++] = currentChar;
238 System.arraycopy(sub, 0, text, totalChar
299 private char [] text = null; field in class:IndicInputMethodImpl.ACIText
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCaseInputMultiString.java40 public TestCaseInputMultiString(String text) { argument
41 this.script = text;
H A DTestCaseInputString.java39 public TestCaseInputString(String text) { argument
40 this.script = text;
H A DTestCaseOutputReturn.java33 public TestCaseOutputReturn(String text) { argument
34 this.script = text;
H A DTestCaseOutputStdOut.java37 public TestCaseOutputStdOut(String text) { argument
38 this.script = text;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTreeAdaptor.cs69 public override IToken CreateToken( int tokenType, string text )
71 return new CommonToken( tokenType, text );
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
H A Dantlr.stg30 The text itself is coming out of the languages/*stg files, according to the chosen locale.
38 message(id, text) ::= "(<id>) <text>"
40 report(location, message, type) ::= "<type>(<message.id>): <location> <message.text>"
H A Dgnu.stg30 The text itself is coming out of the languages/*stg files, according to the chosen locale.
38 message(id, text) ::= "<text> (<id>)"
H A Dvs2005.stg30 The text itself is coming out of the languages/*stg files, according to the chosen locale.
38 message(id, text) ::= "error <id> : <text>"
40 report(location, message, type) ::= "<location> : <type> <message.id> : <message.text>"
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
H A Drcode.py59 def from_text(text):
60 """Convert text into an rcode.
62 @param text: the texual rcode
63 @type text: string
68 if text.isdigit():
69 v = int(text)
72 v = _by_text.get(text.upper())
109 """Convert rcode into text.
116 text = _by_value.get(value)
117 if text i
[all...]
/external/clang/include/clang/Edit/
H A DEditsReceiver.h25 virtual void insert(SourceLocation loc, StringRef text) = 0;
26 virtual void replace(CharSourceRange range, StringRef text) = 0;
/external/compiler-rt/lib/builtins/arm/
H A Drestore_vfp_d8_d15_regs.S22 .text
H A Dsave_vfp_d8_d15_regs.S22 .text
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DDoubleObjectPropertyEditor.java18 import java.text.MessageFormat;
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 text = text.trim();
68 if (text.length() == 0) {
73 if (text.equals("null")) {
80 value = Double.valueOf(text);
85 MessageFormat.format(ModelMessages.DoubleObjectPropertyEditor_notValidDouble, text));
H A DIntegerObjectPropertyEditor.java18 import java.text.MessageFormat;
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 text = text.trim();
68 if (text.length() == 0) {
73 if (text.equals("null")) {
80 value = Integer.valueOf(text);
85 MessageFormat.format(ModelMessages.IntegerObjectPropertyEditor_notValidInt, text));
H A DLongObjectPropertyEditor.java18 import java.text.MessageFormat;
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 text = text.trim();
68 if (text.length() == 0) {
73 if (text.equals("null")) {
80 value = Long.valueOf(text);
85 MessageFormat.format(ModelMessages.LongObjectPropertyEditor_notValidLong, text));
H A DShortObjectPropertyEditor.java18 import java.text.MessageFormat;
65 protected boolean setEditorText(Property property, String text) throws Exception { argument
66 text = text.trim();
68 if (text.length() == 0) {
73 if (text.equals("null")) {
80 value = Short.valueOf(text);
85 MessageFormat.format(ModelMessages.ShortObjectPropertyEditor_notValidShort, text));
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DTextContent.java20 public TextContent (final String text) argument
22 m_text = text;
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTimeZoneNamesFactoryImpl.java10 import android.icu.text.TimeZoneNames;
11 import android.icu.text.TimeZoneNames.Factory;
21 * @see android.icu.text.TimeZoneNames.Factory#getTimeZoneNames(android.icu.util.ULocale)
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNullTransliterator.java8 package android.icu.text;
11 * A transliterator that leaves text unchanged.
30 protected void handleTransliterate(Replaceable text, argument
36 * @see android.icu.text.Transliterator#addSourceTargetSet(boolean, android.icu.text.UnicodeSet, android.icu.text.UnicodeSet)
H A DReplaceable.java8 package android.icu.text;
14 * change a piece of text while retaining metadata. Metadata is data
37 * <li>Set the metadata of the new text to the metadata of the first
57 * Returns the number of 16-bit code units in the text.
58 * @return number of 16-bit code units in text
63 * Returns the 16-bit code unit at the given offset into the text.
66 * @return 16-bit code unit of text at given offset
72 * the text. This assumes the text is stored as 16-bit code units
78 * <code>android.icu.text
121 replace(int start, int limit, String text) argument
[all...]

Completed in 1013 milliseconds

1234567891011>>