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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebKit2/UIProcess/cf/
WebPageProxyCF.cpp 194 RetainPtr<CFMutableArrayRef> items; local
197 items.adoptCF(CFArrayCreateMutable(0, size, &kCFTypeArrayCallBacks));
200 CFArrayAppendValue(items.get(), item.get());
204 CFPreferencesSetAppValue(autosaveKey(name).get(), items.get(), kCFPreferencesCurrentApplication);
214 RetainPtr<CFArrayRef> items(AdoptCF, reinterpret_cast<CFArrayRef>(CFPreferencesCopyAppValue(autosaveKey(name).get(), kCFPreferencesCurrentApplication)));
216 if (!items || CFGetTypeID(items.get()) != CFArrayGetTypeID())
219 size_t size = CFArrayGetCount(items.get());
221 CFStringRef item = (CFStringRef)CFArrayGetValueAtIndex(items.get(), i);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebbackforwardlist.cpp 73 WebCore::HistoryItemVector items = backForwardList->entries(); local
75 for (unsigned i = 0; i < items.size(); i++)
76 g_hash_table_remove(table, items[i].get());
199 * @limit: the number of items to retrieve
201 * Returns a list of items that succeed the current item, limited by @limit
203 * Return value: (element-type WebKit.WebHistoryItem) (transfer container): a #GList of items succeeding the current item, limited by @limit
213 WebCore::HistoryItemVector items;
216 backForwardList->forwardListWithLimit(limit, items);
218 for (unsigned i = 0; i < items.size(); i++) {
219 WebKitWebHistoryItem* webHistoryItem = kit(items[i])
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportActivity.java 111 List<DeliveryReportItem> items = getReportItems(); local
112 if (items == null) {
113 items = new ArrayList<DeliveryReportItem>(1);
114 items.add(new DeliveryReportItem("", getString(R.string.status_none)));
117 setListAdapter(new DeliveryReportAdapter(this, items));
181 List<DeliveryReportItem> items = new ArrayList<DeliveryReportItem>(); local
183 items.add(new DeliveryReportItem(
188 return items;
264 List<DeliveryReportItem> items = new ArrayList<DeliveryReportItem>(); local
268 items.add(new DeliveryReportItem(getString(R.string.recipient_label) +
    [all...]
DeliveryReportAdapter.java 35 public DeliveryReportAdapter(Context context, List<DeliveryReportItem> items) {
36 super(context, R.layout.delivery_report_list_item, R.id.recipient, items);
IconListAdapter.java 40 List<IconListItem> items) {
41 super(context, mResource, items);
  /external/chromium/chrome/browser/extensions/
extension_menu_manager_unittest.cc 70 // Tests adding, getting, and removing items.
79 const ExtensionMenuItem::List* items = local
81 ASSERT_EQ(1u, items->size());
82 ASSERT_EQ(item1, items->at(0));
88 items = manager_.MenuItems(item2->extension_id());
89 ASSERT_EQ(2u, items->size());
90 ASSERT_EQ(item1, items->at(0));
91 ASSERT_EQ(item2, items->at(1));
109 // Test adding/removing child items.
124 // Add in the first two items
240 const ExtensionMenuItem::List* items = local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/importer/
import_progress_dialog_gtk.cc 37 uint16 items,
45 items,
57 source_profile, profile, items, new ProfileWriter(profile), first_run);
62 uint16 items,
68 items_(items),
221 uint16 items,
227 DCHECK_NE(0, items);
229 parent, items, importer_host, importer_observer, source_profile, profile,
import_progress_dialog_gtk.h 27 uint16 items,
36 uint16 items,
73 // Items to import from the other browser.
  /external/quake/quake/src/WinQuake/
sbar.cpp 61 //MED 01/04/97 added hipnotic items array
568 if (cl.items & (IT_SHOTGUN<<i) )
596 if (cl.items & (1<<hipweapons[i]) )
613 if (cl.items & HIT_PROXIMITY_GUN)
624 if (cl.items & (IT_SHOTGUN<<4))
674 // items
676 if (cl.items & (1<<(17+i)))
694 //MED 01/04/97 added hipnotic items
695 // hipnotic items
699 if (cl.items & (1<<(24+i))
    [all...]
  /external/webkit/LayoutTests/fast/dom/NodeList/script-tests/
nodelist-item-call-as-function.js 1 description('This tests that items in a NodeList can be retrieved directly by calling as a function with an integral index parameter, starting from 0.<br>It means NodeList[0] and NodeList(0) both work.');
  /external/webkit/Source/WebCore/dom/
Clipboard.idl 46 readonly attribute [Conditional=DATA_TRANSFER_ITEMS, EnabledAtRuntime=DataTransferItems] DataTransferItems items;
  /external/webkit/Source/WebCore/platform/network/
BlobData.cpp 93 void BlobData::swapItems(BlobDataItemList& items)
95 m_items.swap(items);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
update_webgl_conformance_tests_unittest.py 87 for input, output in styles.items():
90 for input, output in scripts.items():
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MockSet.java 32 int items, int item_id_start) {
34 for (int i = 0; i < items; i++) {
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 32 * Icon list view adapter to show the list of STK items.
38 public StkMenuAdapter(Context context, List<Item> items,
40 super(context, 0, items);
  /external/chromium/chrome/browser/first_run/
first_run.cc 523 int items = 0; local
527 items = items | importer::HISTORY;
532 items = items | importer::HOME_PAGE;
535 items = items | importer::HOME_PAGE;
543 items = items | importer::SEARCH_ENGINES;
546 items = items | importer::SEARCH_ENGINES
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
ListViewTest.java 44 List<String> items = Lists.newArrayList("hello"); local
45 Adapter<String> adapter = new Adapter<String>(context, 0, items);
74 List<String> items = Lists.newArrayList("hello"); local
75 Adapter<String> adapter = new Adapter<String>(context, 0, items);
86 items.remove(0);
  /external/markdown/markdown/
html4.py 144 items = elem.items()
145 if items or namespaces:
146 items.sort() # lexical order
147 for k, v in items:
157 items = namespaces.items()
158 items.sort(key=lambda x: x[1]) # sort on prefix
159 for v, k in items:
255 for key, value in elem.items()
    [all...]
preprocessors.py 112 items = []
161 items.append(block.strip())
172 items.append(block.strip())
180 self.markdown.htmlStash.store('\n\n'.join(items)))
181 items = []
183 if items:
184 new_blocks.append(self.markdown.htmlStash.store('\n\n'.join(items)))
  /external/v8/test/mjsunit/
instanceof.js 63 var items = [ 1, new Number(42),
73 for (var i = 0; i < items.length; i++) {
74 for (var j = 0; j < items.length; j++) {
76 if (items[i] instanceof items[j]) instanceofs++;
  /external/quake/quake/src/QW/progs/
weapons.qc 873 self.items = self.items - ( self.items & (IT_SHELLS | IT_NAILS | IT_ROCKETS | IT_CELLS) );
886 self.items = self.items | IT_SHELLS;
893 self.items = self.items | IT_SHELLS;
900 self.items = self.items | IT_NAILS;
907 self.items = self.items | IT_NAILS;
    [all...]
  /cts/tools/dasm/src/java_cup/
lalr_state.java 19 * by several items). In our example above, the state would also include
20 * items such as: <pre>
31 * This corresponds to "moving the dot past" a terminal in one or more items
32 * in the state (these new shifted items will then be found in the state at
57 /** Constructor for building a state from a set of items.
58 * @param itms the set of items that makes up this state.
74 /* store the items */
99 * unclosed, set of items -- which uniquely define the state). This table
107 * found). The kernel item set is the subset of items that were used to
108 * originally create the state. These items are formed by "shifting th
134 public lalr_item_set items() {return _items;} method in class:lalr_state
    [all...]
  /external/chromium/chrome/browser/tab_contents/
render_view_context_menu.cc 72 bool IsCustomItemEnabled(const std::vector<WebMenuItem>& items, int id) {
75 for (size_t i = 0; i < items.size(); ++i) {
76 int action_id = IDC_CONTENT_CONTEXT_CUSTOM_FIRST + items[i].action;
78 return items[i].enabled;
79 if (items[i].type == WebMenuItem::SUBMENU) {
80 if (IsCustomItemEnabled(items[i].submenu, id))
87 bool IsCustomItemChecked(const std::vector<WebMenuItem>& items, int id) {
90 for (size_t i = 0; i < items.size(); ++i) {
91 int action_id = IDC_CONTENT_CONTEXT_CUSTOM_FIRST + items[i].action;
93 return items[i].checked
302 ExtensionMenuItem::List items = local
    [all...]
  /external/bison/src/
state.c 127 | Create a new state with ACCESSING_SYMBOL, for those items. Store |
140 res = xmalloc (offsetof (state, items) + items_size);
150 memcpy (res->items, core, items_size);
259 /* Two states are equal if they have the same core items. */
269 if (s1->items[i] != s2->items[i])
288 key += s->items[i];
345 state *probe = xmalloc (offsetof (state, items) + items_size);
349 memcpy (probe->items, core, items_size);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_contextmenu.cpp 45 Eina_List* items; /**< the list of items */ member in struct:_Ewk_Context_Menu
77 * When the reference count it's reached 0, the menu with all items are freed.
89 EINA_LIST_FREE(menu->items, item)
116 * Gets the list of items.
118 * @param o the context menu object to get list of the items
119 * @return the list of the items on success or @c 0 on failure
125 return o->items;
362 menu->items = 0;
410 o->items = eina_list_append(o->items, menu_item)
    [all...]

Completed in 1653 milliseconds

1 2 3 45 6 7 8 91011>>