HomeSort by relevance Sort by last modified time
    Searched refs:text1 (Results 26 - 50 of 161) sorted by null

12 3 4 5 6 7

  /external/chromium/chrome/browser/accessibility/
browser_accessibility_win_unittest.cc 283 WebAccessibility text1; local
284 text1.id = 11;
285 text1.role = WebAccessibility::ROLE_TEXT_FIELD;
286 text1.state = 0;
287 text1.value = L"One two three.\nFour five six.";
293 root.children.push_back(text1);
314 ASSERT_EQ(text, text1.value);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactListFragment.java 111 final TextView text1 = (TextView) resultView.findViewById(
112 android.R.id.text1);
136 text1.setTextDirection(View.TEXT_DIRECTION_LTR);
139 text1.setContentDescription(getActivity().getString(
147 text1.setText(action.getBody());
  /packages/apps/Browser/tests/src/com/android/browser/
BrowserProviderTests.java 123 String text1 = getCol(c, SearchManager.SUGGEST_COLUMN_TEXT_1); local
124 assertNotNull(text1);
125 assertEquals("Bad title", title, text1);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
AccountsListAdapter.java 89 final TextView text1 = (TextView) resultView.findViewById(android.R.id.text1); local
96 text1.setText(accountType.getDisplayLabel(mContext));
  /development/apps/Development/src/com/android/development/
DataList.java 52 new int[] {android.R.id.text1}));
126 new int[] {android.R.id.text1}));
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList2.java 116 new int[] { android.R.id.text1 },
118 new int[] { android.R.id.text1 });
Gallery2.java 50 // The "text1" view defined in the XML template
51 new int[] { android.R.id.text1 });
List3.java 51 new int[] { android.R.id.text1, android.R.id.text2 });
List7.java 74 // The "text1" view defined in the XML template
75 new int[] {android.R.id.text1});
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiDirectServicesList.java 40 android.R.layout.simple_list_item_2, android.R.id.text1,
75 .findViewById(android.R.id.text1);
WiFiChatFragment.java 37 adapter = new ChatMessageAdapter(getActivity(), android.R.id.text1,
93 .findViewById(android.R.id.text1);
  /developers/samples/android/ui/lists/CustomChoiceList/src/com/example/android/customchoicelist/
MainActivity.java 63 ((TextView) convertView.findViewById(android.R.id.text1))
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
MainActivity.java 73 android.R.id.text1,
ScreenSlidePageFragment.java 72 ((TextView) rootView.findViewById(android.R.id.text1)).setText(
LayoutChangesActivity.java 85 ((TextView) newView.findViewById(android.R.id.text1)).setText(
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
Notepadv1.java 71 int[] to = new int[] { R.id.text1 };
  /frameworks/base/core/java/android/widget/
TwoLineListItem.java 30 * {@link android.R.id#text1 text1}
72 mText1 = (TextView) findViewById(com.android.internal.R.id.text1);
77 * Returns a handle to the item with ID text1.
78 * @return A handle to the item with ID text1.
  /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};
199 assertEquals(com.android.internal.R.id.text1, viewIds[0]);
215 int[] singleTo = new int[]{com.android.internal.R.id.text1};
224 assertEquals(com.android.internal.R.id.text1, viewIds[0]);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListManagedCursor.java 49 // The "text1" view defined in the XML template
50 new int[] {android.R.id.text1});
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
StackActivity.java 40 android.R.id.text1, new Drawable[] {
  /frameworks/ex/chips/src/com/android/ex/chips/
SingleRecipientArrayAdapter.java 60 TextView destination = (TextView) view.findViewById(android.R.id.text1);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionView.java 70 mText1 = (TextView) findViewById(R.id.text1);
90 CharSequence text1 = formatText(suggestion.getSuggestionText1(), suggestion); local
107 setText1(text1);
113 Log.d(TAG, "bindAsSuggestion(), text1=" + text1 + ",text2=" + text2 + ",q='" +
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 76 String text1; field in class:GlobalSearchSupport.SearchSuggestion
102 list.add(text1); // text1
123 list.add(text1);
154 text1 = null;
261 suggestion.text1 = c.getString(3);
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 311 String text1 = dmp.diff_text1(diffs); local
312 assertEquals("diff_text1: Base text.", "jumps over the lazy", text1);
318 assertEquals("diff_fromDelta: Normal.", diffs, dmp.diff_fromDelta(text1, delta));
322 dmp.diff_fromDelta(text1 + "x", delta);
330 dmp.diff_fromDelta(text1.substring(1), delta);
346 text1 = dmp.diff_text1(diffs);
347 assertEquals("diff_text1: Unicode text.", "\u0680 \000 \t %\u0681 \001 \n ^", text1);
352 assertEquals("diff_fromDelta: Unicode.", diffs, dmp.diff_fromDelta(text1, delta));
367 // Translate a location in text1 to text2.
742 String text1 = "The quick brown fox jumps over the lazy dog."; local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
ResourceLoaderTest.java 72 TextView textView = (TextView) view.findViewById(android.R.id.text1);
90 TextView textView = (TextView) view.findViewById(android.R.id.text1);

Completed in 2184 milliseconds

12 3 4 5 6 7