HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 226 - 250 of 692) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/include/views/
SkOSMenu.h 97 void getItems(const Item* items[]) const;
105 * Call this in a SkView's onHandleChar to trigger any menu items with the
115 * The following functions append new items to the menu and returns their
125 * Create predefined items with the given parameters. To be used with the
128 * menu items of the same type since it's used to identify the event
150 * Ensure that the items array can store n SkStrings where n is the count
153 static bool FindListItems(const SkEvent& evt, SkString items[]);
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_dict_helpers.h 117 const char **items,
122 const struct wpabuf **items,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
InputDensityDialog.java 73 String[] items = s.toArray(new String[s.size()]); local
74 mCombo.setItems(items);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
PackagesDiffLogic.java 86 * select all items in it; if it is partially installed, at least select the platform and
99 // sort items in platforms... directly deal with new/update items
102 // Ignore items that have no archive compatible with the current platform.
125 List<PkgItem> items = platformItems.get(api); local
126 if (items == null) {
127 platformItems.put(api, items = new ArrayList<PkgItem>());
129 items.add(item);
138 List<PkgItem> items = platformItems.get(maxApi); local
139 if (selectTop && maxApi > 0 && items != null)
292 List<PkgItem> items = cat.getItems(); local
379 List<PkgItem> items = new ArrayList<PkgItem>(); local
    [all...]
  /bootable/recovery/
screen_ui.h 50 void StartMenu(const char* const * headers, const char* const * items,
  /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/chrome/browser/importer/
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/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();
ClipboardChromium.cpp 347 PassRefPtr<DataTransferItems> ClipboardChromium::items() function in class:WebCore::ClipboardChromium
349 RefPtr<DataTransferItemsChromium> items = DataTransferItemsChromium::create(this, m_frame->document()->scriptExecutionContext()); local
352 return items;
358 items->addPasteboardItem(*it);
360 return 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/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 878 public ArrayList<MediaItem> items; field in class:PhotoDataAdapter.UpdateInfo
1039 ArrayList<MediaItem> items = info.items; local
1059 ArrayList<MediaItem> items = info.items; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
SingleSpellCheckerPreference.java 139 final CharSequence[] items = new CharSequence[size + 1]; local
140 items[0] = mRes.getString(R.string.use_system_language_to_select_input_method_subtypes);
146 items[i + 1] = label;
160 builder.setSingleChoiceItems(items, checkedItem, new AlertDialog.OnClickListener() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectChooserHelper.java 231 String[] items = new String[mAvailableProjects.length + 1]; local
232 items[0] = "--- Choose Project ---";
239 items[i + 1] = labelProvider.getText(project);
244 setItems(items);

Completed in 858 milliseconds

1 2 3 4 5 6 7 8 91011>>