HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 176 - 200 of 818) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 55 void items();
184 * Check QWebHistory::items() method
186 void tst_QWebHistory::items() function in class:tst_QWebHistory
188 QList<QWebHistoryItem> items = hist->items(); local
190 QCOMPARE(histsize, items.count());
194 QCOMPARE(items.at(i - 1).title(), QString("page") + QString::number(i));
221 QList<QWebHistoryItem> items = hist->items(); local
223 QCOMPARE(items.at(i - 1).title(), QString("page") + QString::number(i))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Statistics.java 56 * Adds the given list of items to the statistics.
58 * @param list {@code non-null;} the list of items to add
61 Collection<? extends Item> items = list.items(); local
62 for (Item item : items) {
ProtoIdsSection.java 50 public Collection<? extends Item> items() { method in class:ProtoIdsSection
135 for (Object i : items()) {
  /dalvik/dx/src/com/android/dx/dex/file/
Statistics.java 56 * Adds the given list of items to the statistics.
58 * @param list {@code non-null;} the list of items to add
61 Collection<? extends Item> items = list.items(); local
62 for (Item item : items) {
ProtoIdsSection.java 50 public Collection<? extends Item> items() { method in class:ProtoIdsSection
135 for (Object i : items()) {
  /development/tools/axl/
chewperf.py 79 for x in range(len(buckets.items())):
80 window[x % len(window)] = buckets.items()[x][1]
81 print "%s\t%s" % (buckets.items()[x][0], sum(window) / len(window))
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Statistics.java 56 * Adds the given list of items to the statistics.
58 * @param list {@code non-null;} the list of items to add
61 Collection<? extends Item> items = list.items(); local
62 for (Item item : items) {
  /external/elfutils/backends/
i386_corenote.c 106 return tls_info (descsz, regs_offset, nregloc, reglocs, nitems, items); \
120 size_t *nitems, const Ebl_Core_Item **items)
129 *items = tls_items;
  /external/guava/guava-testlib/src/com/google/common/testing/
EquivalenceTester.java 66 private final List<T> items = Lists.newArrayList(); field in class:EquivalenceTester
102 items.addAll(ImmutableList.copyOf(group));
116 for (T item : items) {
  /external/markdown/markdown/
blockprocessors.py 94 to the parent, and should remove (``pop``) or add (``insert``) items to
106 """ Process children of list items.
260 # Detect items on secondary lines. they can be of either list type.
262 # Detect indented (nested) items of either type
269 # Check fr multiple items in one block.
270 items = self.get_items(blocks.pop(0))
283 firstitem = items.pop(0)
290 # Loop through items in block, recursively parsing each with the
292 for item in items:
303 """ Break a block into list items. ""
    [all...]
  /external/smack/src/org/jivesoftware/smack/provider/
PrivacyProvider.java 84 ArrayList<PrivacyItem> items = new ArrayList<PrivacyItem>(); local
89 items.add(parseItem(parser));
99 privacy.setPrivacyList(listName, items);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ReadContext.java 39 * Namely, it handles "pre-creating" items when an item needs to resolve some other item
40 * that it references, and keeps track of those pre-created items, so the corresponding section
41 * for the pre-created items uses them, instead of creating new items
169 * Sets the items for the specified section. This should be called by an offsetted section
170 * after it is finished reading in all its items.
172 * @param items the full list of items in the section, ordered by offset
174 public void setItemsForSection(ItemType itemType, List<? extends Item> items) {
179 sa.ensureCapacity(items.size())
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLSelectElement.cpp 211 const Vector<Element*>& items = listItems(); local
212 for (unsigned i = 0; i < items.size(); i++) {
213 if (items[i]->hasLocalName(optionTag) && static_cast<HTMLOptionElement*>(items[i])->selected())
214 return static_cast<HTMLOptionElement*>(items[i])->value();
225 const Vector<Element*>& items = listItems(); local
227 for (unsigned i = 0; i < items.size(); i++) {
228 if (items[i]->hasLocalName(optionTag)) {
229 if (static_cast<HTMLOptionElement*>(items[i])->value() == value) {
262 // Ensure that we've determined selectedness of the items at least once prior to changing the size
499 const Vector<Element*>& items = listItems(); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ComprehensionTlv.java 90 ArrayList<ComprehensionTlv> items = new ArrayList<ComprehensionTlv>(); local
95 items.add(ctlv);
103 return items;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 487 ResourceItem[] items = setupResourceList();
488 selectItemName(newName, items);
507 ResourceItem[] items = setupResourceList();
513 for (ResourceItem item : items) {
520 ResourceItem[] newItems = new ResourceItem[items.length + 1];
521 System.arraycopy(items, 0, newItems, 0, items.length);
522 newItems[items.length] = new ResourceItem(newName);
523 items = newItems;
524 Arrays.sort(items);
722 Collection<ResourceItem> items = null; local
804 ResourceItem[] items = setupResourceList(); local
    [all...]
  /external/chromium/chrome/browser/importer/
ie_importer.h 25 uint16 items,
74 // the bookmark items in |bookmarks|.
  /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
109 if lastItem: items.append(lastItem)
115 items.append(lastItem)
133 for item in items:
  /external/smack/src/org/jivesoftware/smack/packet/
Privacy.java 36 * Privacy Items can handle different kind of blocking communications based on JID, group,
50 /** itemLists holds the set of privacy items classified in lists. It is a map where the
51 * key is the name of the list and the value a collection with privacy items. **/
55 * Set or update a privacy list with privacy items.
211 * If there is no default list set, then all Privacy Items are processed.
222 * Users may have zero, one or more privacy items.
225 * collection of privacy items.
297 // Add the list with their privacy items
300 List<PrivacyItem> items = entry.getValue(); local
302 if (items.isEmpty()) {
    [all...]
  /external/webkit/LayoutTests/http/tests/resources/
post-and-verify-hybrid.cgi 24 # 'items' parameter would look like:
25 # <items> := <item>(','<item>)*
29 @items = split(/,/, $values{'items'});
33 foreach $item (@items) {
  /external/webkit/Source/WebKit/mac/History/
WebHistory.h 40 items added. The key for the array is WebHistoryItemsKey.
43 items removed. The key for the array is WebHistoryItemsKey.
104 @param items An array of WebHistoryItems to remove from the WebHistory.
106 - (void)removeItems:(NSArray *)items;
116 or more history items, ordered from most recent to oldest.
117 @result Returns an array of NSCalendarDates for which history items exist in the WebHistory.
140 @discussion Limits the number of items that will be stored by the WebHistory.
141 @param limit The maximum number of items that will be stored by the WebHistory.
147 @result The maximum number of items that will be stored by the WebHistory.
  /external/webkit/Source/WebKit/win/
WebHistory.h 77 /* [in] */ IWebHistoryItem** items);
81 /* [in] */ IWebHistoryItem** items);
91 /* [in] */ IWebHistoryItem** items,
114 /* [retval][out] */ IWebHistoryItem** items);
  /external/webkit/Source/WebKit2/UIProcess/
WebPopupMenuProxy.h 62 virtual void showPopupMenu(const WebCore::IntRect& rect, WebCore::TextDirection, double scaleFactor, const Vector<WebPopupItem>& items, const PlatformPopupMenuData&, int32_t selectedIndex) = 0;
  /external/webkit/Tools/Scripts/webkitpy/common/system/
stack_utils.py 48 for tid, stack in sys._current_frames().items():
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionItem.java 166 * Returns elements representing the given selection of canvas items.
168 * @param items Items to wrap in elements
172 static SimpleElement[] getAsElements(@NonNull List<SelectionItem> items) {
173 return getAsElements(items, null);
177 * Returns elements representing the given selection of canvas items.
179 * @param items Items to wrap in elements
185 @NonNull List<SelectionItem> items,
196 for (SelectionItem cs : items) {
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportActivity.java 115 List<DeliveryReportItem> items = getReportItems(); local
116 if (items == null) {
117 items = new ArrayList<DeliveryReportItem>(1);
118 items.add(new DeliveryReportItem("", getString(R.string.status_none), null));
121 setListAdapter(new DeliveryReportAdapter(this, items));
185 List<DeliveryReportItem> items = new ArrayList<DeliveryReportItem>(); local
198 items.add(new DeliveryReportItem(
204 return items;
280 List<DeliveryReportItem> items = new ArrayList<DeliveryReportItem>(); local
284 items.add(new DeliveryReportItem(getString(R.string.recipient_label)
    [all...]

Completed in 1180 milliseconds

1 2 3 4 5 6 78 91011>>