/packages/apps/Settings/src/com/android/settings/ |
AppWidgetLoader.java | 56 void putCustomAppWidgets(List<Item> items, Intent intent) { 105 if (LOGD) Log.d(TAG, "Using " + customInfo.size() + " custom items"); 106 putAppWidgetItems(customInfo, customExtras, items, 0, true); 115 List<Bundle> customExtras, List<Item> items, int categoryFilter, 130 items.add(item); 140 * Build and return list of items to be shown in dialog. This will mix both 148 List<Item> items = new ArrayList<Item>(); local 154 putInstalledAppWidgets(items, categoryFilter); 156 // Sort all items together by label 158 putCustomAppWidgets(items, intent) [all...] |
/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/clang/test/CodeGenCXX/ |
typeid-cxx11.cpp | 22 constexpr Item items[] = { member in namespace:Test1 27 constexpr auto &x = items[0].ti;
|
/external/smack/src/org/jivesoftware/smackx/packet/ |
MUCAdmin.java | 39 private List<Item> items = new ArrayList<Item>(); field in class:MUCAdmin 49 synchronized (items) { 50 return Collections.unmodifiableList(new ArrayList<Item>(items)).iterator(); 60 synchronized (items) { 61 items.add(item); 68 synchronized (items) { 69 for (int i = 0; i < items.size(); i++) { 70 Item item = items.get(i);
|
DiscoverItems.java | 33 * A DiscoverItems IQ packet, which is used by XMPP clients to request and receive items 36 * The items could also be queried in order to discover if they contain items inside. Some items 43 public static final String NAMESPACE = "http://jabber.org/protocol/disco#items"; 45 private final List<Item> items = new CopyOnWriteArrayList<Item>(); field in class:DiscoverItems 54 synchronized (items) { 55 items.add(item); 60 * Adds a collection of items to the discovered information. Does nothing if itemsToAdd is null 72 * Returns the discovered items of the queried XMPP entity. [all...] |
/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...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
ArrayBlockingQueue.java | 56 * even for the items array, which is default-serialized, even if 62 /** The queued items */ 63 final Object[] items; field in class:ArrayBlockingQueue 65 /** items index for next take, poll, peek or remove */ 68 /** items index for next put, offer, or add */ 101 return (++i == items.length) ? 0 : i; 108 return ((i == 0) ? items.length : i) - 1; 115 @SuppressWarnings("unchecked") E x = (E) items[i]; 135 // assert items[putIndex] == null; 136 items[putIndex] = x 149 final Object[] items = this.items; local 169 final Object[] items = this.items; local 526 final Object[] items = this.items; local 577 final Object[] items = this.items; local 623 final Object[] items = this.items; local [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MemberIdsSection.java | 39 for (Object i : items()) {
|
/dalvik/dx/src/com/android/dx/dex/file/ |
MemberIdsSection.java | 48 if (items().size() > MAX_MEMBERS) { 52 for (Object i : items()) { 60 for (Object member : items()) { 73 memberType, items().size(), MAX_MEMBERS);
|
/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,
|
/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/linux-tools-perf/scripts/perl/Perf-Trace-Util/ |
Context.c | 51 if (items != 1) 74 if (items != 1) 97 if (items != 1) 125 PERL_UNUSED_VAR(items); /* -W */
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowItemizedOverlay.java | 23 private ArrayList<Item> items = new ArrayList<Item>(); field in class:ShadowItemizedOverlay 32 items.clear(); 34 items.add(getBridge().createItem(i)); 40 return items.get(position);
|
/external/smack/src/org/jivesoftware/smackx/pubsub/listener/ |
ItemEventListener.java | 21 * Defines the listener for items being published to a node.
33 * @param items The publishing details.
35 void handlePublishedItems(ItemPublishEvent<T> 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)
|
/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
EnumerationValuesPropertyEditor.java | 42 int items = enumElements.length / 3; local 43 m_names = new String[items]; 44 m_values = new Object[items]; 45 m_sources = new String[items]; 46 for (int i = 0; i < items; i++) {
|
/external/icu4c/test/depstest/ |
dependencies.py | 17 items: Map from library or group names to item maps. 28 # TODO: Support binary items. 36 items = {} variable 94 global items, _line_number, _groups_to_be_defined 103 dep_item = items.get(dep) 109 items[dep] = {"type": "group"} 110 if library_name: items[dep]["library"] = library_name 139 global items, libraries, _line_number, _groups_to_be_defined 151 if name in items: 154 item = items[name] = {"type": "library" [all...] |