HomeSort by relevance Sort by last modified time
    Searched full:items (Results 401 - 425 of 7086) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_values.py 60 items = []
67 items.append((entry.name, entry.size))
73 self.assertEqual(items, expected)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
weakref.py 84 for key, wr in self.data.items():
95 for key, wr in self.data.items():
114 def items(self): member in class:WeakValueDictionary
116 for key, wr in self.data.items():
183 if not hasattr(dict, "items"):
185 for key, o in dict.items():
266 for key, value in self.data.items():
277 for key, value in self.data.items():
300 def items(self): member in class:WeakKeyDictionary
302 for key, value in self.data.items()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_values.py 60 items = []
67 items.append((entry.name, entry.size))
73 self.assertEqual(items, expected)
  /prebuilts/gdb/linux-x86/lib/python2.7/
weakref.py 84 for key, wr in self.data.items():
95 for key, wr in self.data.items():
114 def items(self): member in class:WeakValueDictionary
116 for key, wr in self.data.items():
183 if not hasattr(dict, "items"):
185 for key, o in dict.items():
266 for key, value in self.data.items():
277 for key, value in self.data.items():
300 def items(self): member in class:WeakKeyDictionary
302 for key, value in self.data.items()
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
std_multimap.i 25 SwigVar_PyObject items = PyObject_CallMethod(obj,(char *)"items",NULL);
26 return traits_asptr_stdseq<std::multimap<K,T>, std::pair<K, T> >::asptr(items, val);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_values.py 60 items = []
67 items.append((entry.name, entry.size))
73 self.assertEqual(items, expected)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
weakref.py 84 for key, wr in self.data.items():
95 for key, wr in self.data.items():
114 def items(self): member in class:WeakValueDictionary
116 for key, wr in self.data.items():
183 if not hasattr(dict, "items"):
185 for key, o in dict.items():
266 for key, value in self.data.items():
277 for key, value in self.data.items():
300 def items(self): member in class:WeakKeyDictionary
302 for key, value in self.data.items()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_values.py 60 items = []
67 items.append((entry.name, entry.size))
73 self.assertEqual(items, expected)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
weakref.py 84 for key, wr in self.data.items():
95 for key, wr in self.data.items():
114 def items(self): member in class:WeakValueDictionary
116 for key, wr in self.data.items():
183 if not hasattr(dict, "items"):
185 for key, o in dict.items():
266 for key, value in self.data.items():
277 for key, value in self.data.items():
300 def items(self): member in class:WeakKeyDictionary
302 for key, value in self.data.items()
    [all...]
  /external/fio/t/
dedupe.c 41 unsigned long items; member in struct:worker_thread
145 * Save some memory and don't add extent items, if we don't
239 static void insert_chunks(struct item *items, unsigned int nitems,
251 s = sizeof(items[i].hash) / sizeof(uint32_t);
252 r = bloom_set(bloom, items[i].hash, s);
255 insert_chunk(&items[i]);
284 struct item *items; local
292 items = malloc(sizeof(*items) * nblocks);
297 items[i].offset = offset
    [all...]
  /frameworks/base/docs/html/google/play/billing/
api.jd 18 <li><a href="#purchase">Purchasing Items</a></li>
61 Managed in-app products are items that have their ownership information
65 state of the items a specific user has purchased. This information is
71 If you are using the Version 3 API, you can also consume managed items within
72 your application. You would typically implement consumption for items that
77 Items</a>.
105 <h2 id="purchase">Purchasing Items</h2>
123 with Google Play to determine what items are owned by the user. To query the
126 product IDs of the purchased items, a list of the individual purchase
216 non-consumable or consumable items
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
TimeClustering.java 34 // If 2 items are greater than 25 miles apart, they will be in different
57 // Initially put 2 items in the same cluster as long as they are within
61 // The minimum change factor in the time between items to consider a
119 ArrayList<SmallItem> items = new ArrayList<SmallItem>(total); local
122 items.add(buf[i]);
126 Collections.sort(items, sDateComparator);
128 int n = items.size();
132 long t = items.get(i).dateInMs;
145 compute(items.get(i));
164 ArrayList<SmallItem> items = mClusters.get(index).getItems() local
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
array.so 
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
UiFacade.java 74 * <li>{@link #dialogSetItems} Set a list of items. Used like a menu.
75 * <li>{@link #dialogSetMultiChoiceItems} Set a multichoice list of items.
76 * <li>{@link #dialogSetSingleChoiceItems} Set a single choice list of items.
92 * <li>You can find out which list items were selected using {@link #dialogGetSelectedItems}, which
109 * items, not both. If you set both, items will take priority.<br>
387 @Rpc(description = "Set alert dialog list items.")
388 public void dialogSetItems(@RpcParameter(name = "items") JSONArray items) {
390 ((AlertDialogTask) mDialogTask).setItems(items);
    [all...]
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/
README.md 6 which displays action items. It covers inflating items from a menu resource,
28 Once this is done, action items will be created for any options menu items that
  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/res/values/
strings.xml 20 <string name="menu_clear">Clear items</string>
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-Basic/
README.md 6 which displays action items. It covers inflating items from a menu resource,
28 Once this is done, action items will be created for any options menu items that
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshMultipleViews/Application/src/main/res/values/
strings.xml 20 <string name="menu_clear">Clear items</string>
  /development/samples/XmlAdapters/res/values/
attrs.xml 31 <!-- Attributes used in bind items for XML cursor adapters. -->
53 <!-- Attributes used in select items for XML cursor adapters.-->
59 <!-- Attributes used to map values to new values in XML cursor adapters' bind items. -->
67 <!-- Attributes used to map values to new values in XML cursor adapters' bind items. -->
  /development/samples/browseable/SwipeRefreshMultipleViews/res/values/
strings.xml 20 <string name="menu_clear">Clear items</string>
  /external/chromium-trace/catapult/dashboard/docs/
deploy-checklist.md 63 - The buttons in the legend should change which items are selected.
64 - The items which aren't loaded by default should items should be
65 loaded later than core items.
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_fixture.py 16 def items(self): member in class:test_fixture.FakeDict
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/
question.py 25 template = "<Question>%(items)s</Question>"
37 items = [
44 items.insert(1, SimpleField('DisplayName', self.display_name))
45 items = ''.join(item.get_as_xml() for item in items)
115 items = ''.join('<ListItem>%s</ListItem>' % item for item in self)
116 return '<List>%s</List>' % items
131 for name, value in self.parameters.items():
245 xml_template = """<QuestionForm xmlns="%(schema_url)s">%%(items)s</QuestionForm>""" % vars()
256 items = ''.join(item.get_as_xml() for item in self
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb/
test_layer2.py 220 # Put a few more items into the table
259 items = table.query('Amazon DynamoDB', range_key_condition=BEGINS_WITH('DynamoDB'))
261 for item in items:
264 assert items.consumed_units > 0
266 items = table.query('Amazon DynamoDB', range_key_condition=BEGINS_WITH('DynamoDB'),
269 for item in items:
272 assert items.consumed_units > 0
275 items = table.scan()
277 for item in items:
280 assert items.consumed_units >
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/iron-selector/
iron-multi-selectable.html 38 * Returns an array of currently selected items.
103 // clear all but the current selected items
109 // Check for items, since this array is populated only when attached
110 if (this.fallbackSelection && this.items.length && !this._selection.get().length) {

Completed in 1376 milliseconds

<<11121314151617181920>>