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

1 2 3

  /external/chromium_org/chromeos/ime/
ibus_text_unittest.cc 34 IBusText text2; local
35 text2.CopyFrom(text);
37 EXPECT_EQ(text.text(), text2.text());
39 text2.underline_attributes().size());
42 text2.underline_attributes()[i].type);
44 text2.underline_attributes()[i].start_index);
46 text2.underline_attributes()[i].end_index);
49 EXPECT_EQ(text.selection_start(), text2.selection_start());
50 EXPECT_EQ(text.selection_end(), text2.selection_end());
  /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);
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 57 TextView text2 = (TextView)view.findViewById(R.id.text2); local
59 text2.setText(emailAddress);
  /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),
  /external/chromium_org/mojo/public/tests/
bindings_handle_passing_unittest.cc 31 std::string text2; variable
33 EXPECT_TRUE(ReadTextMessage(request.pipe().get(), &text2));
40 if (!text2.empty()) {
42 EXPECT_TRUE(WriteTextMessage(pipe1_.get(), text2));
103 std::string text2; variable
104 EXPECT_TRUE(ReadTextMessage(response.pipe().get(), &text2));
109 EXPECT_EQ(std::string(kText2), text2); variable
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 85 String text2 = token1 + "\",\"" + token2 + ";" + token3 + " <;>" + token4 + ","; local
86 final int TOKEN_END_POS_2 = text2.indexOf(token2) + token2.length();
87 final int TOKEN_END_POS_4 = text2.indexOf(token4) + token4.length();
88 assertEquals(TOKEN_END_POS_2, rfc822Tokenizer.findTokenEnd(text2, 0));
89 assertEquals(TOKEN_END_POS_4, rfc822Tokenizer.findTokenEnd(text2, TOKEN_END_POS_2 + 1));
  /cts/tests/tests/widget/src/android/widget/cts/
TwoLineListItemTest.java 95 TextView text2 = new TextView(mActivity); local
96 text2.setId(com.android.internal.R.id.text2);
100 twoLineListItem.addView(text2, params);
106 assertSame(text2, twoLineListItem.getText2());
DialerFilterTest.java 389 final EditText text2 = new EditText(mActivity); local
390 text2.setId(com.android.internal.R.id.primary);
395 dialerFilter.addView(text2, new RelativeLayout.LayoutParams(
  /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/apps/ContactsCommon/src/com/android/contacts/common/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);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
BaseInputConnectionTest.java 133 final Editable text2 = mConnection.getEditable(); local
135 assertEquals(strLength, text2.length());
136 assertEquals(str.toString(), text2.toString());
161 return text2.toString().equals(mView.getText().toString());
167 int end = text2.length();
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteChooserDialog.java 219 TextView text2 = (TextView)view.findViewById(android.R.id.text2); local
223 text2.setVisibility(View.GONE);
224 text2.setText("");
226 text2.setVisibility(View.VISIBLE);
227 text2.setText(description);
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteChooserDialog.java 203 TextView text2 = (TextView)view.findViewById(android.R.id.text2); local
207 text2.setVisibility(View.GONE);
208 text2.setText("");
210 text2.setVisibility(View.VISIBLE);
211 text2.setText(description);
  /packages/apps/Browser/tests/src/com/android/browser/
BrowserProviderTests.java 126 String text2 = getCol(c, SearchManager.SUGGEST_COLUMN_TEXT_2); local
127 assertNotNull(text2);
  /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...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 77 String text2; field in class:GlobalSearchSupport.SearchSuggestion
103 list.add(text2); // text2
125 list.add(text2);
155 text2 = null;
265 suggestion.text2 = shortenSnippet(c.getString(6));
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_win_unittest.cc 230 AccessibilityNodeData text2; local
231 text2.id = 2;
232 text2.role = blink::WebAXRoleStaticText;
233 text2.SetName("new text");
234 text2.SetName("old text");
237 param.nodes.push_back(text2);
238 param.id = text2.id;
428 AccessibilityNodeData text2; local
429 text2.id = 12;
430 text2.role = blink::WebAXRoleStaticText
496 AccessibilityNodeData text2; local
    [all...]
  /external/chromium_org/sandbox/win/src/
ipc_unittest.cc 209 const wchar_t text2[] = L"AeFG"; local
210 CrossCall(client, tag1, text2, null_text, text, &answer);
215 EXPECT_STREQ(text2, copied_text_p0.c_str());
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactsListFragment.java 704 holder.text2 = (TextView) itemLayout.findViewById(android.R.id.text2)
843 TextView text2; field in class:ContactsListFragment.ContactsAdapter.ViewHolder
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
reapits.c 353 UChar text2[50]; local
357 u_uastrncpy(text2, "abcccxd", sizeof(text2)/2);
375 uregex_setText(re, text2, -1, &status);
407 UChar text2[50]; local
412 u_uastrncpy(text2, "abcccxd", sizeof(text2)/2);
424 uregex_setText(re, text2, 7, &status);
426 TEST_ASSERT(result == text2);
431 uregex_setText(re, text2, 4, &status)
774 UChar text2[80]; local
846 UChar text2[80]; \/* "No match Here" *\/ local
1008 UChar text2[80]; local
1504 UText text2 = UTEXT_INITIALIZER; local
1551 UText text2 = UTEXT_INITIALIZER; local
1791 UChar text2[80]; local
1839 UChar text2[80]; local
1922 UChar text2[80]; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
itrbnf.cpp 91 UChar text2[] = { local
124 UnicodeString expected(text2);
    [all...]
rbbiapts.cpp 263 CharacterIterator* text2= new StringCharacterIterator(str2); local
295 rb->adoptText(text2);
296 if(rb->getText() != *text2)
    [all...]
regcoll.cpp 1119 static const UChar text2[][CollationRegressionTest::MAX_TOKEN_LEN] = { local
1144 len2 = calcKeyIncremental(coll, text2[i], -1, key2, sizeof(key2), status);
1146 errln(UnicodeString("Failed to get a partial collation key for ") + text2[i]);
1151 errln(UnicodeString("Failed: Identical key\n") + " text1: " + text1[i] + "\n" + " text2: " + text2[i] + "\n" + " key : " + TestUtility::hex(key1, len1));
1153 logln(UnicodeString("Keys produced -\n") + " text1: " + text1[i] + "\n" + " key1 : " + TestUtility::hex(key1, len1) + "\n" + " text2: " + text2[i] + "\n" + " key2 : "
    [all...]
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 356 String text2 = dmp.diff_text2(diffs); local
357 assertEquals("diff_text2: Unchanged characters.", "A-Z a-z 0-9 - _ . ! ~ * \' ( ) ; / ? : @ & = + $ , # ", text2);
367 // Translate a location in text1 to text2.
743 String text2 = "That quick brown fox jumped over a lazy dog."; local
    [all...]

Completed in 2402 milliseconds

1 2 3