/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
getAttributeNS02.java | 80 testAddr = (Element) elementList.item(0); 84 testAddr = (Element) elementList.item(0);
|
namednodemapsetnameditemns06.java | 79 element = (Element) elementList.item(0); 82 element = (Element) elementList.item(1);
|
namednodemapsetnameditemns07.java | 85 element = (Element) elementList.item(0); 88 element = (Element) elementList.item(1);
|
namednodemapsetnameditemns08.java | 81 element = (Element) elementList.item(0); 84 element = (Element) elementList.item(1);
|
normalize01.java | 81 firstChild = elementList.item(2); 83 textNode = (CharacterData) textList.item(0);
|
removeAttributeNS01.java | 86 gender = genderList.item(2); 95 genElement = (Element) gList.item(0);
|
removeAttributeNS02.java | 89 testAddr = elementList.item(0); 92 testAddr = elementList.item(0);
|
setNamedItemNS01.java | 87 anotherElement = elementList.item(2); 90 testAddress = elementList.item(0);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
GetAttributeNodeNS.java | 83 testAddr = (Element) elementList.item(0); 96 testAddr = (Element) elementList.item(0);
|
HasAttributes.java | 77 addrNode = addrList.item(0); 88 addrNode = addrList.item(0);
|
Normalize.java | 86 firstChild = elementList.item(2); 88 textNode = (CharacterData) textList.item(0);
|
SetAttributeNS.java | 87 testAddr = elementList.item(0); 108 testAddr = elementList.item(0); 137 // gender = genderList.item(2); 139 // gen = genList.item(0); 147 // genElement = (Element) gList.item(0); 172 testAddr = elementList.item(0); 200 testAddr = elementList.item(0); 216 testAddr = elementList.item(0); 237 testAddr = elementList.item(0); 264 testAddr = elementList.item(0) [all...] |
/ndk/sources/host-tools/make-3.81/ |
hash.h | 40 typedef void (*hash_map_func_t) __P((void const *item)); 41 typedef void (*hash_map_arg_func_t) __P((void const *item, void *arg)); 66 void *hash_insert __P((struct hash_table *ht, const void *item)); 67 void *hash_insert_at __P((struct hash_table *ht, const void *item, void const *slot)); 68 void *hash_delete __P((struct hash_table *ht, void const *item)); 79 #define HASH_VACANT(item) ((item) == 0 || (void *) (item) == hash_deleted_item)
|
/packages/apps/Browser/src/com/android/browser/ |
ActivityController.java | 44 boolean onOptionsItemSelected(MenuItem item); 48 boolean onContextItemSelected(MenuItem item);
|
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/ |
ImDataItem.java | 25 * Represents an IM data item, wrapping the columns in 42 public static ImDataItem createFromEmail(EmailDataItem item) { 43 ImDataItem im = new ImDataItem(new ContentValues(item.getContentValues()), true);
|
/packages/apps/Contacts/src/com/android/contacts/preference/ |
ContactsPreferenceActivity.java | 58 * corresponding menu item can be removed. 66 public boolean onOptionsItemSelected(MenuItem item) { 67 switch (item.getItemId()) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
SnailSource.java | 35 mMatcher.add("/snail/item/*", SNAIL_ITEM); 38 // The only path we accept is "/snail/set/id" and "/snail/item/id" 44 String itemPath = "/snail/item/" + mMatcher.getVar(0); 45 SnailItem item = local 47 return new SnailAlbum(path, item); 68 return Path.fromString("/snail/item").getChild(id);
|
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
SmilLayoutElementImpl.java | 50 if (childNodes.item(i).getNodeName().equals("root-layout")) { 51 rootLayoutNode = (SMILRootLayoutElement)childNodes.item(i);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
FlagXmlPropertyDialog.java | 112 // Enforce single-item selection 195 if (e.item instanceof TableItem) { 196 TableItem item = (TableItem) e.item; local 197 item.setChecked(!item.getChecked()); 208 TableItem item = mTable.getSelection()[0]; local 209 item.setChecked(!item.getChecked());
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
domstringlistitem02.js | 78 The item method of the DOMStringList Returns the indexth item in the collection. 81 Invoke the first item on the list of parameters returned by the DOMConfiguration object and 82 make sure it is not null. Then invoke the 100th item and verify that null is returned. 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#DOMStringList-item 106 retStr = paramList.item(0); 108 retStr = paramList.item(100);
|
/frameworks/base/core/java/android/app/ |
LauncherActivity.java | 63 * An item in the list 122 ListItem item = mActivitiesList.get(position); local 123 intent.setClassName(item.packageName, item.className); 124 if (item.extras != null) { 125 intent.putExtras(item.extras); 162 private void bindView(View view, ListItem item) { 164 text.setText(item.label); 166 if (item.icon == null) { 167 item.icon = mIconResizer.createIconThumbnail(item.resolveInfo.loadIcon(getPackageManager())) 210 ListItem item = values.get(i); local [all...] |
/packages/apps/Dialer/src/com/android/dialer/interactions/ |
PhoneNumberInteraction.java | 163 final PhoneItem item = getItem(position); local 165 CharSequence value = ContactDisplayUtils.getLabelForCallOrSms((int) item.type, 166 item.label, mInteractionType, getContext()); 380 PhoneItem item = new PhoneItem(); local 381 item.id = cursor.getLong(cursor.getColumnIndex(Data._ID)); 382 item.phoneNumber = cursor.getString(cursor.getColumnIndex(Phone.NUMBER)); 383 item.accountType = 385 item.dataSet = cursor.getString(cursor.getColumnIndex(RawContacts.DATA_SET)); 386 item.type = cursor.getInt(cursor.getColumnIndex(Phone.TYPE)); 387 item.label = cursor.getString(cursor.getColumnIndex(Phone.LABEL)) 407 PhoneItem item = phoneList.get(0); local [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/ |
ByteCatchList.java | 54 * Gets the indicated item. 56 * @param n {@code >= 0;} which item 57 * @return {@code null-ok;} the indicated item 59 public Item get(int n) { 60 return (Item) get0(n); 64 * Sets the item at the given index. 67 * @param item {@code non-null;} the item 69 public void set(int n, Item item) { [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
ByteCatchList.java | 54 * Gets the indicated item. 56 * @param n {@code >= 0;} which item 57 * @return {@code null-ok;} the indicated item 59 public Item get(int n) { 60 return (Item) get0(n); 64 * Sets the item at the given index. 67 * @param item {@code non-null;} the item 69 public void set(int n, Item item) { [all...] |
/external/harfbuzz/src/ |
harfbuzz-hebrew.c | 57 assert(shaper_item->item.script == HB_Script_Hebrew); 73 const HB_UChar16 *uc = shaper_item->string + shaper_item->item.pos; 82 HB_STACKARRAY(HB_UChar16, shapedChars, 2 * shaper_item->item.length); 86 for (i = 1; i < shaper_item->item.length; ++i) { 175 shaper_item->item.bidiLevel % 2);
|