/prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/man/man1/ |
arm-eabi-strings.1 | 157 .IX Item "-a" 160 .IX Item "--all" 162 .IX Item "-" 167 .IX Item "-f" 170 .IX Item "--print-file-name" 174 .IX Item "--help" 177 .IX Item "-min-len" 180 .IX Item "-n min-len" 182 .IX Item "--bytes=min-len" 187 .IX Item "-o [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/man/man1/ |
arm-eabi-strings.1 | 157 .IX Item "-a" 160 .IX Item "--all" 162 .IX Item "-" 167 .IX Item "-f" 170 .IX Item "--print-file-name" 174 .IX Item "--help" 177 .IX Item "-min-len" 180 .IX Item "-n min-len" 182 .IX Item "--bytes=min-len" 187 .IX Item "-o [all...] |
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/man/man1/ |
i686-unknown-linux-gnu-strings.1 | 157 .IX Item "-a" 160 .IX Item "--all" 162 .IX Item "-" 167 .IX Item "-f" 170 .IX Item "--print-file-name" 174 .IX Item "--help" 177 .IX Item "-min-len" 180 .IX Item "-n min-len" 182 .IX Item "--bytes=min-len" 187 .IX Item "-o [all...] |
/bootable/recovery/minzip/ |
Hash.h | 18 /* compute the hash of an item with a specific type */ 19 typedef unsigned int (*HashCompute)(const void* item); 22 * Compare a hash entry with a "loose" item after their hash values match. 114 * If "item" is not found, and "doAdd" is false, NULL is returned. 115 * Otherwise, a pointer to the found or added item is returned. (You can 116 * tell the difference by seeing if return value == item.) 120 void* mzHashTableLookup(HashTable* pHashTable, unsigned int itemHash, void* item, 124 * Remove an item from the hash table, given its "data" pointer. Does not 127 bool mzHashTableRemove(HashTable* pHashTable, unsigned int hash, void* item); 182 typedef unsigned int (*HashCalcFunc)(const void* item); [all...] |
/dalvik/vm/ |
Hash.h | 25 /* compute the hash of an item with a specific type */ 26 typedef u4 (*HashCompute)(const void* item); 29 * Compare a hash entry with a "loose" item after their hash values match. 138 * If "item" is not found, and "doAdd" is false, NULL is returned. 139 * Otherwise, a pointer to the found or added item is returned. (You can 140 * tell the difference by seeing if return value == item.) 145 void* dvmHashTableLookup(HashTable* pHashTable, u4 itemHash, void* item, 149 * Remove an item from the hash table, given its "data" pointer. Does not 152 bool dvmHashTableRemove(HashTable* pHashTable, u4 hash, void* item); 217 typedef u4 (*HashCalcFunc)(const void* item); [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/ |
15.7.4.2-1.js | 50 var item = 0; 53 array[item++] = new TestCase(SECTION, "Number.prototype.toString()", "0", "Number.prototype.toString()" ); 54 array[item++] = new TestCase(SECTION, "typeof(Number.prototype.toString())", "string", "typeof(Number.prototype.toString())" ); 56 array[item++] = new TestCase(SECTION, "s = Number.prototype.toString; o = new Number(); o.toString = s; o.toString()", "0", "s = Number.prototype.toString; o = new Number(); o.toString = s; o.toString()" ); 57 array[item++] = new TestCase(SECTION, "s = Number.prototype.toString; o = new Number(1); o.toString = s; o.toString()", "1", "s = Number.prototype.toString; o = new Number(1); o.toString = s; o.toString()" ); 58 array[item++] = new TestCase(SECTION, "s = Number.prototype.toString; o = new Number(-1); o.toString = s; o.toString()", "-1", "s = Number.prototype.toString; o = new Number(-1); o.toString = s; o.toString()" ); 60 array[item++] = new TestCase(SECTION, "var MYNUM = new Number(255); MYNUM.toString(10)", "255", "var MYNUM = new Number(255); MYNUM.toString(10)" ); 61 array[item++] = new TestCase(SECTION, "var MYNUM = new Number(Number.NaN); MYNUM.toString(10)", "NaN", "var MYNUM = new Number(Number.NaN); MYNUM.toString(10)" ); 62 array[item++] = new TestCase(SECTION, "var MYNUM = new Number(Infinity); MYNUM.toString(10)", "Infinity", "var MYNUM = new Number(Infinity); MYNUM.toString(10)" ); 63 array[item++] = new TestCase(SECTION, "var MYNUM = new Number(-Infinity); MYNUM.toString(10)", "-Infinity", (…) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/ |
15.2.4.3.js | 50 var item = 0; 69 array[item++] = new TestCase( SECTION, "Object.prototype.valueOf.length", 0, Object.prototype.valueOf.length ); 71 array[item++] = new TestCase( SECTION, 75 array[item++] = new TestCase( SECTION, 79 array[item++] = new TestCase( SECTION, 83 array[item++] = new TestCase( SECTION, 87 array[item++] = new TestCase( SECTION, 91 array[item++] = new TestCase( SECTION, 95 array[item++] = new TestCase( SECTION, 99 array[item++] = new TestCase( SECTION [all...] |
/frameworks/base/docs/html/guide/topics/resources/ |
style-resource.jd | 47 <<a href="#item-element">item</a> 49 ><em>style_value</em></item> 64 <dd>Defines a single style. Contains {@code <item>} elements. 78 <dt id="item-element"><code><item></code></dt> 103 <item name="android:textSize">20sp</item> 104 <item name="android:textColor">#008</item> [all...] |
/packages/apps/Calculator/src/com/android/calculator2/ |
Calculator.java | 92 MenuItem item; local 94 item = menu.add(0, CMD_CLEAR_HISTORY, 0, R.string.clear_history); 95 item.setIcon(R.drawable.clear_history); 97 item = menu.add(0, CMD_ADVANCED_PANEL, 0, R.string.advanced); 98 item.setIcon(R.drawable.advanced); 100 item = menu.add(0, CMD_BASIC_PANEL, 0, R.string.basic); 101 item.setIcon(R.drawable.simple); 119 public boolean onOptionsItemSelected(MenuItem item) { 120 switch (item.getItemId()) { 139 return super.onOptionsItemSelected(item); [all...] |
/packages/apps/Mms/res/values-nl/ |
strings.xml | 96 <string name="select_different_media" msgid="7573116916321879964">"Selecteer een ander item (<xliff:g id="NAME">%1$s</xliff:g>)."</string> 99 <string name="failed_to_add_media" msgid="8272471485019037446">"U kunt dit item (<xliff:g id="NAME">%1$s</xliff:g>) niet aan uw bericht toevoegen."</string> 138 <item msgid="4840183714016984112">"1 seconde"</item> 139 <item msgid="3734955613666864447">"2 seconden"</item> 140 <item msgid="6032232473048379828">"3 seconden"</item> 141 <item msgid="5978471781525927827">"4 seconden"</item> [all...] |
/packages/apps/Phone/src/com/android/phone/ |
InCallMenuItemView.java | 29 * The View for each item in the {@link InCallMenuView}. 31 * Each in-call menu item has a text label, an optional "green LED" on/off 58 // TODO: any other styleable attrs we need from the standard menu item style? 82 * Sets whether or not this item's "green LED" state indicator 93 * Turns this item's "green LED" state indicator on or off. 103 * Sets this item's icon, to be drawn above the text label. 115 * Sets this item's icon, to be drawn above the text label. 154 // and the bottom of the item, or the icon and the top of the 155 // item.) 171 * Forces this menu item into "single line" mode, with marqueeing enabled [all...] |
/system/core/init/ |
util.c | 198 void list_add_tail(struct listnode *head, struct listnode *item) 200 item->next = head; 201 item->prev = head->prev; 202 head->prev->next = item; 203 head->prev = item; 206 void list_remove(struct listnode *item) 208 item->next->prev = item->prev; 209 item->prev->next = item->next [all...] |
/dalvik/libcore/luni/src/test/java/com/google/coretests/ |
PerfStatCollector.java | 40 public class Item { 158 ArrayList<Item> items; 159 Item current; 176 Iterator<Item> r = items.iterator(); 178 Item item = r.next(); local 179 item.update(listBad, thresholdDuration); 180 if (item.histRelevance != 0) { 181 item.print(out, bigMarking); 184 if (item.adhocRelevance != 0) [all...] |
/dalvik/libcore/xml/src/main/java/javax/xml/xpath/ |
XPathExpression.java | 38 * of a context item, an empty document node will be used for the context. 87 * <p>See <a href="#XPathExpression-evaluation">Evaluation of XPath Expressions</a> for context item evaluation, 94 * <code>item</code>, an empty document will be used for the 98 * @param item The starting context (node or node list, for example). 108 public Object evaluate(Object item, QName returnType) 114 * <p>This method calls {@link #evaluate(Object item, QName returnType)} with a <code>returnType</code> of 117 * <p>See <a href="#XPathExpression-evaluation">Evaluation of XPath Expressions</a> for context item evaluation, 121 * <code>item</code>, an empty document will be used for the 124 * @param item The starting context (node or node list, for example). 131 public String evaluate(Object item) [all...] |
/development/pdk/docs/porting/ |
customization.jd | 146 <item>Google</item> 147 <item>http://www.google.com/</item> 148 <item>Yahoo!</item> 149 <item>http://www.yahoo.com/</item> 150 <item>MSN</item> [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
SearchInvoke.java | 111 MenuItem item; local 117 // next, add back item(s) based on current menu mode 121 item = menu.add( 0, 0, 0, "(Search Key)"); 125 item = menu.add( 0, 0, 0, "Search"); 126 item.setAlphabeticShortcut(SearchManager.MENU_KEY); 130 item = menu.add( 0, 0, 0, "(Type-To-Search)"); 134 item = menu.add( 0, 0, 0, "(Disabled)"); 138 item = menu.add(0, 1, 0, "Clear History"); 142 /** Handle the menu item selections */ 144 public boolean onOptionsItemSelected(MenuItem item) { [all...] |
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
MyRssReader5.java | 74 // Set the last selected item. 86 // with the index of a recently deleted item. 93 // This method is sometimes called after a backing data item 141 public boolean onOptionsItemSelected(Menu.Item item){ 142 super.onOptionsItemSelected(item); 144 switch (item.getId()){ 153 case 2: // Add Item 155 // Use an ID so that if we create a "remove item" form we 159 case 3: // Delete item [all...] |
/external/webkit/WebKit/mac/History/ |
WebBackForwardList.h | 63 - (void)addItem:(WebHistoryItem *)item; 80 @param item The history item to move the pointer to 82 - (void)goToItem:(WebHistoryItem *)item; 151 @param item The item that will be checked for presence in the WebBackForwardList. 152 @result Returns YES if the item is in the list. 154 - (BOOL)containsItem:(WebHistoryItem *)item; 159 @param index Index of the desired list item relative to the current item; 0 is current item, -1 is back item, 1 is forward item, etc [all...] |
/external/emma/core/java12/com/vladium/emma/report/xml/ |
ReportGenerator.java | 94 public Object visit (final AllItem item, final Object ctx) 147 emitStatsCount ("packages", item.getChildCount ()); 148 emitStatsCount ("classes", item.getAggregate (IItem.TOTAL_CLASS_COUNT)); 149 emitStatsCount ("methods", item.getAggregate (IItem.TOTAL_METHOD_COUNT)); 153 emitStatsCount ("srcfiles", item.getAggregate (IItem.TOTAL_SRCFILE_COUNT)); 156 emitStatsCount ("srclines", item.getAggregate (IItem.TOTAL_LINE_COUNT)); 170 emitItem (item, childrenOrder); 189 public Object visit (final PackageItem item, final Object ctx) 191 if (m_verbose) m_log.verbose (" report: processing package [" + item.getName () + "] ..."); 196 emitItem (item, childrenOrder) [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppNotification.java | 227 NotificationItem item = new NotificationItem(); local 228 item.id = id; 229 item.direction = dir; 230 if (item.direction == BluetoothShare.DIRECTION_OUTBOUND) { 231 item.description = mContext.getString(R.string.notification_sending, fileName); 232 } else if (item.direction == BluetoothShare.DIRECTION_INBOUND) { 233 item.description = mContext 238 item.totalCurrent = current; 239 item.totalTotal = total; 241 mNotifications.put(batchID, item); [all...] |
/external/quake/quake/src/QW/progs/ |
items.qc | 75 local entity item;
77 item = spawn();
78 item.origin = self.origin;
80 item.velocity_z = 300;
81 item.velocity_x = -100 + (random() * 200);
82 item.velocity_y = -100 + (random() * 200);
84 item.flags = FL_ITEM;
85 item.solid = SOLID_TRIGGER;
86 item.movetype = MOVETYPE_TOSS;
87 item.noise = "items/damage.wav"; [all...] |
/packages/apps/Gallery3D/src/com/cooliris/cache/ |
CacheService.java | 329 MediaItem item = (reuseItem == null) ? new MediaItem() : reuseItem; local 331 item.mId = dis.readLong(); 332 item.mCaption = Utils.readUTF(dis); 333 item.mMimeType = Utils.readUTF(dis); 334 item.setMediaType(dis.readInt()); 335 item.mLatitude = dis.readDouble(); 336 item.mLongitude = dis.readDouble(); 337 item.mDateTakenInMs = dis.readLong(); 338 item.mTriedRetrievingExifDateTaken = dis.readBoolean(); 339 item.mDateAddedInSec = dis.readLong() 1110 final MediaItem item = new MediaItem(); local 1191 MediaItem item = items.get(i); local [all...] |
/frameworks/base/core/java/android/widget/ |
AdapterView.java | 45 * The item view type returned by {@link Adapter#getItemViewType(int)} when 46 * the adapter does not want the item's view recycled. 51 * The item view type returned by {@link Adapter#getItemViewType(int)} when 52 * the item is a header or footer. 121 * The listener that receives notifications when an item is selected. 126 * The listener that receives notifications when an item is clicked. 131 * The listener that receives notifications when an item is long clicked. 141 * The position within the adapter's data set of the item to select 148 * The item id of the item to select during the next layout [all...] |
/frameworks/base/core/res/res/values-pt-rPT/ |
strings.xml | 195 <string name="permdesc_setDebugApp" msgid="5584310661711990702">"Permite a uma aplicação activar a depuração para outra aplicação. Algumas aplicações maliciosas podem utilizar este item para eliminar outras aplicações."</string> 215 <string name="permdesc_broadcastPackageRemoved" msgid="3453286591439891260">"Permite a uma aplicação difundir uma notificação de que foi removido um pacote de aplicações. Algumas aplicações maliciosas podem utilizar este item para eliminar qualquer outra aplicação em execução."</string> 217 <string name="permdesc_broadcastSmsReceived" msgid="9122419277306740155">"Permite a uma aplicação difundir uma notificação de que foi recebida uma mensagem SMS. Algumas aplicações maliciosas podem utilizar este item para falsificar mensagens SMS a receber."</string> 219 <string name="permdesc_broadcastWapPush" msgid="3955303669461378091">"Permite a uma aplicação difundir uma notificação de que foi recebida uma mensagens PUSH WAP. Algumas aplicações maliciosas podem utilizar este item para falsificar um recibo de mensagem MMS ou substituir, de forma silenciosa, o conteúdo de qualquer página Web por variantes maliciosas."</string> 237 <string name="permdesc_injectEvents" msgid="3946098050410874715">"Permite a uma aplicação fornecer os seus próprios eventos de entrada (toques em teclas, etc.) a outras aplicações. Algumas aplicações maliciosas podem utilizar este item para controlar o telefone."</string> 253 <string name="permdesc_deletePackages" msgid="3634943677518723314">"Permite a uma aplicação eliminar pacotes do Android. Algumas aplicações maliciosas podem utilizar este item para eliminar aplicações importantes."</string> 261 <string name="permdesc_installPackages" msgid="526669220850066132">"Permite a uma aplicação instalar pacotes novos ou actualizados do Android. Algumas aplicações maliciosas podem utilizar este item para adicionar novas aplicações com autorizações arbitrariamente fortes."</string> [all...] |
/packages/apps/Mms/res/values-el/ |
strings.xml | 138 <item msgid="4840183714016984112">"1 ????????????"</item> 139 <item msgid="3734955613666864447">"2 ????????????"</item> 140 <item msgid="6032232473048379828">"3 ????????????"</item> 141 <item msgid="5978471781525927827">"4 ????????????"</item> 142 <item msgid="4888440297621208402">"5 ????????????"</item> [all...] |