HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 176 - 200 of 541) sorted by null

1 2 3 4 5 6 78 91011>>

  /cts/tests/tests/app/src/android/app/cts/
AlertDialog_BuilderTest.java 454 final CharSequence[] items = mContext.getResources().getTextArray( local
470 assertEquals(items[0], mSelectedItem);
472 assertEquals(items[0], mListView.getItemAtPosition(0));
482 final CharSequence[] items = mContext.getResources().getTextArray( local
488 mBuilder.setMultiChoiceItems(items, null, mOnMultiChoiceClickListener);
497 assertEquals(items[0], mSelectedItem);
499 assertEquals(items[0], mListView.getItemAtPosition(0));
537 final CharSequence[] items = mContext.getResources().getTextArray( local
552 assertEquals(items[0], mSelectedItem);
553 assertEquals(items[0], mListView.getItemAtPosition(0))
600 final CharSequence[] items = mContext.getResources().getTextArray( local
625 final CharSequence[] items = mContext.getResources().getTextArray( local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
TypeIdsSection.java 50 public Collection<? extends Item> items() { method in class:TypeIdsSection
187 for (Object i : items()) {
  /dalvik/dx/src/com/android/dx/dex/file/
TypeIdsSection.java 50 public Collection<? extends Item> items() { method in class:TypeIdsSection
187 for (Object i : items()) {
  /external/chromium/chrome/browser/importer/
profile_import_process_host.cc 32 uint16 items,
58 source_profile, items, localized_strings, import_to_bookmark_bar));
firefox3_importer.h 38 uint16 items,
safari_importer.h 48 uint16 items,
51 // Does this user account have a Safari Profile and if so, what items
  /external/skia/bench/
bench_compare.py 122 for old_bench, old_configs in old_benches.items():
125 for old_config, old_time in old_configs.items():
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_dict_helpers.h 117 const char **items,
122 const struct wpabuf **items,
  /bootable/recovery/
common.h 38 // Display some header text followed by a menu of items, which appears
41 void ui_start_menu(char** headers, char** items, int initial_selection);
  /development/samples/NotePad/src/com/example/android/notepad/
NotesList.java 93 * to be this Activity. The effect is that context menus are enabled for items in the
113 * for items in the ListView. Each element in the dataColumns array represents
131 cursor, // The cursor to get items from
142 * this Activity. Android passes in a Menu object that is populated with items.
150 * @param menu A Menu object, to which menu items should be added.
210 // Creates an array of menu items with one element. This will contain the EDIT option.
211 MenuItem[] items = new MenuItem[1]; local
233 items // The menu items generated from the specifics-to-
237 if (items[0] != null)
    [all...]
  /external/chromium/net/disk_cache/
stats.h 65 void GetItems(StatsItems* items);
  /external/icu4c/stubdata/
icu_dat_generator.py 164 for kind, locales in kind_to_locales.items():
179 for kind, locales in kind_to_locales.items():
191 for kind, locales in kind_to_locales.items():
198 for kind, locales in kind_to_locales.items():
  /external/qemu/android/utils/
vector.h 70 extern void _avector_ensure( void** items, size_t itemSize,
  /external/webkit/Source/WebCore/html/
FormDataList.h 70 const Vector<Item>& items() const { return m_items; } function in class:WebCore::FormDataList
  /external/webkit/Source/WebCore/inspector/
InspectorFrontendHost.h 82 void showContextMenu(Event*, const Vector<ContextMenuItem*>& items);
  /external/webkit/Source/WebCore/platform/
ContextMenuItem.cpp 73 m_subMenuItems = subMenu->items();
  /external/webkit/Source/WebCore/platform/chromium/
ClipboardChromium.h 84 virtual PassRefPtr<DataTransferItems> items();
  /external/webkit/Source/WebCore/storage/
StorageAreaSync.h 88 void sync(bool clearItems, const HashMap<String, String>& items);
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.h 76 QList<QWebHistoryItem> items() const;
  /external/webkit/Tools/Scripts/webkitpy/common/system/
stack_utils_unittest.py 37 thread_id, _ = sys._current_frames().items()[0]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
update_webgl_conformance_tests.py 54 for filename, path in include_mapping.items():
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
validatechangelogs.py 59 for filename, diff_file in parsed_diff.files.items():
  /external/zlib/contrib/iostream2/
zstream.h 114 template <class T, class Items>
115 inline int read(izstream& zs, T* x, Items items) {
116 return ::gzread(zs.fp(), x, items*sizeof(T));
263 template <class T, class Items>
264 inline int write(ozstream& zs, const T* x, Items items) {
265 return ::gzwrite(zs.fp(), (voidp) x, items*sizeof(T));
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
PhoneNumberInteractionTest.java 195 List<PhoneItem> items = interaction.mPhoneList; local
196 assertNotNull(items);
197 assertEquals(2, items.size());
199 PhoneItem item = items.get(0);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
SingleSpellCheckerPreference.java 137 final CharSequence[] items = new CharSequence[size + 1]; local
138 items[0] = mRes.getString(R.string.use_system_language_to_select_input_method_subtypes);
144 items[i + 1] = label;
158 builder.setSingleChoiceItems(items, checkedItem, new AlertDialog.OnClickListener() {

Completed in 626 milliseconds

1 2 3 4 5 6 78 91011>>