Searched defs:items (Results 1 - 25 of 142) sorted by relevance

123456

/external/bluetooth/glib/tests/
H A Dcompletion-test.c33 GList *items; local
38 items = NULL;
39 items = g_list_append (items, "a\302\243");
40 items = g_list_append (items, "a\302\244");
41 items = g_list_append (items, "bb");
42 items = g_list_append (items, "b
[all...]
/external/webkit/Source/WebCore/platform/
H A DContextMenu.cpp37 static const ContextMenuItem* findItemWithAction(unsigned action, const Vector<ContextMenuItem>& items) argument
39 for (size_t i = 0; i < items.size(); ++i) {
40 const ContextMenuItem& item = items[i];
H A DContextMenu.h67 void setItems(const Vector<ContextMenuItem>& items) { m_items = items; } argument
68 const Vector<ContextMenuItem>& items() const { return m_items; } function in class:WebCore::ContextMenu
/external/bluetooth/glib/glib/
H A Dgcompletion.h51 GList* items; member in struct:_GCompletion
61 GList* items);
63 GList* items);
/external/qemu/android/utils/
H A Dvector.c5 _avector_ensure( void** items, size_t itemSize, unsigned* pMaxItems, unsigned newCount ) argument
14 AASSERT_FAIL("trying to reallocate array of 0-size items (count=%d)\n", newCount);
18 AASSERT_FAIL("trying to reallocate over-sized array of %d-bytes items (%d > %d)\n",
29 *items = _android_array_realloc( *items, itemSize, newMax );
/external/srec/srec/crec/
H A Dastar_pphash.h42 partial_path* items[FSH_HASHSIZE]; member in struct:__anon9839
/external/webkit/Source/WebCore/platform/efl/
H A DContextMenuEfl.cpp35 void ContextMenu::getContextMenuItems(void* menu, Vector<ContextMenuItem>& items) argument
40 void* ContextMenu::createNativeMenuFromItems(const Vector<ContextMenuItem>& items) argument
/external/webkit/Source/WebCore/platform/network/
H A DBlobStorageData.h49 const BlobDataItemList& items() const { return m_data.items(); } function in class:WebCore::BlobStorageData
H A DBlobData.cpp93 void BlobData::swapItems(BlobDataItemList& items) argument
95 m_items.swap(items);
/external/webkit/Source/WebKit/chromium/public/
H A DWebPopupMenuInfo.h44 WebVector<WebMenuItemInfo> items; member in struct:WebKit::WebPopupMenuInfo
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DWebPopupMenuProxyQt.cpp45 void WebPopupMenuProxyQt::showPopupMenu(const IntRect& rect, WebCore::TextDirection, double, const Vector<WebPopupItem>& items, const PlatformPopupMenuData&, int32_t selectedIndex) argument
H A DWebContextMenuProxyQt.cpp83 void WebContextMenuProxyQt::showContextMenu(const IntPoint& position, const Vector<WebContextMenuItemData>& items) argument
85 if (items.isEmpty())
88 OwnPtr<QMenu> menu = createContextMenu(items);
90 // We send the signal, even with no items, because the client should be able to show custom items
103 PassOwnPtr<QMenu> WebContextMenuProxyQt::createContextMenu(const Vector<WebContextMenuItemData>& items) const
106 for (int i = 0; i < items.size(); ++i) {
107 const WebContextMenuItemData& item = items.at(i);
/external/chromium/chrome/browser/importer/
H A Dexternal_process_importer_host.cc28 uint16 items,
35 items_ = items;
40 CheckForFirefoxLock(source_profile, items, first_run);
41 CheckForLoadedModels(items);
25 StartImportSettings( const importer::SourceProfile& source_profile, Profile* target_profile, uint16 items, ProfileWriter* writer, bool first_run) argument
H A Dimporter_list.cc40 uint16 items = importer::NONE; local
41 if (!SafariImporter::CanImport(base::mac::GetUserLibraryPath(), &items))
49 safari->services_supported = items;
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DInMemoryResourceLoader.java28 * ResourceLoader that pulls all items from memory. This is particularly useful for small templates
37 private ConcurrentMap<String, String> items = new ConcurrentHashMap<String, String>(); field in class:InMemoryResourceLoader
41 String content = items.get(name);
56 items.put(name, contents);
60 items.remove(name);
64 return items;
/external/oprofile/libutil++/
H A Dcomma_list.h3 * Container holding items from a list of comma separated items
31 * setup items array according to str parameters. Implement PP:3.17
45 * return true if value match one the stored value in items
54 container_type items; member in class:comma_list
68 items.clear();
76 items.clear();
79 items.push_back(op_lexical_cast<T>(result[i]));
90 const_iterator cit = items.begin();
91 const_iterator const end = items
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DContextMenuWin.cpp52 void ContextMenu::getContextMenuItems(HMENU menu, Vector<ContextMenuItem>& items) argument
70 items.append(ContextMenuItem(SeparatorType, ContextMenuItemTagNoAction, String()));
80 items.append(ContextMenuItem(info));
85 HMENU ContextMenu::createNativeMenuFromItems(const Vector<ContextMenuItem>& items) argument
89 for (size_t i = 0; i < items.size(); ++i) {
90 const ContextMenuItem& item = items[i];
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebContextMenuProxyWin.cpp42 void WebContextMenuProxyWin::populateMenu(HMENU menu, const Vector<WebContextMenuItemData>& items) argument
44 for (size_t i = 0; i < items.size(); ++i) {
45 const WebContextMenuItemData& itemData = items[i];
74 void WebContextMenuProxyWin::showContextMenu(const IntPoint& origin, const Vector<WebContextMenuItemData>& items) argument
76 if (items.isEmpty())
83 populateMenu(m_menu, items);
/external/clang/utils/
H A DSummarizeErrors18 def items(self): member in class:multidict
19 return self.data.items()
55 warnings = warnings.items()
56 errors = errors.items()
61 assertions = assertions.items()
85 (aborts.items(), 'Aborts'),
/external/webkit/Source/WebCore/bindings/js/
H A DJSInspectorFrontendHostCustom.cpp91 Vector<ContextMenuItem*> items; local
105 items.append(new ContextMenuItem(SeparatorType,
115 items.append(menuItem);
119 impl()->showContextMenu(event, items);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8InspectorFrontendHostCustom.cpp79 Vector<ContextMenuItem*> items; local
92 items.append(new ContextMenuItem(SeparatorType,
102 items.append(menuItem);
107 frontendHost->showContextMenu(event, items);
/external/webkit/Source/WebCore/html/
H A DFormDataList.h70 const Vector<Item>& items() const { return m_items; } function in class:WebCore::FormDataList
/external/webkit/Source/WebCore/platform/graphics/pango/
H A DGlyphPageTreeNodePango.cpp48 GList* items = pango_itemize(context, buffer, 0, length, NULL, NULL); local
50 if (g_list_length(items) == 1) {
51 PangoItem* item = reinterpret_cast<PangoItem*>(items->data);
68 g_list_foreach(items, (GFunc)pango_item_free, NULL);
69 g_list_free(items);
/external/webkit/Source/WebCore/platform/qt/
H A DContextMenuQt.cpp76 Vector<ContextMenuItem> contextMenuItemVector(const QList<ContextMenuItem>* items) argument
78 int itemCount = items->size();
81 menuItemVector.append(items->at(i));
/external/bison/src/
H A Dstate.h29 Each state of the machine is described by a set of items --
32 state. These symbols at these items are the allowable inputs that
46 Each core contains a vector of NITEMS items which are the indices
47 in the RITEMS vector of the items that are selected in this state.
213 /* Its items. Must be last, since ITEMS can be arbitrarily large.
216 item_number items[1]; member in struct:state
222 /* Create a new state with ACCESSING_SYMBOL for those items. */

Completed in 562 milliseconds

123456