HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 76 - 100 of 302) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/storage/
StorageAreaSync.cpp 43 // Instead, queue up a batch of items to sync and actually do the sync at the following interval.
194 LOG_ERROR("Unable to select items from ItemTable for local storage");
208 LOG_ERROR("Error reading items from ItemTable for local storage");
232 // optimization (since the order of iteration can change as items are being added). Get can return any
234 // of items the import should not overwrite. Clear can also work, but it'll need to kill the import
250 void StorageAreaSync::sync(bool clearItems, const HashMap<String, String>& items)
257 // If the clear flag is set, then we clear all items out before we write any new ones in.
267 LOG_ERROR("Failed to clear all items in the local storage database - %i", result);
284 HashMap<String, String>::const_iterator end = items.end();
286 for (HashMap<String, String>::const_iterator it = items.begin(); it != end; ++it)
311 HashMap<String, String> items; local
    [all...]
StorageAreaSync.h 79 void sync(bool clearItems, const HashMap<String, String>& items);
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 56 * {@link Intent#EXTRA_INTENT} query, along with any injected items.
62 * Adapter of items that are displayed in this dialog.
98 // Build list adapter of pickable items
99 List<PickAdapter.Item> items = getItems(); local
100 mAdapter = new PickAdapter(this, items);
134 * Build and return list of items to be shown in dialog. Default
136 * {@link #putIntentItems(Intent, List)} with any injected items from
138 * change the items shown.
142 List<PickAdapter.Item> items = new ArrayList<PickAdapter.Item>(); local
144 // Add any injected pick items
    [all...]
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssReader.java 61 * used for selected list items
128 List<RssItem> items = new ArrayList<RssItem>(); local
129 mAdapter = new RSSListAdapter(this, items);
228 List<RssItem> items = new ArrayList<RssItem>(); local
229 mAdapter = new RSSListAdapter(this, items);
288 // to add multiple items at once, so you get less "update storm" in the UI
294 * out the rss items, and communicates them back to the UI as they are read.
367 * for each menu item. This way, one inner class works for all items vs. an
410 // Save out the items as a flat list of CharSequence objects --
446 // Restore items from the big list of CharSequence object
448 List<RssItem> items = new ArrayList<RssItem>(); local
    [all...]
  /external/qemu/android/skin/
keyset.c 333 SkinKeyItem* items; member in struct:SkinKeyset
340 SkinKeyItem* item = kset->items;
367 SkinKeyItem* new_items = realloc( kset->items, new_size*sizeof(SkinKeyItem) );
371 kset->items = new_items;
374 item = kset->items + kset->num_items++;
454 free(kset->items);
455 kset->items = NULL;
470 SkinKeyItem* item = kset->items;
495 SkinKeyItem* item = kset->items;
  /external/stlport/test/eh/
test_algo.cpp 41 SortClass* begin() { return items; }
42 const SortClass* begin() const { return items; }
43 SortClass* end() { return items + kBufferSize; }
44 const SortClass* end() const { return items + kBufferSize; }
69 SortClass items[kBufferSize]; member in struct:SortBuffer
115 // Check that adjacent items with the same value haven't been
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLDocumentCustom.cpp 91 RefPtr<HTMLCollection> items = htmlDocument->documentNamedItems(key);
92 if (!items->length())
95 if (items->length() == 1) {
96 Node* node = items->firstItem();
104 return toV8(items.release());
  /external/webkit/WebCore/platform/wx/wxcode/gtk/
non-kerned-drawing.cpp 158 GList* items = pango_itemize(context, buffer, 0, length, NULL, NULL); local
160 if (g_list_length(items) == 1) {
161 PangoItem* item = static_cast<PangoItem*>(items->data);
178 g_list_foreach(items, (GFunc)pango_item_free, NULL);
179 g_list_free(items);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectResources.java 184 // level items (the list of generated resource types) is not cached
295 List<ProjectResourceItem> items = mResourceMap.get(type); local
297 return items.toArray(new ProjectResourceItem[items.size()]);
312 List<ProjectResourceItem> items = mResourceMap.get(type); local
313 return (items != null && items.size() > 0);
608 List<ProjectResourceItem> items = mResourceMap.get(type); local
613 for (ProjectResourceItem item : items) {
777 List<ProjectResourceItem> items = mResourceMap.get(type); local
    [all...]
MultiResourceFile.java 80 ArrayList<ProjectResourceItem> items = new ArrayList<ProjectResourceItem>(); local
93 items.add(item);
100 return items;
104 * Updates the Resource items if necessary.
SingleResourceFile.java 105 ArrayList<ProjectResourceItem> items = new ArrayList<ProjectResourceItem>(); local
109 items.add(item);
115 return items;
  /device/samsung/crespo/alsa-lib/include/
control_external.h 170 int (*get_enumerated_info)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
187 int (*read_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
208 int (*write_enumerated)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned int *items);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/
DeviceExplorer.java 477 TreeItem[] items = mTree.getSelection(); local
485 if (items.length == 1) {
486 singleEntry = (FileEntry)items[0].getData();
519 pullSelection(items, directoryName);
533 TreeItem[] items = mTree.getSelection(); local
535 if (items.length == 0) {
545 FileEntry entry = (FileEntry)items[0].getData();
575 TreeItem[] items = mTree.getSelection(); local
577 if (items.length != 1) {
581 FileEntry entry = (FileEntry)items[0].getData()
    [all...]
  /bionic/libc/kernel/tools/
kernel.py 298 self.items = {}
314 if name in self.items: # aarg, duplicate value
317 self.items[name] = value
332 return self.items.copy()
335 return repr(self.items)
338 return str(self.items)
  /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/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/clearsilver/python/examples/base/
who_calls.py 104 for modname,m in sys.modules.items():
122 pairs = map (lambda x: (x[1],x[0]), d.items())
  /external/webkit/WebCore/inspector/
InspectorFrontendHost.cpp 155 void InspectorFrontendHost::showContextMenu(Event* event, const Vector<ContextMenuItem*>& items)
163 m_menuProvider = MenuProvider::create(this, items);
  /packages/apps/Gallery3D/src/com/cooliris/media/
LocalDataSource.java 188 ArrayList<MediaItem> items = parentSet.getItems(); local
189 int numItems = items.size();
290 ArrayList<MediaItem> items = bucket.mediaItems; local
291 if (set != null && items == null) {
302 if (set != null && items != null) {
303 // We need to remove these items from the set.
304 int numItems = items.size();
307 MediaItem item = items.get(j);
323 ArrayList<MediaItem> items = bucket.mediaItems; local
324 if (items == null)
    [all...]
  /external/chromium/net/disk_cache/
stats.h 63 void GetItems(StatsItems* items);
  /external/clearsilver/util/
ulist.h 19 void **items; member in struct:_ulist
  /external/webkit/WebKit/qt/Api/
qwebhistory.h 75 QList<QWebHistoryItem> items() const;
  /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));
  /libcore/luni/src/test/java/com/google/coretests/
PerfStatCollector.java 158 ArrayList<Item> items; field in class:PerfStatCollector
166 items = new ArrayList();
176 Iterator<Item> r = items.iterator();
234 items.add(current);
  /device/samsung/crespo/libaudio2/
alsa_mixer.c 85 unsigned max = mixer->ctl[n].info->value.enumerated.items;
145 char **enames = calloc(ei->value.enumerated.items, sizeof(char*));
149 for (m = 0; m < ei->value.enumerated.items; m++) {
216 for (m = 1; m < ei->value.enumerated.items; m++)
276 (v < ctl->info->value.enumerated.items) ? ctl->ename[v] : "???");
357 max = ctl->info->value.enumerated.items;

Completed in 1573 milliseconds

1 2 34 5 6 7 8 91011>>