HomeSort by relevance Sort by last modified time
    Searched refs:text2 (Results 1 - 25 of 71) sorted by null

1 2 3

  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
MarqueeActivity.java 45 final TextView text2 = new TextView(this); local
46 text2.setText("This is a marquee inside a TextView");
47 text2.setSingleLine(true);
48 text2.setHorizontalFadingEdgeEnabled(true);
49 text2.setEllipsize(TextUtils.TruncateAt.MARQUEE);
52 linearLayout.addView(text2, params);
59 text2.setVisibility(View.INVISIBLE);
60 Animation animation = AnimationUtils.loadAnimation(text2.getContext(),
64 text2.startAnimation(animation);
  /external/webkit/Source/WebCore/editing/
JoinTextNodesCommand.h 37 static PassRefPtr<JoinTextNodesCommand> create(PassRefPtr<Text> text1, PassRefPtr<Text> text2)
39 return adoptRef(new JoinTextNodesCommand(text1, text2));
JoinTextNodesCommand.cpp 33 JoinTextNodesCommand::JoinTextNodesCommand(PassRefPtr<Text> text1, PassRefPtr<Text> text2)
34 : SimpleEditCommand(text1->document()), m_text1(text1), m_text2(text2)
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodenormalize01.java 83 Text text2; local
102 text2 = newDoc.createTextNode("text2");
112 appendedChild = element2.appendChild(text2);
116 text2 = (Text) text2.cloneNode(false);
119 appendedChild = element3.appendChild(text2);
122 text2 = (Text) text2.cloneNode(false);
125 appendedChild = element4.appendChild(text2);
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 100 Text text2; local
120 text2 = newDoc.createTextNode("text2");
130 element2.appendChild(text2);
134 text2 = (Text) text2.cloneNode(false);
137 element3.appendChild(text2);
140 text2 = (Text) text2.cloneNode(false);
143 element4.appendChild(text2);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DefaultSoftKeyboard.java 558 TextView text2 = (TextView)mSubView.findViewById(R.id.alt); local
563 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
565 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
569 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
571 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
575 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_off));
577 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
581 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_on));
583 text2.setBackgroundColor(res.getColor(R.color.indicator_textbackground_default));
587 text2.setTextColor(res.getColor(R.color.indicator_textcolor_alt_lock))
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 57 TextView text2 = (TextView)view.findViewById(R.id.text2); local
59 text2.setText(emailAddress);
  /packages/apps/Email/src/com/android/email/
EmailAddressAdapter.java 58 TextView text2 = (TextView)view.findViewById(R.id.text2); local
60 text2.setText(emailAddress);
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountsListAdapter.java 90 final TextView text2 = (TextView) resultView.findViewById(android.R.id.text2); local
100 text2.setText(account.name);
101 text2.setEllipsize(TruncateAt.MIDDLE);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionView.java 71 mText2 = (TextView) findViewById(R.id.text2);
91 CharSequence text2 = suggestion.getSuggestionText2Url(); local
92 if (text2 != null) {
93 text2 = formatUrl(text2);
95 text2 = formatText(suggestion.getSuggestionText2(), suggestion);
98 if (TextUtils.isEmpty(text2)) {
108 setText2(text2);
113 Log.d(TAG, "bindAsSuggestion(), text1=" + text1 + ",text2=" + text2 + ",q='"
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TwoLineListItemTest.java 143 TextView text2 = new TextView(mActivity); local
144 text2.setId(com.android.internal.R.id.text2);
148 twoLineListItem.addView(text2, params);
154 assertSame(text2, twoLineListItem.getText2());
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java 134 * @param text2 New string to be diffed.
137 public LinkedList<Diff> diff_main(String text1, String text2) {
138 return diff_main(text1, text2, true);
145 * @param text2 New string to be diffed.
151 public LinkedList<Diff> diff_main(String text1, String text2,
154 if (text1 == null || text2 == null) {
160 if (text1.equals(text2)) {
167 int commonlength = diff_commonPrefix(text1, text2);
170 text2 = text2.substring(commonlength)
1955 String text2; local
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
SelectAccountDialogFragment.java 62 final TextView text2 = (TextView)resultView.findViewById(android.R.id.text2);
67 text2.setText("Type: " + account.type);
  /external/chromium/webkit/glue/
regular_expression_unittest.cc 62 WebUChar text2[] = {L' ', L'\x6240', L'\x6709', L'\x7f51', L'\x9875'}; local
68 MATCH_DESC(text2, 1, 4),
82 WebUChar text2[] = {L' ', L' ', L':', L' ', L' ', L' ', L' ', L':', L' ', L' '}; local
90 MATCH_DESC(text2, 2, 6),
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList3.java 67 new int[] { android.R.id.text1, android.R.id.text2 },
71 new int[] { android.R.id.text1, android.R.id.text2 }
List3.java 51 new int[] { android.R.id.text1, android.R.id.text2 });
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactListFragment.java 107 final TextView text2 = (TextView) resultView.findViewById(
108 android.R.id.text2);
137 if (text2 != null) {
139 text2.setText(subtitle);
141 text2.setVisibility(View.GONE);
143 text2.setVisibility(View.VISIBLE);
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 110 String text2 = token1 + "\",\"" + token2 + ";" + token3 + " <;>" + token4 + ","; local
111 final int TOKEN_END_POS_2 = text2.indexOf(token2) + token2.length();
112 final int TOKEN_END_POS_4 = text2.indexOf(token4) + token4.length();
113 assertEquals(TOKEN_END_POS_2, rfc822Tokenizer.findTokenEnd(text2, 0));
114 assertEquals(TOKEN_END_POS_4, rfc822Tokenizer.findTokenEnd(text2, TOKEN_END_POS_2 + 1));
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeisequalnode28.js 92 var text2;
102 text2 = doc.createTextNode("");
104 isEqual = text1.isEqualNode(text2);
textwholetext03.js 91 var text2;
102 text2 = doc.createTextNode(" Text II");
104 appendedChild = elem.appendChild(text2);
  /external/icu4c/test/cintltst/
reapits.c 364 UChar text2[50]; local
368 u_uastrncpy(text2, "abcccxd", sizeof(text2)/2);
386 uregex_setText(re, text2, -1, &status);
418 UChar text2[50]; local
423 u_uastrncpy(text2, "abcccxd", sizeof(text2)/2);
435 uregex_setText(re, text2, 7, &status);
437 TEST_ASSERT(result == text2);
442 uregex_setText(re, text2, 4, &status)
785 UChar text2[80]; local
857 UChar text2[80]; \/* "No match Here" *\/ local
1019 UChar text2[80]; local
1515 UText text2 = UTEXT_INITIALIZER; local
1562 UText text2 = UTEXT_INITIALIZER; local
1802 UChar text2[80]; local
1850 UChar text2[80]; local
1933 UChar text2[80]; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 44 // text2 has links specified by putting <a> tags in the string
49 TextView t2 = (TextView) findViewById(R.id.text2);
  /frameworks/base/core/java/android/widget/
TwoLineListItem.java 33 * and {@link android.R.id#text2 text2}. There is an optional third View element with the
71 mText2 = (TextView) findViewById(com.android.internal.R.id.text2);
83 * Returns a handle to the item with ID text2.
84 * @return A handle to the item with ID text2.
  /frameworks/base/core/tests/coretests/src/android/widget/
SimpleCursorAdapterTest.java 56 mTo = new int[]{com.android.internal.R.id.text1, com.android.internal.R.id.text2};
200 assertEquals(com.android.internal.R.id.text2, viewIds[1]);
228 singleTo = new int[]{com.android.internal.R.id.text2};
237 assertEquals(com.android.internal.R.id.text2, viewIds[0]);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
BaseInputConnectionTest.java 238 final Editable text2 = mConnection.getEditable(); local
240 assertEquals(strLength, text2.length());
241 assertEquals(str.toString(), text2.toString());
266 return text2.toString().equals(mView.getText().toString());
272 int end = text2.length();

Completed in 1747 milliseconds

1 2 3