HomeSort by relevance Sort by last modified time
    Searched defs:text (Results 201 - 225 of 4188) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/support/emoji/core/src/android/support/text/emoji/
TypefaceEmojiSpan.java 16 package android.support.text.emoji;
26 import android.text.TextPaint;
52 public void draw(@NonNull final Canvas canvas, final CharSequence text,
  /frameworks/support/samples/SupportEmojiDemos/src/com/example/android/support/text/emoji/
MainActivity.java 17 package com.example.android.support.text.emoji;
  /frameworks/support/v7/appcompat/src/android/support/v7/text/
AllCapsTransformationMethod.java 17 package android.support.v7.text;
24 import android.text.method.TransformationMethod;
  /libcore/luni/src/test/java/libcore/java/text/
OldParsePositionTest.java 17 package libcore.java.text;
19 import java.text.ParsePosition;
26 // Test for method int java.text.ParsePosition.hashCode()
37 // Test for method int java.text.ParsePosition.getErrorIndex()
  /libcore/ojluni/src/main/java/java/text/
CollationKey.java 39 package java.text;
109 * @see java.text.Collator#compare
  /packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/
ByResource.java 38 * Creates a BySelector for the text of {@code stringRes} from {@code resources}.
40 * @see By#text(String)
42 public static BySelector text(Resources resources, int stringRes) { method in class:ByResource
43 String text = resources.getString(stringRes); local
44 return By.text(text);
  /packages/apps/Tag/src/com/android/apps/tag/record/
UnknownRecord.java 31 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false); local
32 text.setText(R.string.tag_unknown);
33 return text;
  /packages/apps/UnifiedEmail/src/com/android/mail/text/
ChangeLabelsSpan.java 1 package com.android.mail.text;
3 import android.text.TextPaint;
4 import android.text.style.ClickableSpan;
LinkStyleSpan.java 18 package com.android.mail.text;
20 import android.text.TextPaint;
21 import android.text.style.ClickableSpan;
25 * A span that makes text look like a link. It uses link color and
29 * saves and restores its text since TextView can only save
30 * and restore {@link android.text.ParcelableSpan}s which
52 * Makes the text in the link color and not underlined.
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
EmptyStateUtils.java 21 import android.support.v4.text.BidiFormatter;
53 * Given an empty folder, set the corresponding text for indicating the empty state.
62 final String text = res.getString(R.string.empty_search, local
64 view.setText(text);
  /packages/experimental/PrintService/src/foo/bar/printservice/
InfoActivity.java 39 TextView text = (TextView) findViewById(R.id.info); local
41 text.setText(getResources().getString(R.string.info,
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/text/
TextUtils.java 17 package android.text;
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
elf.go 68 if sect := f.elf.Section(".text"); sect != nil {
84 func (f *elfFile) text() (textStart uint64, text []byte, err error) { func
85 sect := f.elf.Section(".text")
87 return 0, nil, fmt.Errorf("text section not found")
90 text, err = sect.Data()
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
elf.go 68 if sect := f.elf.Section(".text"); sect != nil {
84 func (f *elfFile) text() (textStart uint64, text []byte, err error) { func
85 sect := f.elf.Section(".text")
87 return 0, nil, fmt.Errorf("text section not found")
90 text, err = sect.Data()
  /system/update_engine/payload_generator/
mapfile_filesystem_unittest.cc 73 string text = local
79 test_utils::WriteFileString(temp_mapfile_.path(), text);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mt/
relocs1.s 4 .text
5 text: label
  /tools/loganalysis/src/com/android/loganalysis/parser/
SystemPropsParser.java 39 final String text = ArrayUtil.join("\n", lines).trim(); local
40 if ("".equals(text)) {
45 item.setText(text);
TopParser.java 47 final String text = ArrayUtil.join("\n", lines).trim(); local
48 if ("".equals(text)) {
53 item.setText(text);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BytesDictionaryMatcher.java 10 package android.icu.text;
12 import java.text.CharacterIterator;
47 UCharacterIterator text = UCharacterIterator.getInstance(text_); local
49 int c = text.nextCodePoint();
77 c = text.nextCodePoint();
StringMatcher.java 10 package android.icu.text;
16 * UnicodeReplacer API, allowing it to emit the matched text as
17 * output. Since the match text may contain flexible match elements,
18 * such as UnicodeSets, the emitted text is not the match pattern, but
19 * instead a substring of the actual matched text. Following
20 * convention, the output text is the leftmost match seen up to this
33 * The text to be matched.
38 * Start offset, in the match text, of the <em>rightmost</em>
44 * Limit offset, in the match text, of the <em>rightmost</em>
103 public int matches(Replaceable text,
    [all...]
StringReplacer.java 14 package android.icu.text;
18 * A replacer that produces static text as its output. The text may
29 * Output text, possibly containing stand-in characters that
61 * text and sets the cursor to the given position.
62 * @param theOutput text that will replace input text when the
82 * text and does not modify the cursor.
83 * @param theOutput text that will replace input text when th
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BytesDictionaryMatcher.java 9 package com.ibm.icu.text;
11 import java.text.CharacterIterator;
46 UCharacterIterator text = UCharacterIterator.getInstance(text_); local
48 int c = text.nextCodePoint();
76 c = text.nextCodePoint();
  /frameworks/base/telephony/java/android/telephony/
JapanesePhoneNumberFormatter.java 19 import android.text.Editable;
157 public static void format(Editable text) {
162 int length = text.length();
164 && text.subSequence(0, 3).toString().equals("+81")) {
166 } else if (length < 1 || text.charAt(0) != '0') {
170 CharSequence saved = text.subSequence(0, length);
174 while (i < text.length()) {
175 if (text.charAt(i) == '-') {
176 text.delete(i, i + 1);
182 length = text.length()
    [all...]
  /prebuilts/sdk/current/support/emoji-bundled/
android-support-emoji-bundled.jar 
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
StringReplacer.java 13 package com.ibm.icu.text;
17 * A replacer that produces static text as its output. The text may
28 * Output text, possibly containing stand-in characters that
60 * text and sets the cursor to the given position.
61 * @param theOutput text that will replace input text when the
81 * text and does not modify the cursor.
82 * @param theOutput text that will replace input text when th
    [all...]

Completed in 706 milliseconds

1 2 3 4 5 6 7 891011>>