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

1 2 34 5 6 7 8 91011>>

  /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...]
  /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...]
  /external/webkit/Source/WebCore/wml/
WMLSelectElement.cpp 344 const Vector<Element*>& items = m_data.listItems(this); local
345 if (items.isEmpty())
373 ASSERT(listIndex < (int) items.size());
375 if (OptionElement* optionElement = toOptionElement(items[listIndex]))
394 const Vector<Element*>& items = m_data.listItems(this); local
396 for (unsigned i = 0; i < items.size(); ++i) {
397 OptionElement* optionElement = toOptionElement(items[i]);
457 const Vector<Element*>& items = m_data.listItems(this); local
458 if (items.isEmpty())
470 for (unsigned i = 0; i < items.size(); ++i)
493 const Vector<Element*>& items = m_data.listItems(this); local
    [all...]
  /external/clang/utils/
SummarizeErrors 18 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/inspector/
InspectorFrontendHost.cpp 61 static PassRefPtr<FrontendMenuProvider> create(InspectorFrontendHost* frontendHost, ScriptObject webInspector, const Vector<ContextMenuItem*>& items)
63 return adoptRef(new FrontendMenuProvider(frontendHost, webInspector, items));
73 FrontendMenuProvider(InspectorFrontendHost* frontendHost, ScriptObject webInspector, const Vector<ContextMenuItem*>& items)
76 , m_items(items)
244 void InspectorFrontendHost::showContextMenu(Event* event, const Vector<ContextMenuItem*>& items)
253 RefPtr<FrontendMenuProvider> menuProvider = FrontendMenuProvider::create(this, webInspectorObj, items);
  /external/webkit/Source/WebKit/win/Interfaces/
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...]
  /frameworks/base/core/java/android/animation/
AnimatorSet.java 120 * @param items The animations that will be started simultaneously.
122 public void playTogether(Animator... items) {
123 if (items != null) {
125 Builder builder = play(items[0]);
126 for (int i = 1; i < items.length; ++i) {
127 builder.with(items[i]);
135 * @param items The animations that will be started simultaneously.
137 public void playTogether(Collection<Animator> items) {
138 if (items != null && items.size() > 0)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 255 ResourceItem[] items = setupResourceList();
256 selectItemName(newName, items);
271 ResourceItem[] items = setupResourceList();
277 for (ResourceItem item : items) {
284 ResourceItem[] newItems = new ResourceItem[items.length + 1];
285 System.arraycopy(items, 0, newItems, 0, items.length);
286 newItems[items.length] = new ResourceItem(newName);
287 items = newItems;
288 Arrays.sort(items);
405 Collection<ResourceItem> items = null; local
474 ResourceItem[] items = setupResourceList(); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebBlobData.cpp 57 return m_private->items().size();
64 if (index >= m_private->items().size())
67 const BlobDataItem& item = m_private->items()[index];
  /external/webkit/Source/WebKit/efl/ewk/
ewk_history.cpp 277 WebCore::HistoryItemVector items; local
279 core->forwardListWithLimit(limit, items);
280 return _ewk_history_item_list_get(items);
287 * @param limit the maximum number of items to return.
301 WebCore::HistoryItemVector items; local
302 core->forwardListWithLimit(limit, items);
303 return _ewk_history_item_list_get(items);
337 WebCore::HistoryItemVector items; local
339 core->backListWithLimit(limit, items);
340 return _ewk_history_item_list_get(items);
361 WebCore::HistoryItemVector items; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboAlbum.java 24 // ComboAlbum combines multiple media sets into one. It lists all media items
43 ArrayList<MediaItem> items = new ArrayList<MediaItem>(); local
50 items.addAll(fetchItems);
57 return items;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderSection.java 54 public Collection<? extends Item> items() { method in class:HeaderSection
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderSection.java 54 public Collection<? extends Item> items() { method in class:HeaderSection
  /external/chromium/chrome/browser/importer/
external_process_importer_host.h 35 uint16 items,
47 // Bitmask of items to be imported (see importer::ImportItem enum).
importer.h 28 uint16 items,
profile_import_process_host.h 41 // |source_profile|, |items|, and |import_to_bookmark_bar| are all needed by
44 uint16 items,
  /external/chromium/webkit/glue/
webmenurunner_mac.h 41 // Initializes the MenuDelegate with a list of items sent from WebKit.
42 - (id)initWithItems:(const std::vector<WebMenuItem>&)items
  /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:__anon11125
  /external/webkit/Source/WebCore/bindings/js/
JSInspectorFrontendHostCustom.cpp 91 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/
V8InspectorFrontendHostCustom.cpp 79 Vector<ContextMenuItem*> items; local
92 items.append(new ContextMenuItem(SeparatorType,
102 items.append(menuItem);
107 frontendHost->showContextMenu(event, items);
  /external/webkit/Source/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()]);
  /external/markdown/
regression-tests.py 150 """ Test output of OrderedDict.items(). """
151 self.assertEqual(self.odict.items(),
158 self.assertEqual(self.odict.items(),
165 self.assertEqual(self.odict.items(),
172 self.assertEqual(self.odict.items(),
179 self.assertEqual(self.odict.items(),
186 self.assertEqual(self.odict.items(),
198 self.assertEqual(self.odict.items(),
204 self.assertEqual(self.odict.items(),
211 self.assertEqual(self.odict.items(),
    [all...]

Completed in 1450 milliseconds

1 2 34 5 6 7 8 91011>>