/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_set_literal.py | 18 (atom=atom< '[' (items=listmaker< any ((',' any)* [',']) > 22 atom< '(' items=testlist_gexp< any ((',' any)* [',']) > ')' > 33 items = fake 35 items = results["items"] 39 literal.extend(n.clone() for n in items.children) 42 literal[-1].prefix = items.next_sibling.prefix
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_set_literal.py | 18 (atom=atom< '[' (items=listmaker< any ((',' any)* [',']) > 22 atom< '(' items=testlist_gexp< any ((',' any)* [',']) > ')' > 33 items = fake 35 items = results["items"] 39 literal.extend(n.clone() for n in items.children) 42 literal[-1].prefix = items.next_sibling.prefix
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_set_literal.py | 18 (atom=atom< '[' (items=listmaker< any ((',' any)* [',']) > 22 atom< '(' items=testlist_gexp< any ((',' any)* [',']) > ')' > 33 items = fake 35 items = results["items"] 39 literal.extend(n.clone() for n in items.children) 42 literal[-1].prefix = items.next_sibling.prefix
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_set_literal.py | 18 (atom=atom< '[' (items=listmaker< any ((',' any)* [',']) > 22 atom< '(' items=testlist_gexp< any ((',' any)* [',']) > ')' > 33 items = fake 35 items = results["items"] 39 literal.extend(n.clone() for n in items.children) 42 literal[-1].prefix = items.next_sibling.prefix
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
test_multidict.py | 14 assert d.items() == [('a', 1)] 18 assert d.items() == [('a', 1), ('b', 2), ('c', 3)] 21 assert d.items() == [('a', 1), ('c', 3), ('b', 4)] 26 assert d.items() == [('a', 1), ('c', 3), ('b', 4), ('b', 5)] 29 assert d.items() == [('a', 1), ('c', 3)] 33 assert d.items() == [('a', 1)] 37 assert d.items() == [('a', 1), ('z', item)] 52 assert d.items() == [('a', 1), ('z', []), ('y', 6), ('x', 'x test'), 83 assert d.items() == [(k('a'), u'a test')] 89 assert d.items() == [(k('a'), u'a test'), (k('b'), u'2 test'), (k('c'), u'3 test') [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Row.java | 21 protected Object[] items; field in class:Row 42 items = new Object[] {a, b}; 47 items = new Object[] {a, b, c}; 52 items = new Object[] {a, b, c, d}; 57 items = new Object[] {a, b, c, d, e}; 65 return (C0) items[0]; 71 return (C1) items[1]; 77 return (C2) items[2]; 83 return (C3) items[3]; 89 return (C4) items[4] [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Row.java | 17 protected Object[] items; field in class:Row 38 items = new Object[] {a, b}; 43 items = new Object[] {a, b, c}; 48 items = new Object[] {a, b, c, d}; 53 items = new Object[] {a, b, c, d, e}; 61 return (C0) items[0]; 67 return (C1) items[1]; 73 return (C2) items[2]; 79 return (C3) items[3]; 85 return (C4) items[4] [all...] |
/frameworks/opt/setupwizard/library/ |
proguard.flags | 6 -keep public class * extends com.android.setupwizardlib.items.ItemHierarchy {
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/ |
SortIndex.java | 20 * A index on a list of items sorted with a given {@link Comparator}. The index 24 * type of the items 55 * comparator to sort items 62 * Initializes the index for the given list of items. 64 * @param items 65 * list of items 67 public void init(final List<? extends T> items) { 70 for (final T i : items) { 75 if (positions == null || positions.length < items.size()) { 76 positions = new int[items.size()] [all...] |
/external/dbus/ |
cleanup-man-pages.sh | 28 (find . -maxdepth 1 -name "_*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move all underscore-prefixed items" 29 (find . -maxdepth 1 -name "DBus*Internal*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move all internal-containing items" 30 (find . -maxdepth 1 -name "dbus_*_internal_*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move all internal-containing items" 65 (find . -maxdepth 1 -name "dbus_*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all dbus-prefixed items [all...] |
/external/mesa3d/src/mesa/program/ |
prog_cache.c | 47 struct cache_item **items; member in struct:gl_program_cache 84 struct cache_item **items; local 91 items = (struct cache_item**) malloc(size * sizeof(*items)); 92 memset(items, 0, size * sizeof(*items)); 95 for (c = cache->items[i]; c; c = next) { 97 c->next = items[c->hash % size]; 98 items[c->hash % size] = c; 101 free(cache->items); [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
Collapser.java | 23 * Class used for collapsing data items into groups of similar items. The data items that should be 25 * function that takes an ArrayList of items and returns a list of the same items collapsed into 37 * can be used for example to collapse similar contact data items into a single item. 45 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed 70 // Remove the null items [all...] |
/frameworks/base/core/java/com/android/internal/view/menu/ |
ActionMenu.java | 129 final ArrayList<ActionMenuItem> items = mItems; local 130 final int itemCount = items.size(); 132 if (items.get(i).getItemId() == id) { 149 final ArrayList<ActionMenuItem> items = mItems; local 150 final int itemCount = items.size(); 153 if (items.get(i).isVisible()) { 164 final ArrayList<ActionMenuItem> items = mItems; local 165 final int itemCount = items.size(); 168 ActionMenuItem item = items.get(i); 201 final ArrayList<ActionMenuItem> items = mItems local 220 final ArrayList<ActionMenuItem> items = mItems; local 233 final ArrayList<ActionMenuItem> items = mItems; local 245 final ArrayList<ActionMenuItem> items = mItems; local [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/iron-selector/test/ |
template-repeat.html | 51 t.items = [{name:'item0'}, {name: 'item1'}, {name: 'item2'}, {name: 'item3'}]; 55 t.items = []; 58 test('supports repeated items', function() { 60 // check items 61 assert.equal(s.items.length, 4); 66 assert.equal(s.items[1], item); 71 test('update items', function() { 73 // check items 74 assert.equal(s.items.length, 4); 77 // update items [all...] |
attr-for-selected.html | 88 var items; 92 items = Array.prototype.slice.apply(selector.querySelectorAll('div[some-attr]')); 97 assert.equal(selector.selectedItem, items[1]); 101 MockInteractions.downAndUp(items[2], function() { 110 var items; 114 items = Array.prototype.slice.apply(selector.querySelectorAll('attr-reflector')); 115 for (var i = 0; i < items.length; i++) { 116 items[i].someAttr = "value" + i; 122 assert.equal(selector.selectedItem, items[1]); 126 MockInteractions.downAndUp(items[2], function() [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
Select.java | 43 public <T> T select (T[] items, Comparator<T> comp, int kthLowest, int size) { 44 int idx = selectIndex(items, comp, kthLowest, size); 45 return items[idx]; 48 public <T> int selectIndex (T[] items, Comparator<T> comp, int kthLowest, int size) { 58 idx = fastMin(items, comp, size); 61 idx = fastMax(items, comp, size); 65 idx = quickSelect.select(items, comp, kthLowest, size); 71 private <T> int fastMin (T[] items, Comparator<T> comp, int size) { 74 int comparison = comp.compare(items[i], items[lowestIdx]) [all...] |
/external/chromium-trace/catapult/tracing/tracing/extras/chrome/cc/ |
display_item_list_test.html | 39 var items = snapshot.items; 40 assert.equal(items.length, 2); 42 assert.equal(items[0], 'BeginClipDisplayItem'); 43 assert.equal(items[1], 'EndClipDisplayItem');
|
/external/clang/test/CodeGenObjC/ |
objc2-write-barrier-3.m | 9 void *__strong * items; 30 void *__strong* items; 31 items[i] = 0; 38 slice->items = 0; 40 slice->items[i] = 0;
|
/external/autotest/client/cros/cellular/wardmodem/state_machines/ |
level_indicators_machine.py | 41 items = self._supported_indicators 43 if len(items) != len(defaults): 46 'length: Items:|%s|, Defaults:|%s|' % (str(items), 48 for index in range(len(items)): 49 self._state[items[index]] = defaults[index]
|
/external/elfutils/libebl/ |
eblcorenote.c | 46 const Ebl_Core_Item **items) 49 regs_offset, nregloc, reglocs, nitems, items); 59 #define ITEMS(type, table) \ 61 *items = table; \ 73 ITEMS (NT_PLATFORM, platform); 75 #undef ITEMS
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
_g_a_s_p.py | 30 items = sorted(self.gaspRange.items()) 31 for rangeMaxPPEM, rangeGaspBehavior in items: 39 items = sorted(self.gaspRange.items()) 40 for rangeMaxPPEM, rangeGaspBehavior in items:
|
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
InMemoryResourceLoader.java | 28 * ResourceLoader that pulls all items from memory. This is particularly useful for small templates 37 private ConcurrentMap<String, String> items = new ConcurrentHashMap<String, String>(); field in class:InMemoryResourceLoader 41 String content = items.get(name); 56 items.put(name, contents); 60 items.remove(name); 64 return items;
|
/external/libxml2/test/schemas/ |
bug322411_0.xml | 4 <items> 29 <items> 53 </items> 54 <items> 87 </items> 88 </items>
|
/frameworks/support/v7/recyclerview/src/android/support/v7/util/ |
ListUpdateCallback.java | 25 * Called when {@code count} number of items are inserted at the given position. 28 * @param count The number of items that have been added. 33 * Called when {@code count} number of items are removed from the given position. 36 * @param count The number of items which have been removed. 49 * Called when {@code count} number of items are updated at the given position. 52 * @param count The number of items which has changed.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/ |
list_pager.py | 13 method='List', field='items', predicate=None, 27 batch_size: int, The number of items to retrieve per request. 29 field: str, The field in the response that will be a list of items. 30 predicate: lambda, A function that returns true for items to be yielded. 49 items = getattr(response, field) 51 items = list(filter(predicate, items)) 52 for item in items:
|