/external/bluetooth/glib/glib/ |
gcompletion.h | 51 GList* items; member in struct:_GCompletion 61 GList* items); 63 GList* items);
|
/external/webkit/Source/WebCore/platform/qt/ |
ContextMenuQt.cpp | 76 Vector<ContextMenuItem> contextMenuItemVector(const QList<ContextMenuItem>* items) 78 int itemCount = items->size(); 81 menuItemVector.append(items->at(i));
|
/external/webkit/Source/WebKit/chromium/src/ |
WebSelectElement.cpp | 57 WebVector<WebElement> items(sourceItems.size()); 59 items[i] = WebElement(static_cast<HTMLElement*>(sourceItems[i])); 61 return items;
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
WebContextMenuProxyWin.cpp | 42 void WebContextMenuProxyWin::populateMenu(HMENU menu, const Vector<WebContextMenuItemData>& items) 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) 76 if (items.isEmpty()) 83 populateMenu(m_menu, items);
|
/external/webkit/Source/WebCore/platform/network/ |
BlobStorageData.h | 49 const BlobDataItemList& items() const { return m_data.items(); } function in class:WebCore::BlobStorageData
|
BlobRegistryImpl.cpp | 85 void BlobRegistryImpl::appendStorageItems(BlobStorageData* blobStorageData, const BlobDataItemList& items) 87 for (BlobDataItemList::const_iterator iter = items.begin(); iter != items.end(); ++iter) { 97 void BlobRegistryImpl::appendStorageItems(BlobStorageData* blobStorageData, const BlobDataItemList& items, long long offset, long long length) 101 BlobDataItemList::const_iterator iter = items.begin(); 103 for (; iter != items.end(); ++iter) { 111 for (; iter != items.end() && length > 0; ++iter) { 131 // The blob data is stored in the "canonical" way. That is, it only contains a list of Data and File items. 134 // All the Blob items in the passing blob data are resolved and expanded into a set of Data and File items [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebPopupMenu.cpp | 79 Vector<WebPopupItem> items; local 80 items.reserveInitialCapacity(size); 84 items.append(WebPopupItem(WebPopupItem::Separator)); 90 items.append(WebPopupItem(WebPopupItem::Item, m_popupClient->itemText(i), itemStyle.textDirection(), itemStyle.hasTextDirectionOverride(), m_popupClient->itemToolTip(i), m_popupClient->itemAccessibilityText(i), m_popupClient->itemIsEnabled(i), m_popupClient->itemIsLabel(i))); 94 return items; 100 Vector<WebPopupItem> items = populateItems(); local 102 if (items.isEmpty() || !m_page) { 115 WebProcess::shared().connection()->send(Messages::WebPageProxy::ShowPopupMenu(pageCoordinates, m_popupClient->menuStyle().textDirection(), items, index, platformData), m_page->pageID());
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarDebug.java | 81 // items is the list of items to display in the list. 82 List<Map<String, String>> items = new ArrayList<Map<String, String>>(); local 89 addItem(items, mActivity.getString(R.string.calendar_info_error), ""); 131 addItem(items, displayName, text); 137 addItem(items, mActivity.getString(R.string.calendar_info_error), e.toString()); 144 if (items.size() == 0) { 145 addItem(items, mActivity.getString(R.string.calendar_info_no_calendars), ""); 147 return items; 153 * @param items The info items to display [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MemberIdsSection.java | 39 for (Object i : items()) {
|
MixedItemSection.java | 63 /** {@code non-null;} the items in this part */ 64 private final ArrayList<OffsettedItem> items; field in class:MixedItemSection 66 /** {@code non-null;} items that have been explicitly interned */ 69 /** {@code non-null;} how to sort the items */ 86 * @param sort how the items should be sorted in the final output 92 this.items = new ArrayList<OffsettedItem>(100); 100 public Collection<? extends Item> items() { method in class:MixedItemSection 101 return items; 119 * Gets the size of this instance, in items. 124 return items.size() [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MemberIdsSection.java | 39 for (Object i : items()) {
|
MixedItemSection.java | 63 /** {@code non-null;} the items in this part */ 64 private final ArrayList<OffsettedItem> items; field in class:MixedItemSection 66 /** {@code non-null;} items that have been explicitly interned */ 69 /** {@code non-null;} how to sort the items */ 86 * @param sort how the items should be sorted in the final output 92 this.items = new ArrayList<OffsettedItem>(100); 100 public Collection<? extends Item> items() { method in class:MixedItemSection 101 return items; 119 * Gets the size of this instance, in items. 124 return items.size() [all...] |
/external/chromium/chrome/browser/importer/ |
external_process_importer_host.cc | 28 uint16 items, 35 items_ = items; 40 CheckForFirefoxLock(source_profile, items, first_run); 41 CheckForLoadedModels(items);
|
importer_progress_dialog.h | 19 // Shows an UI for importing and begins importing the specified |items| from 25 uint16 items,
|
importer_host.cc | 101 uint16 items, 126 importer_, &Importer::StartImport, source_profile, items, bridge); 128 CheckForFirefoxLock(source_profile, items, first_run); 154 CheckForLoadedModels(items); 185 uint16 items, 200 void ImporterHost::CheckForLoadedModels(uint16 items) { 203 if ((items & importer::FAVORITES) && !writer_->BookmarkModelIsLoaded()) { 212 if ((items & importer::SEARCH_ENGINES) || (items & importer::FAVORITES)) {
|
/external/clang/test/Preprocessor/ |
c99-6_10_3_4_p9.c | 15 showlist(The first, second, and third items.); 16 // CHECK: puts("The first, second, and third items.");
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebContextMenuProxy.h | 45 virtual void showContextMenu(const WebCore::IntPoint&, const Vector<WebContextMenuItemData>& items) = 0;
|
/external/webkit/Source/WebKit2/UIProcess/qt/ |
WebContextMenuProxyQt.h | 49 PassOwnPtr<QMenu> createContextMenu(const Vector<WebContextMenuItemData>& items) const;
|
WebPopupMenuProxyQt.cpp | 45 void WebPopupMenuProxyQt::showPopupMenu(const IntRect& rect, WebCore::TextDirection, double, const Vector<WebPopupItem>& items, const PlatformPopupMenuData&, int32_t selectedIndex)
|
WebContextMenuProxyQt.cpp | 83 void WebContextMenuProxyQt::showContextMenu(const IntPoint& position, const Vector<WebContextMenuItemData>& items) 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);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
ListValueCellEditor.java | 51 String[] items = uiListAttribute.getPossibleValues(null); local 52 mItems = new String[items.length]; 53 System.arraycopy(items, 0, mItems, 0, items.length);
|
/external/qemu/distrib/zlib-1.2.3/ |
zutil.c | 216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) 219 ulg bsize = (ulg)items*size; 275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) 278 return _halloc((long)items, size); 296 extern voidp calloc OF((uInt items, uInt size)); 300 voidpf zcalloc (opaque, items, size) 302 unsigned items; 305 if (opaque) items += size - size; /* make compiler happy */ 306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : 307 (voidpf)calloc(items, size) [all...] |
/external/chromium/chrome/browser/resources/options/ |
cookies_view.css | 52 /* enable animating the height of items */ 99 /* styles for the individual items (cookies, etc.) */ 100 .cookie-items { 107 /* make the cookie items wrap correctly */ 111 .measure-items .cookie-items { 117 .show-items .cookie-items { 121 .cookie-items .cookie-item { 137 .cookie-items .cookie-item:hover [all...] |
/external/webkit/Source/WebCore/platform/win/ |
ContextMenuWin.cpp | 52 void ContextMenu::getContextMenuItems(HMENU menu, Vector<ContextMenuItem>& items) 70 items.append(ContextMenuItem(SeparatorType, ContextMenuItemTagNoAction, String())); 80 items.append(ContextMenuItem(info)); 85 HMENU ContextMenu::createNativeMenuFromItems(const Vector<ContextMenuItem>& items) 89 for (size_t i = 0; i < items.size(); ++i) { 90 const ContextMenuItem& item = items[i];
|
/frameworks/base/telephony/java/com/android/internal/telephony/cat/ |
Menu.java | 31 public List<Item> items; field in class:Menu 44 items = new ArrayList<Item>(); 60 // rebuild items list. 61 items = new ArrayList<Item>(); 65 items.add(item); 82 // write items list to the parcel. 83 int size = items.size(); 86 dest.writeParcelable(items.get(i), flags);
|