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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/luni/src/test/java/java/text/
AllTests.java 17 package java.text;
25 suite.addTestSuite(java.text.DecimalFormatTest.class);
26 suite.addTestSuite(java.text.NormalizerTest.class);
27 suite.addTestSuite(java.text.NumberFormatTest.class);
DecimalFormatTest.java 17 package java.text;
  /external/icu4c/common/unicode/
schriter.h 72 * "textBegin" and "textEnd" don't form a valid range on "text" (i.e.,
73 * textBegin >= textEnd or either is negative or greater than text.size()),
144 * @param result Receives a copy of the text under iteration.
182 UnicodeString text; member in class:StringCharacterIterator
uchriter.h 38 * text is only aliased, not adopted (the
49 * text is only aliased, not adopted (the
65 * text is only aliased, not adopted (the
195 * in the text-storage object the iterator refers to, and
197 * @param position the position within the text-storage object
206 * in the text-storage object the iterator refers to, and
210 * @param position the position within the text-storage object
338 * Sets the iterator to iterate over a new range of text
347 * @param result Receives a copy of the text under iteration.
373 * Protected member text
376 const UChar* text; member in class:UCharCharacterIterator
    [all...]
  /external/webkit/WebCore/loader/win/
DocumentLoaderWin.cpp 38 String text = title; local
39 text.replace('//', m_frame->backslashAsCurrencySymbol());
43 frameWin->client()->setTitle(text);
  /frameworks/base/core/java/android/text/
GetChars.java 17 package android.text;
NoCopySpan.java 17 package android.text;
ParcelableSpan.java 17 package android.text;
22 * A special kind of Parcelable for objects that will serve as text spans.
  /frameworks/base/core/java/android/text/style/
ParagraphStyle.java 17 package android.text.style;
20 * The classes that affect paragraph-level text formatting implement
UpdateAppearance.java 17 package android.text.style;
20 * The classes that affect character-level text in a way that modifies their
UpdateLayout.java 17 package android.text.style;
20 * The classes that affect character-level text formatting in a way that
21 * triggers a text layout update when one is added or removed must implement
WrapTogetherSpan.java 17 package android.text.style;
LineBackgroundSpan.java 17 package android.text.style;
28 CharSequence text, int start, int end,
  /frameworks/base/core/tests/coretests/src/android/text/
SpannableStringBuilderTest.java 17 package android.text;
19 import android.text.Spannable;
20 import android.text.SpannableStringBuilder;
24 protected Spannable newSpannableWithText(String text) {
25 return new SpannableStringBuilder(text);
SpannableStringTest.java 17 package android.text;
19 import android.text.Spannable;
20 import android.text.SpannableString;
24 protected Spannable newSpannableWithText(String text) {
25 return new SpannableString(text);
  /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...]
  /cts/tests/src/android/text/method/cts/
StubActivity.java 17 package android.text.method.cts;
20 import android.text.method.ArrowKeyMovementMethod;
21 import android.text.method.LinkMovementMethod;
22 import android.text.method.ScrollingMovementMethod;
KeyListenerStubActivity.java 17 package android.text.method.cts;
23 import android.text.method.BaseKeyListener;
24 import android.text.method.DateKeyListener;
25 import android.text.method.DateTimeKeyListener;
26 import android.text.method.DigitsKeyListener;
27 import android.text.method.MultiTapKeyListener;
28 import android.text.method.NumberKeyListener;
29 import android.text.method.QwertyKeyListener;
30 import android.text.method.TextKeyListener;
31 import android.text.method.TimeKeyListener
    [all...]
  /external/skia/src/animator/
SkTextToPath.h 36 SkText* text; member in class:SkTextToPath
  /external/stlport/test/unit/
ostmit_test.cpp 36 const char* text = "hello"; local
41 copy(text, text + 5, iter);
  /dalvik/libcore/text/src/test/java/tests/text/
AllTests.java 18 package tests.text;
24 * Test suite that includes all tests for the Text project.
34 TestSuite suite = tests.TestSuiteFactory.createTestSuite("All Text test suites");
36 suite.addTest(org.apache.harmony.text.tests.java.text.AllTests.suite());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
EditableDialogCellEditor.java 37 import org.eclipse.swt.widgets.Text;
39 import java.text.MessageFormat;
42 * Custom DialogCellEditor, replacing the Label with an editable {@link Text} widget.
48 private Text text; field in class:EditableDialogCellEditor
79 text = new Text(cell, SWT.SINGLE);
80 text.addSelectionListener(new SelectionAdapter() {
86 text.addKeyListener(new KeyAdapter() {
102 text.addTraverseListener(new TraverseListener()
    [all...]
  /cts/tests/src/android/text/style/cts/
MockURLSpanTestActivity.java 17 package android.text.style.cts;
URLSpanStubActivity.java 17 package android.text.style.cts;
  /dalvik/libcore/text/src/main/java/java/text/
Annotation.java 18 package java.text;
21 * Wrapper for a text attribute value which represents an annotation. An
24 * <li>it is connected to a range of main text; if this range or the main text
26 * <li>it can not be joined with adjacent annotations even if the text attribute
30 * By wrapping text attribute values into an {@code Annotation}, these aspects
31 * will be taken into account when handling annotation text and the
32 * corresponding main text.

Completed in 1042 milliseconds

1 2 3 4 5 6 7 8 91011>>