HomeSort by relevance Sort by last modified time
    Searched full:text (Results 251 - 275 of 10516) sorted by null

<<11121314151617181920>>

  /prebuilt/windows/sdl/host/lib/
libSDL.dll.a 18 L(.text? ?.idata$7?
19 ?.idata$5??.idata$4??.idata$6???%???SDL_mutexV4.text.idata$7.idata$5.idata$4.idata$6"1_SDL_mutexV__imp__SDL_mutexV__head_SDL_dll
21 L(.text? ?.idata$7?
22 ?.idata$5??.idata$4??.idata$6???%???SDL_mutexP4.text.idata$7.idata$5.idata$4.idata$6"1_SDL_mutexP__imp__SDL_mutexP__head_SDL_dll
24 L(.text? ?.idata$7?
25 ?.idata$5??.idata$4??.idata$6???%???SDL_WriteLE64.text.idata$7.idata$5.idata$4.idata$6(7_SDL_WriteLE64__imp__SDL_WriteLE64__head_SDL_dll
27 L(.text? ?.idata$7?
28 ?.idata$5??.idata$4??.idata$6???%???SDL_WriteLE32.text.idata$7.idata$5.idata$4.idata$6(7_SDL_WriteLE32__imp__SDL_WriteLE32__head_SDL_dll
30 L(.text? ?.idata$7?
31 ?.idata$5??.idata$4??.idata$6???%???SDL_WriteLE16.text.idata$7.idata$5.idata$4.idata$6 (…)
    [all...]
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_DecimalFormat.java 18 package org.apache.harmony.text.tests.java.text;
20 import java.text.DecimalFormat;
21 import java.text.NumberFormat;
46 String text = "$10,000,000.76"; local
48 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY,
50 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER,
52 t_FormatWithField(2, format, number, text,
54 t_FormatWithField(3, format, number, text,
56 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION
    [all...]
  /cts/tests/res/layout/
horizontal_scrollview.xml 31 android:text="@string/vertical_text_1"/>
36 android:text="@string/vertical_text_2"/>
41 android:text="@string/vertical_text_3"/>
46 android:text="@string/vertical_text_1"/>
51 android:text="@string/vertical_text_2"/>
56 android:text="@string/vertical_text_3"/>
61 android:text="@string/vertical_text_1"/>
66 android:text="@string/vertical_text_2"/>
71 android:text="@string/vertical_text_3"/>
76 android:text="@string/vertical_text_1"/
    [all...]
scrollview_layout.xml 31 android:text="@string/vertical_text_1"/>
36 android:text="@string/vertical_text_2"/>
41 android:text="@string/vertical_text_3"/>
46 android:text="@string/vertical_text_1"/>
51 android:text="@string/vertical_text_2"/>
56 android:text="@string/vertical_text_3"/>
61 android:text="@string/vertical_text_1"/>
66 android:text="@string/vertical_text_2"/>
71 android:text="@string/vertical_text_3"/>
76 android:text="@string/vertical_text_1"/
    [all...]
  /frameworks/base/awt/java/awt/event/
InputMethodEvent.java 26 import java.text.AttributedCharacterIterator;
48 private AttributedCharacterIterator text; field in class:InputMethodEvent
61 AttributedCharacterIterator text,
65 this(src, id, 0l, text, commitedCharCount, caret, visiblePos);
69 AttributedCharacterIterator text,
79 if ((id == CARET_POSITION_CHANGED) && (text != null)) {
80 // awt.18F=Text must be null for CARET_POSITION_CHANGED
83 if ((text != null) &&
86 (text.getEndIndex() - text.getBeginIndex()))))
    [all...]
  /frameworks/base/services/java/com/android/server/status/
IconData.java 23 * Indicates ths item represents a piece of text.
25 public static final int TEXT = 1;
33 * The type of this item. One of TEXT, ICON, or LEVEL_ICON.
64 * The text associated with the icon. Valid if this is a TEXT type.
66 public CharSequence text; field in class:IconData
83 public static IconData makeText(String slot, CharSequence text) {
85 data.type = TEXT;
87 data.text = text;
    [all...]
Ticker.java 24 import android.text.StaticLayout;
25 import android.text.Layout.Alignment;
26 import android.text.TextPaint;
27 import android.text.TextUtils;
45 CharSequence text; field in class:Ticker.Segment
66 /** returns null if there is no more text */
68 if (this.current > this.text.length()) {
71 CharSequence substr = this.text.subSequence(this.current, this.text.length());
81 " text=" + text)
157 TextView text = (TextView)mTextSwitcher.getChildAt(0); local
206 CharSequence text = seg.getText(); local
    [all...]
  /build/tools/droiddoc/src/
Comment.java 62 public Comment(String text, ContainerInfo base, SourcePositionInfo sp)
64 mText = text;
66 // sp now points to the end of the text, not the beginning!
67 mPosition = SourcePositionInfo.findBeginning(sp, text);
70 private void parseRegex(String text)
74 m = LEADING_WHITESPACE.matcher(text);
76 text = m.group(1);
78 m = TAG_BEGIN.matcher(text);
85 tag(text, start, end);
89 end = text.length()
221 String text = m.group(1); local
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
QwertyKeyListenerTest.java 17 package android.text.method.cts;
29 import android.text.Editable;
30 import android.text.InputType;
31 import android.text.Selection;
32 import android.text.Spannable;
33 import android.text.SpannableStringBuilder;
34 import android.text.method.QwertyKeyListener;
35 import android.text.method.TextKeyListener;
36 import android.text.method.TextKeyListener.Capitalize;
76 * 1. press KEYCODE_H, text is "h"
    [all...]
MultiTapKeyListenerTest.java 17 package android.text.method.cts;
29 import android.text.Editable;
30 import android.text.InputType;
31 import android.text.Selection;
32 import android.text.Spannable;
33 import android.text.SpannableStringBuilder;
34 import android.text.method.MultiTapKeyListener;
35 import android.text.method.TextKeyListener.Capitalize;
67 args = {android.text.method.TextKeyListener.Capitalize.class, boolean.class}
86 final Spannable text = new SpannableStringBuilder("123456") local
110 final Spannable text = new SpannableStringBuilder("123456"); local
473 final Spannable text = new SpannableStringBuilder("123456"); local
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_DecimalFormat.java 20 import java.text.DecimalFormat;
21 import java.text.NumberFormat;
45 String text = "$10,000,000.76"; local
47 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY,
49 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER,
51 t_FormatWithField(2, format, number, text,
53 t_FormatWithField(3, format, number, text,
55 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION,
58 // test fields that are not included in the formatted text
59 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0
    [all...]
  /external/icu4c/common/unicode/
ubrk.h 16 * A text-break iterator.
39 * of boundaries in text. Pointer to a UBreakIterator maintain a
40 * current position and scan over text returning the index of characters
43 * Line boundary analysis determines where a text string can be broken
52 * well as within text editing applications that allow the user to
60 * that should be treated as character-like units for many text operations.
61 * Please see Unicode Standard Annex #29, Unicode Text Segmentation,
67 * when title casing the text.
69 * The text boundary positions are found according to the rules
70 * described in Unicode Standard Annex #29, Text Boundaries, an
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 17 package android.text.util;
19 import android.text.method.LinkMovementMethod;
20 import android.text.method.MovementMethod;
21 import android.text.style.URLSpan;
22 import android.text.Spannable;
23 import android.text.SpannableString;
24 import android.text.Spanned;
39 * Linkify take a piece of text and a regular expression and turns all of the
40 * regex matches in the text into clickable links. This is particularly
46 * will have the scheme prepended to the matched text when the clickable ur
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 3 CREATE TABLE _deleted_groups (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
4 CREATE TABLE _deleted_people (_sync_version TEXT,_sync_id TEXT,_sync_account TEXT,_sync_mark INTEGER);
5 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
8 CREATE TABLE android_metadata (locale TEXT);
10 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TE (…)
    [all...]
  /external/srec/portable/include/
LCHAR.h 39 * @param text Text to trim
42 PORTABLE_API ESR_ReturnCode lstrtrim(LCHAR* text);
45 * Inserts text into a string.
59 * @param text String to process
64 PORTABLE_API ESR_ReturnCode lstrreplace(LCHAR* text, const LCHAR source, const LCHAR target);
69 * @param text String to parse
72 * @return ESR_INVALID_ARGUMENT is text is null or does not represent a number
74 PORTABLE_API ESR_ReturnCode lstrtoi(const LCHAR* text, int* result, int base);
79 * @param text String to pars
    [all...]
  /build/tools/droiddoc/templates-pdk/
head_tag.cs 2 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
11 <link href="<?cs var:toroot ?>assets/android-developer-docs-devguide.css" rel="stylesheet" type="text/css" />
12 <link href="<?cs var:toroot ?>assets-pdk/pdk-local.css" rel="stylesheet" type="text/css" />
13 <script src="<?cs var:toroot ?>assets/search_autocomplete.js" type="text/javascript"></script>
14 <script src="<?cs var:toroot ?>assets/jquery-resizable.min.js" type="text/javascript"></script>
15 <script src="<?cs var:toroot ?>assets/android-developer-docs.js" type="text/javascript"></script>
16 <script type="text/javascript">
19 <script type="text/javascript">
31 <script type="text/javascript>
37 <style type="text/css"
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
PhoneNumberFormattingTextWatcherTest.java 25 import android.text.Editable;
45 args = {android.text.Editable.class}
54 TextView text = new TextView(getContext()); local
55 text.addTextChangedListener(new PhoneNumberFormattingTextWatcher());
57 text.setText("+15551212");
58 assertEquals("+1-555-1212", text.getText().toString());
61 Editable edit = (Editable) text.getText();
63 assertEquals("+1-551-212", text.getText().toString());
66 text.setText("+1-555-1212");
67 assertEquals("+1-555-1212", text.getText().toString())
    [all...]
  /development/samples/ApiDemos/res/layout/
table_layout_11.xml 25 android:text="@string/table_layout_7_open"
28 android:text="@string/table_layout_7_open_shortcut"
36 android:text="@string/table_layout_7_save"
40 android:text="@string/table_layout_7_save_shortcut"
49 android:text="@string/table_layout_7_save_as"
54 android:text="@string/table_layout_7_save_as_shortcut"
66 android:text="@string/table_layout_7_x"
69 android:text="@string/table_layout_7_import"
79 android:text="@string/table_layout_7_export"
84 android:text="@string/table_layout_7_export_shortcut
    [all...]
table_layout_5.xml 25 android:text="@string/table_layout_5_open"
28 android:text="@string/table_layout_5_open_shortcut"
35 android:text="@string/table_layout_5_save"
38 android:text="@string/table_layout_5_save_shortcut"
45 android:text="@string/table_layout_5_save_as"
48 android:text="@string/table_layout_5_save_as_shortcut"
59 android:text="@string/table_layout_5_import"
65 android:text="@string/table_layout_5_export"
68 android:text="@string/table_layout_5_export_shortcut"
79 android:text="@string/table_layout_5_quit
    [all...]
  /external/bluetooth/glib/tests/
base64-test.c 23 char *text; local
27 text = g_malloc (length * 4);
37 line_break, text + len, &state, &save);
40 len += g_base64_encode_close (line_break, text + len, &state, &save);
56 p = text;
81 g_free (text);
88 char *text; local
92 text = g_base64_encode (data, length);
93 data2 = g_base64_decode (text, &len);
94 g_free (text);
    [all...]
  /external/webkit/WebCore/css/
MediaQuery.cpp 71 String text; local
74 text += "only ";
77 text += "not ";
83 text += m_mediaType;
86 text += " and (";
87 text += exp->mediaFeature();
89 text += ": ";
90 text += exp->value()->cssText();
92 text += ")";
94 return text;
    [all...]
  /external/webkit/WebCore/platform/brew/
MIMETypeRegistryBrew.cpp 43 { "css", "text/css" },
45 { "html", "text/html" },
46 { "htm", "text/html" },
55 { "text", "text/plain" },
56 { "txt", "text/plain" },
58 { "xml", "text/xml" },
59 { "xsl", "text/xsl" },
75 // unknown, let's just assume plain text
76 return "text/plain"
    [all...]
  /external/webkit/WebCore/platform/wx/
MimeTypeRegistryWx.cpp 39 { "css", "text/css" },
41 { "htm", "text/html" },
42 { "html", "text/html" },
51 { "text", "text/plain" },
52 { "txt", "text/plain" },
54 { "xml", "text/xml" },
55 { "xsl", "text/xsl" },
69 // unknown, let's just assume plain text
70 return "text/plain"
    [all...]
  /external/expat/tests/
runtests.c 71 _expect_failure(char *text, enum XML_Error errorCode, char *errorMessage,
74 if (XML_Parse(parser, text, strlen(text), XML_TRUE) == XML_STATUS_OK)
82 #define expect_failure(text, errorCode, errorMessage) \
83 _expect_failure((text), (errorCode), (errorMessage), \
157 char text[] = "<doc>\0</doc>"; local
160 if (XML_Parse(parser, text, sizeof(text) - 1, XML_TRUE) == XML_STATUS_OK)
180 char *text = "\357\273\277<e/>"; local
182 if (XML_Parse(parser, text, strlen(text), XML_TRUE) == XML_STATUS_ERROR
189 char text[] = "\\376\\377\\0<\\0e\\0\/\\0>"; local
198 char text[] = "\\377\\376<\\0e\\0\/\\0>\\0"; local
260 char *text = local
272 char *text = local
282 char *text = local
292 char *text = local
302 char *text = local
316 char *text = "<doc>\\xEF\\xBA\\xBF<\/doc>"; local
328 char text[100]; local
352 char text[] = local
368 char text[] = local
391 char *text = local
408 char *text = local
429 char *text = "<tag><\/tag>"; local
476 char *text = local
512 char *text = local
532 char *text = local
558 char *text = local
600 char *text = "<a><b><c\/><\/b><d><f\/><\/d><\/a>"; local
704 char *text = local
758 char *text = local
780 char *text = local
800 char *text = local
816 char *text = local
839 char *text = local
857 char *text = (char *)XML_GetUserData(parser); local
875 char *text = local
895 char *text = local
912 char *text = local
927 char *text = local
959 char *text = local
975 char *text = local
1031 char *text = long_character_data_text; local
1052 char *text = long_character_data_text; local
1120 char *text = local
1175 char *text = local
1196 char *text = local
1239 char *text = "<e xmlns='http:\/\/xml.libexpat.org\/'><\/e>"; local
1258 char *text; local
1281 char *text = local
1303 char *text = local
1318 char *text = local
1331 char *text = local
1348 char *text = local
1371 char *text = local
1383 char *text = local
1396 char *text = "<doc a:attr=''\/>"; local
1406 char *text = "<a:doc\/>"; local
    [all...]
  /external/icu4c/i18n/
strmatch.h 28 * UnicodeReplacer API, allowing it to emit the matched text as
29 * output. Since the match text may contain flexible match elements,
30 * such as UnicodeSets, the emitted text is not the match pattern, but
31 * instead a substring of the actual matched text. Following
32 * convention, the output text is the leftmost match seen up to this
50 * @param start inclusive start index of text to be replaced
51 * @param limit exclusive end index of text to be replaced;
97 * @param text the text to be matched
98 * @param offset on input, the index into text at which to begi
    [all...]

Completed in 1916 milliseconds

<<11121314151617181920>>