/external/bison/doc/ |
fdl.texi | 17 @item 41 @item 130 @item 146 @item 184 @item 195 @item 202 @item 209 @item 213 @item 216 @item [all...] |
/external/emma/core/java12/com/vladium/emma/report/ |
Item.java | 7 * $Id: Item.java,v 1.1.1.1.2.1 2004/06/20 20:14:39 vlad_r Exp $ 22 abstract class Item implements IItem 133 protected void addChild (final IItem item) 135 if (item == null) throw new IllegalArgumentException ("null input: item"); 137 m_children.add (item); 147 Item (final IItem parent)
|
/frameworks/base/awt/java/awt/ |
MenuComponent.java | 69 * The selected item index. 162 * MenuItemState getItem(int index) { MenuItem item = 163 * MenuComponent.this.getItem(index); return item.itemState; } public void 496 * Recursively find the menu item for a menu shortcut. 500 * @return the menu item; or null if the item is not available for this 553 * Post the ActionEvent or ItemEvent, depending on type of the menu item. 557 * @return the item rect. 561 * void fireItemAction(int item, long when, int modifiers) { MenuItem mi = 562 * getItem(item); mi.itemSelected(when, modifiers); } MenuItem getItem(in [all...] |
/frameworks/base/core/java/com/android/internal/view/menu/ |
IconMenuView.java | 64 /** Actual number of items (the 'More' view does not count as an item) shown */ 84 /** Item view for the 'More' button */ 87 /** Background of each item (should contain the selected and focused states) */ 223 * The bottom rows will each get a leftover item. Rows (indexed at 0) 224 * that are >= this get a leftover item. Note: if there are 0 leftover 234 // Fill the bottom rows with a leftover item each 244 * Checks whether each item's title is fully visible using the current 247 * @return True if the items fit (each item's text is fully visible), false 259 * If there is only one item on this row, increasing the 282 * @param itemView The item's view to ad [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/ |
ListOfItemsShorterThanScreenTest.java | 55 assertEquals("second item should be positioned item height pixels from top.", 62 assertEquals("next selected item shouldn't have moved", 79 assertTrue("last item should be partially off screen", 105 // go down to one past last item, then back up to the second item. this will 149 assertEquals("bottom of last item should be just above padding; no fading edge.",
|
ListOfItemsTallerThanScreenTest.java | 68 assertEquals("after " + i + " down scrolls across tall item", 118 assertEquals("should be at next item", 125 assertEquals("off screen item shouldn't be a child of list view", 137 fail("couldn't get to last item within 20 down arrows"); 142 // press down enough times to get to bottom of last item 148 // one more time to get across last item 180 * b) the selected view is the last item in the list, and we are scrolled to the bottom
|
/packages/apps/Settings/src/com/android/settings/ |
BandMode.java | 140 BandListItem item; local 148 item = new BandListItem(bands[i]); 149 mBandListAdapter.add(item); 150 if (DBG) log("Add " + item.toString()); 159 item = new BandListItem(i); 160 mBandListAdapter.add(item); 161 if (DBG) log("Add default " + item.toString());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
MultiResourceFile.java | 85 ProjectResourceItem item = projectResources.findResourceItem(type, res.getName()); local 87 if (item == null) { 89 item = new IdResourceItem(res.getName(), false /* isDeclaredInline */); 91 item = new ConfigurableResourceItem(res.getName()); 93 items.add(item); 96 item.add(this); 133 * Adds a resource item to the list
|
/external/grub/docs/ |
grub.texi | 221 @item 224 @item 227 @item 245 @item Recognize multiple executable formats 249 @item Support non-Multiboot kernels 254 @item Load multiples modules 257 @item Load a configuration file 265 @item Provide a menu interface 270 @item Have a flexible command-line interface 282 @item Support multiple filesystem type [all...] |
/external/clearsilver/util/ |
dict.h | 56 * Function: dictRemove - remove item from dictionary. 57 * Description: Removes item identified by <id> from <dict>. 59 * id - identifier of item to remove. 61 * Return: true if item found, false if not. 75 * id - identifier of item to find. 94 * id - pointer to identifier of last item found, or 135 * Function: dictModifyValue - create/modify an item. 152 * Description: Calls <cleanup> for every item in <dict>. If <cleanup> 153 * returns true, then item is removed from <dict>.
|
/frameworks/base/core/tests/coretests/src/android/util/ |
GridScenario.java | 37 * of items, how tall each item should be (in relation to the screen height), and 38 * what item should start with selection. 79 * @return The desired height of 1 item, ignoring overrides 124 * Set the factor that determines how tall each item is in relation to the 133 * Override the item screen size factor for a particular item. Useful for 134 * creating grids with non-uniform item height. 320 * Create a view for a grid item. Override this to create a custom view beyond 324 * @param desiredHeight The height the view should be to respect the desired item
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
AllApps2D.java | 269 final ApplicationInfo item = list.get(i); local 270 int index = Collections.binarySearch(mAllAppsList, item, 275 mAllAppsList.add(index, item); 283 final ApplicationInfo item = list.get(i); local 284 int index = findAppByComponent(mAllAppsList, item); 288 Log.w(TAG, "couldn't find a match for item \"" + item + "\""); 301 private static int findAppByComponent(ArrayList<ApplicationInfo> list, ApplicationInfo item) { 302 ComponentName component = item.intent.getComponent();
|
/external/svox/pico/lib/ |
picopam.c | 78 #define PICOPAM_NA 22 /*PAM has not to deal with this item*/ 79 #define PICOPAM_ERR 23 /*input item is not a valid item*/ 102 #define PICOPAM_STATE_SIZE_IN_ITEM 6 /*size of a state in frame item */ 130 /* byte 61 : 1st attached non PAM item id(0=no item attached) */ 132 /* byte 62 : last attached non PAM item id(0=no item attached)*/ 175 picoos_uint8 nLastAttachedItemId;/*last attached item id*/ 176 picoos_uint8 nCurrAttachedItem; /*current attached item*/ [all...] |
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
NamedNodeMapSetNamedItemNS.java | 107 element = elementList.item(0); 163 element = (Element) elementList.item(1); 167 elementAlt = (Element) elementListAlt.item(1); 203 element = (Element) elementList.item(1); 273 element = (Element) elementList.item(0); 277 element = (Element) elementList.item(1); 305 element = (Element) elementList.item(0); 309 element = (Element) elementList.item(1); 337 element = (Element) elementList.item(0); 341 element = (Element) elementList.item(1) [all...] |
/external/icu4c/common/ |
uarrsort.h | 30 * @param left Pointer to the "left" item. 31 * @param right Pointer to the "right" item. 50 * @param itemSize The size in bytes of each array item.
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
SameOneFrame.java | 28 * This StackMapFrame represents a "same locals 1 stack item frame" or a 29 * "same locals 1 stack item frame extended". 65 * Applies the given verification type visitor to the stack item.
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/ |
15.6.3.1-4.js | 49 var item = 0; 53 array[item++] = new TestCase( SECTION, 58 array[item++] = new TestCase( SECTION,
|
15.6.4.2-3.js | 48 var item = 0; 50 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=true; x.toString=tostr;x.toString()", "true", eval("tostr=Boolean.prototype.toString; x=true; x.toString=tostr;x.toString()") ); 51 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()", "false", eval("tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()") );
|
15.6.4.3-2.js | 48 var item = 0; 50 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()", false, eval("valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()") ); 51 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()", true, eval("valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()") );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/ |
15.3.3.1-3.js | 51 var item = 0; 55 array[item++] = new TestCase( SECTION, 61 array[item++] = new TestCase( SECTION,
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
7.2-6.js | 51 var item = 0; 53 array[item++] = new TestCase( SECTION, "var a\u000Ab = 5; ab=10;ab;", 10, eval("var a\nb = 5; ab=10;ab") ); 54 array[item++] = new TestCase( SECTION, "var a\u000Db = 5; ab=10;b;", 5, eval("var a\nb = 5; ab=10;b") );
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8-1.js | 60 var item = 0; 61 array[item++] = new TestCase( SECTION, 66 array[item++] = new TestCase( SECTION,
|
15.8.1.1-2.js | 45 var item = 0; 48 array[item++] = new TestCase( SECTION, "delete(Math.E)", false, "delete Math.E" ); 49 array[item++] = new TestCase( SECTION, "delete(Math.E); Math.E", MATH_E, "delete Math.E; Math.E" );
|
15.8.1.3-2.js | 47 var item = 0; 51 array[item++] = new TestCase( SECTION, "delete(Math.LN2)", false, "delete(Math.LN2)" ); 52 array[item++] = new TestCase( SECTION, "delete(Math.LN2); Math.LN2", MATH_LN2, "delete(Math.LN2); Math.LN2" );
|
15.8.1.6-2.js | 46 var item = 0; 47 array[item++] = new TestCase( SECTION, "delete Math.PI; Math.PI", 3.1415926535897923846, "delete Math.PI; Math.PI" ); 48 array[item++] = new TestCase( SECTION, "delete Math.PI; Math.PI", false, "delete Math.PI" );
|