/external/libxml2/test/schemas/ |
po1_0.xml | 19 <items>
32 </items>
|
bug322411_1.xsd | 4 <xsd:element name="items"> 8 <xsd:element ref="items" minOccurs="0" maxOccurs="2"/> 23 <xsd:element ref="items"/>
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
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); 84 // write items list to the parcel. 85 int size = items.size(); 88 dest.writeParcelable(items.get(i), flags);
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/ |
MenuAdapter.java | 61 ArrayList<MenuItemImpl> items = mOverflowOnly ? local 64 return items.size(); 66 return items.size() - 1; 75 ArrayList<MenuItemImpl> items = mOverflowOnly ? local 80 return items.get(position); 107 final ArrayList<MenuItemImpl> items = mAdapterMenu.getNonActionItems(); local 108 final int count = items.size(); 110 final MenuItemImpl item = items.get(i);
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/filters/ |
alphabeticalattributes.py | 16 for name, value in sorted(token["data"].items(),
|
/external/cmockery/cmockery_0_1_2/src/example/ |
key_value_test.c | 42 KeyValue * const items = (KeyValue*)test_malloc(sizeof(key_values)); local 43 memcpy(items, key_values, sizeof(key_values)); 44 *state = (void*)items; 45 set_key_values(items, sizeof(key_values) / sizeof(key_values[0]));
|
/external/deqp/framework/delibs/decpp/ |
deRandom.cpp | 110 static const int items[] = { 3, 42, 45, 123, 654, -123, -90, 0, 43 }; 130 rnd.choose(DE_ARRAY_BEGIN(items), DE_ARRAY_END(items), &itemsDst[0], numItemsPicked); 139 static const int items[] = { 3, 42, 45, 123, 654, -123, -90, 0, 43 }; 144 DE_TEST_ASSERT(expected[i] == rnd.choose<int>(DE_ARRAY_BEGIN(items), DE_ARRAY_END(items))); 150 static const int items[] = { 3, 42, 45, 123, 654, -123, -90, 0 }; 152 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(items) == DE_LENGTH_OF_ARRAY(weights)); 157 DE_TEST_ASSERT(expected[i] == rnd.chooseWeighted<int>(DE_ARRAY_BEGIN(items), DE_ARRAY_END(items), &weights[0])) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
StringArrayPropertyEditor.java | 45 String[] items = getItems(property); local 46 return "[" + Joiner.on(", ").join(items) + "]"; 50 * @return the items specified in value of given {@link Property}. 57 // no items
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/ |
IOrderedStack.java | 27 * This stack assumes that when you push 'n' items back, 28 * you're pushing back the last 'n' items popped. 46 * items 0-argNum. Array length and uniqueness not 52 * Tells the stack to take back the last 'argNum' items
|
/external/robolectric/v1/src/test/resources/res/values/ |
strings.xml | 7 <string-array name="items">
|
/external/v8/tools/gyp/test/conditions/elseif/ |
elseif_bad3.gyp | 5 # Trigger an error because there are unexpected trailing items in a condition.
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/ |
PickerColumn.java | 29 public PickerColumn(String[] items) { 30 if (items == null) { 31 throw new IllegalArgumentException("items for PickerColumn cannot be null"); 33 mItems = items;
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
peers.cpp | 518 QStringList items = local 525 for (int i = 0; i < items.size(); i++) { 526 QString str = items.at(i); 552 item->setData(items.join(QString("\n")), peer_role_details); 831 QStringList items = text.split(' '); local 832 QString uuid = items[1]; 833 QString addr = items[2]; 844 items = text.mid(pos + 1, pos2 - pos - 1). 846 name = items[0]; 847 items.append(addr) 866 QStringList items = text.split(' '); local 877 QStringList items = text.split(' '); local 903 QStringList items = local 952 QStringList items = text.split(' '); local 991 QStringList items = text.split(' '); local 1007 QStringList items = text.split(' '); local 1030 QStringList items = text.split(' '); local 1051 QStringList items = text.split(' '); local 1110 QStringList items = text.split(' '); local 1148 QStringList items = text.split(' '); local 1175 QStringList items = text.split(' '); local 1236 QStringList items = text.split(' '); local 1253 QStringList items = text.split(' '); local 1315 QStringList items = text.split(' '); local 1326 QStringList items = text.split(' '); local [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
CumulativeDistribution.java | 45 sum += values.items[i].interval; 46 values.items[i].frequency = sum; 54 sum += values.items[i].interval; 58 intervalSum += values.items[i].interval/sum; 59 values.items[i].frequency = intervalSum; 68 values.items[i].interval = freq; 69 values.items[i].frequency=(i+1)*freq; 83 value = values.items[imid]; 91 return values.items[imin].value; 106 return values.items[index].interval [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
XTagXmlResourceLoader.java | 44 NodeList items = document.getElementsByTagName( tag ); 45 for ( int i = 0; i < items.getLength(); i++ ) { 46 Node node = items.item( i );
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/ |
SetupWizardItemsLayout.java | 23 import com.android.setupwizardlib.items.ItemAdapter; 24 import com.android.setupwizardlib.items.ItemGroup; 25 import com.android.setupwizardlib.items.ItemInflater;
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/ |
IItem.java | 17 package com.android.setupwizardlib.items; 35 * Called by items framework to display the data specified by this item. This method should 39 * display data from this item. This view may be recycled from other items with the
|
/packages/apps/Camera2/src/com/android/camera/burst/ |
BurstArtifact.java | 22 * An artifact consists of media items of the same type. An artifact can be a 29 * Gets all media items in the artifact. 31 * @return all media items in the artifact.
|
/packages/apps/TV/src/com/android/tv/ui/sidepanel/ |
DebugOptionFragment.java | 39 List<Item> items = new ArrayList<>(); local 40 items.add(new ActionItem(getString(R.string.item_watch_history)) { 46 return items;
|
/packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/ |
EventDetector.java | 62 public void onPatDetected(List<PatItem> items) { 63 for (PatItem i : items) { 74 public void onEitItemParsed(VctItem channel, List<EitItem> items) { 89 // If at least a one caption track have been found in EIT items for the given channel, 92 for (EitItem item : items) { 103 for (EitItem item : items) { 108 mEventListener.onEventDetected(tunerChannel, items); 124 // Merges the audio and caption tracks located in PMT items into the tracks of the given 139 // If at least a one caption track have been found in VCT items for the given channel, 179 * @param items a list of EIT items that were receive [all...] |
/system/bt/osi/test/ |
array_test.cpp | 45 int items[100]; local 48 items[i] = i * i; 49 array_append_ptr(array, &items[i]);
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
otTables.py | 169 items = list(mapping.items()) 171 gidItems = [(getGlyphID(a), getGlyphID(b)) for a,b in items] 172 sortableItems = sorted(zip(gidItems, items)) 205 items = sorted(self.mapping.items()) 206 for inGlyph, outGlyph in items: 274 items = list(classDefs.items()) 278 for i in range(len(items)) [all...] |
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
MonitorBasedArrayBlockingQueue.java | 68 /** The queued items */ 69 final E[] items; field in class:MonitorBasedArrayBlockingQueue 70 /** items index for next take, poll or remove */ 72 /** items index for next put, offer, or add. */ 74 /** Number of items in the queue */ 97 return (++i == items.length) ? 0 : i; 105 items[putIndex] = x; 115 final E[] items = this.items; local 116 E x = items[takeIndex] 128 final E[] items = this.items; local 472 final E[] items = this.items; local 526 final E[] items = this.items; local 568 final E[] items = this.items; local 598 final E[] items = this.items; local [all...] |
/frameworks/base/core/java/android/view/ |
Menu.java | 25 * Interface for managing the items in a menu. 28 * You can add items to this menu and handle clicks on your additions. The 29 * easiest way of adding menu items is inflating an XML file into the 40 * <b>expanded menus</b> (only available if six or more menu items are visible, 92 * Category code for the order integer for items/groups that are part of a 98 * Category code for the order integer for items/groups that are provided by 104 * Category code for the order integer for items/groups that are 111 * Category code for the order integer for items/groups that are 119 * any existing menu items in the same group. 159 * This can be used to define groups of items for batch stat [all...] |
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
multidict.py | 34 items = list(args[0].iteritems()) 35 elif hasattr(args[0], 'items'): 36 items = list(args[0].items()) 38 items = list(args[0]) 39 self._items = items 43 self._items.extend(kw.items()) 142 for key, value in self.items(): 160 for key, val in self.items(): 165 items = self._item 266 def items(self): function in function:MultiDict.iteritems 399 def items(self): function in function:NestedMultiDict.iteritems [all...] |