/external/webkit/WebCore/bindings/v8/custom/ |
V8HTMLSelectElementCustom.cpp | 64 Vector<RefPtr<Node> > items; local 65 collection->namedItems(v8StringToAtomicWebCoreString(name), items); local 67 if (!items.size()) 70 if (items.size() == 1) 71 return toV8(items.at(0).release()); 73 NodeList* list = new V8NamedNodesCollection(items);
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/ |
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);
|
/external/webkit/WebCore/inspector/ |
InspectorFrontendHost.idl | 51 [Custom] void showContextMenu(in MouseEvent event, in DOMObject items);
|
/external/webkit/WebKit/win/Interfaces/ |
IWebHistoryPrivate.idl | 37 HRESULT allItems([in, out] int* count, [out, retval] IWebHistoryItem** items);
|
IWebHistory.idl | 30 items added. The key for the array is WebHistoryItemsKey. 33 items removed. The key for the array is WebHistoryItemsKey. 108 HRESULT addItems([in] int itemCount, [in] IWebHistoryItem** items); 112 @param items An array of WebHistoryItems to remove from the WebHistory. 113 - (void)removeItems:(NSArray *)items; 115 HRESULT removeItems([in] int itemCount, [in] IWebHistoryItem** items); 126 or more history items, ordered from most recent to oldest. 127 @result Returns an array of NSCalendarDates for which history items exist in the WebHistory. 144 HRESULT orderedItemsLastVisitedOnDay([in, out] int* count, [in] IWebHistoryItem** items, [in] DATE calendarDate); 157 @discussion Limits the number of items that will be stored by the WebHistory [all...] |
/external/chromium/googleurl/ |
PRESUBMIT_unittest.py | 39 def __init__(self, msg, items=[], long_text=''): 41 self.items = items 77 len(PRESUBMIT.LocalChecks(api, MockOutputApi)[0].items) == 3)
|
/external/emma/core/java12/com/vladium/emma/report/ |
Item.java | 52 final IItem [] items = new IItem [m_children.size ()]; local 53 m_children.toArray (items); 55 Arrays.sort (items, order); 57 return Arrays.asList (items).iterator ();
|
/external/webkit/WebKit/qt/Api/ |
qwebhistory.cpp | 224 A list of items describing the pages that can be visited by going back can be 225 obtained by calling the backItems() function; similarly, items describing the 227 The total list of items is obtained with the items() function. 230 of a list. Arbitrary items in the history can be obtained with itemAt(), the total 231 number of items is given by count(), and the history can be cleared with the 254 \sa count(), items() 282 Returns a list of all items currently in the history. 286 QList<QWebHistoryItem> QWebHistory::items() const function in class:QWebHistory 288 const WebCore::HistoryItemVector &items = d->lst->entries() local 502 const WebCore::HistoryItemVector &items = d->lst->entries(); local [all...] |
/external/webkit/WebKit/win/ |
MarshallingHelpers.cpp | 233 CFStringRef* items = 0; local 235 items = new CFStringRef[len]; 239 items[lBound] = BSTRToCFStringRef(str); 243 CFArrayRef result = CFArrayCreate(0, (const void**)items, len, &kCFTypeArrayCallBacks); 244 if (items) 245 delete[] items; 256 CFNumberRef* items = 0; local 258 items = new CFNumberRef[len]; 262 items[lBound] = intToCFNumberRef(num); 265 CFArrayRef result = CFArrayCreate(0, (const void**) items, len, &kCFTypeArrayCallBacks) 278 void* items; local [all...] |
/external/webkit/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()); 196 * @limit: the number of items to retrieve 198 * Returns a list of items that succeed the current item, limited by @limit 200 * Return value: a #GList of items succeeding the current item, limited by @limit 210 WebCore::HistoryItemVector items; 213 backForwardList->forwardListWithLimit(limit, items); 215 for (unsigned i = 0; i < items.size(); i++) { 216 WebKitWebHistoryItem* webHistoryItem = kit(items[i]) [all...] |
/packages/apps/Settings/src/com/android/settings/ |
AppWidgetPickActivity.java | 82 void putCustomAppWidgets(List<PickAdapter.Item> items) { 131 if (LOGD) Log.d(TAG, "Using " + customInfo.size() + " custom items"); 132 putAppWidgetItems(customInfo, customExtras, items); 169 List<Bundle> customExtras, List<PickAdapter.Item> items) { 195 items.add(item); 200 * Build and return list of items to be shown in dialog. This will mix both 206 List<PickAdapter.Item> items = new ArrayList<PickAdapter.Item>(); local 208 putInstalledAppWidgets(items); 209 putCustomAppWidgets(items); 211 // Sort all items together by labe [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MapItem.java | 53 * {@code > 0;} count of items covered; {@code 1} if this 73 if (mapSection.items().size() != 0) { 75 "mapSection.items().size() != 0"); 78 ArrayList<MapItem> items = new ArrayList<MapItem>(50); local 86 for (Item item : section.items()) { 90 items.add(new MapItem(currentType, section, 102 // Add a MapItem for the final items in the section. 103 items.add(new MapItem(currentType, section, 107 items.add(new MapItem(mapSection)); 112 new UniformListItem<MapItem>(ItemType.TYPE_MAP_LIST, items)); [all...] |
HeaderSection.java | 54 public Collection<? extends Item> items() { method in class:HeaderSection
|
/external/zlib/ |
zutil.c | 216 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) 219 ulg bsize = (ulg)items*size; 275 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) 278 return _halloc((long)items, size); 296 extern voidp calloc OF((uInt items, uInt size)); 300 voidpf ZLIB_INTERNAL 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/third_party/icu/source/tools/toolutil/ |
package.cpp | 414 if(items[idx].isDataOwned) { 415 free(items[idx].data); 516 fprintf(stderr, "icupkg: too many items, maximum is %d\n", MAX_FILE_COUNT); 543 memset(items, 0, itemCount*sizeof(Item)); 550 * Get the common prefix of the items. 583 items[i].name=s+prefixLength; 586 items[i].data=(uint8_t *)inBytes+ds->readUInt32(inEntries[i].dataOffset); 588 items[i-1].length=(int32_t)(items[i].data-items[i-1].data) [all...] |
/external/icu4c/tools/toolutil/ |
package.cpp | 419 if(items[idx].isDataOwned) { 420 free(items[idx].data); 521 fprintf(stderr, "icupkg: too many items, maximum is %d\n", MAX_FILE_COUNT); 548 memset(items, 0, itemCount*sizeof(Item)); 555 * Get the common prefix of the items. 588 items[i].name=s+prefixLength; 591 items[i].data=(uint8_t *)inBytes+ds->readUInt32(inEntries[i].dataOffset); 593 items[i-1].length=(int32_t)(items[i].data-items[i-1].data) [all...] |
/external/webkit/WebCore/html/ |
HTMLSelectElement.cpp | 136 const Vector<Element*>& items = listItems(); local 137 for (unsigned i = 0; i < items.size(); i++) { 138 if (items[i]->hasLocalName(optionTag) && static_cast<HTMLOptionElement*>(items[i])->selected()) 139 return static_cast<HTMLOptionElement*>(items[i])->value(); 150 const Vector<Element*>& items = listItems(); local 152 for (unsigned i = 0; i < items.size(); i++) { 153 if (items[i]->hasLocalName(optionTag)) { 154 if (static_cast<HTMLOptionElement*>(items[i])->value() == value) { 412 const Vector<Element*>& items = listItems() local [all...] |
/external/webkit/WebCore/wml/ |
WMLSelectElement.cpp | 337 const Vector<Element*>& items = m_data.listItems(this); local 338 if (items.isEmpty()) 366 ASSERT(listIndex < (int) items.size()); 368 if (OptionElement* optionElement = toOptionElement(items[listIndex])) 387 const Vector<Element*>& items = m_data.listItems(this); local 389 for (unsigned i = 0; i < items.size(); ++i) { 390 OptionElement* optionElement = toOptionElement(items[i]); 450 const Vector<Element*>& items = m_data.listItems(this); local 451 if (items.isEmpty()) 463 for (unsigned i = 0; i < items.size(); ++i) 486 const Vector<Element*>& items = m_data.listItems(this); local [all...] |
/external/qemu/android/tools/ |
gen-hw-config.py | 58 # parse the source file and record items 60 # support files without sections, or multiply defined items 62 items = [] variable 94 if lastItem: items.append(lastItem) 100 items.append(lastItem) 118 for item in items:
|
/external/srec/srec/crec/ |
astar_pphash.c | 39 hash->items[i] = FSH_NULL; 100 p_return = hash->items[hkey_index]; 122 p_insert = &hash->items[hkey_index]; 157 p_insert = &hash->items[hkey_index];
|
astar_pphash.h | 42 partial_path* items[FSH_HASHSIZE]; member in struct:__anon7572
|
/external/webkit/WebCore/dom/ |
OptionElement.cpp | 56 const Vector<Element*>& items = selectElement->listItems(); local 57 int length = items.size(); 60 if (!isOptionElement(items[i])) 62 if (items[i] == element)
|
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseLocaleTest.java | 69 ArrayList<String> items = new ArrayList<String>(); local 71 items.add(c.getString(0)); 74 String[] result = items.toArray(new String[items.size()]);
|
/frameworks/base/tools/aidl/ |
aidl.cpp | 237 check_filenames(const char* filename, document_item_type* items) 240 while (items) { 241 if (items->item_type == PARCELABLE_TYPE) { 242 parcelable_type* p = (parcelable_type*)items; 245 else if (items->item_type == INTERFACE_TYPE) { 246 interface_type* c = (interface_type*)items; 251 items->item_type); 254 items = items->next; 288 gather_types(const char* filename, document_item_type* items) [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...] |