/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/ |
ApkSettings.java | 50 map.put("hdpi", "hdpi,nodpi"); 51 map.put("mdpi", "mdpi,nodpi"); 52 map.put("ldpi", "ldpi,nodpi");
|
/cts/tests/tests/database/src/android/database/cts/ |
DatabaseUtils_InsertHelperTest.java | 227 values.put("boolean_value", false); 228 values.put("int_value", 123); 229 values.put("long_value", 987654L); 230 values.put("double_value", 654.321); 231 values.put("float_value", 21.1f); 232 values.put("string_value", "insert another row"); 233 values.put("blob_value", blob); 253 values.put("_id", id); 394 values.put("_id", id); 395 values.put("boolean_value", false) [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
WeakHashMapTest.java | 76 whm.put(keyArray[i], valueArray[i]); 104 whm.put(keyArray[i], valueArray[i]); 111 empty.put("something", "here"); 143 whm.put(keyArray[i], valueArray[i]); 150 empty.put("something", "here"); 211 whm.put(keyArray[i], valueArray[i]); 233 whm.put(keyArray[i], valueArray[i]); 254 whm.put(keyArray[i], valueArray[i]); 275 whm.put(keyArray[i], valueArray[i]); 320 whm.put(myObject, myObject) [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
LegacyApiSupport.java | 365 peopleProjectionMap.put(People.NAME, People.NAME); 366 peopleProjectionMap.put(People.DISPLAY_NAME, People.DISPLAY_NAME); 367 peopleProjectionMap.put(People.PHONETIC_NAME, People.PHONETIC_NAME); 368 peopleProjectionMap.put(People.NOTES, People.NOTES); 369 peopleProjectionMap.put(People.TIMES_CONTACTED, People.TIMES_CONTACTED); 370 peopleProjectionMap.put(People.LAST_TIME_CONTACTED, People.LAST_TIME_CONTACTED); 371 peopleProjectionMap.put(People.CUSTOM_RINGTONE, People.CUSTOM_RINGTONE); 372 peopleProjectionMap.put(People.SEND_TO_VOICEMAIL, People.SEND_TO_VOICEMAIL); 373 peopleProjectionMap.put(People.STARRED, People.STARRED); 374 peopleProjectionMap.put(People.PRIMARY_ORGANIZATION_ID, People.PRIMARY_ORGANIZATION_ID) [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
ContentResolverTest.java | 79 values.put(COLUMN_KEY_NAME, KEY1); 80 values.put(COLUMN_VALUE_NAME, VALUE1); 83 values.put(COLUMN_KEY_NAME, KEY2); 84 values.put(COLUMN_VALUE_NAME, VALUE2); 87 values.put(COLUMN_KEY_NAME, KEY3); 88 values.put(COLUMN_VALUE_NAME, VALUE3); 359 values.put(COLUMN_KEY_NAME, key4); 360 values.put(COLUMN_VALUE_NAME, value4); 374 values.put(COLUMN_KEY_NAME, key5); 375 values.put(COLUMN_VALUE_NAME, value5) 418 cvs[0].put(COLUMN_KEY_NAME, key4); method 419 cvs[0].put(COLUMN_VALUE_NAME, value4); method 422 cvs[1].put(COLUMN_KEY_NAME, key5); method 423 cvs[1].put(COLUMN_VALUE_NAME, value5); method [all...] |
/packages/apps/IM/src/com/android/im/service/ |
ContactListManagerAdapter.java | 298 mTemporaryContacts.put(c.getAddress().getFullName(), c); 704 values.put(Imps.BlockedList.USERNAME, username); 705 values.put(Imps.BlockedList.NICKNAME, contact.getName()); 732 values.put(Imps.Contacts.TYPE, Imps.Contacts.TYPE_NORMAL); 733 values.put(Imps.Contacts.CONTACTLIST, listId); 744 values.put(Imps.Contacts.TYPE, type); 768 values.put(Imps.Contacts.SUBSCRIPTION_TYPE, subscriptionType); 769 values.put(Imps.Contacts.SUBSCRIPTION_STATUS, subscriptionStatus); 776 values.put(Imps.Contacts.USERNAME, username); 777 values.put(Imps.Contacts.NICKNAME, nickname) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
ToHTMLStream.java | 70 m_elementFlags.put("BASEFONT", new ElemDesc(0 | ElemDesc.EMPTY)); 71 m_elementFlags.put( 74 m_elementFlags.put("FRAMESET", new ElemDesc(0 | ElemDesc.BLOCK)); 75 m_elementFlags.put("NOFRAMES", new ElemDesc(0 | ElemDesc.BLOCK)); 76 m_elementFlags.put( 79 m_elementFlags.put( 82 m_elementFlags.put("CENTER", new ElemDesc(0 | ElemDesc.BLOCK)); 83 m_elementFlags.put("DIR", new ElemDesc(0 | ElemDesc.BLOCK)); 84 m_elementFlags.put("MENU", new ElemDesc(0 | ElemDesc.BLOCK)); 87 m_elementFlags.put("TT", new ElemDesc(0 | ElemDesc.FONTSTYLE)) 2090 public Object put(String key, Object value) method in class:ToHTMLStream.Trie [all...] |
/bionic/libc/arch-x86/bionic/ |
crtbegin_so.S | 1 /* we put the _init() function here in case the user files for the shared
|
/bionic/libc/kernel/common/linux/ |
klist.h | 25 void (*put)(struct klist_node *); member in struct:klist
|
/build/core/ |
host_shared_library.mk | 22 # Put the built modules of all shared libraries in a common directory
|
shared_library.mk | 23 # Put the built targets of all shared libraries in a common directory
|
/cts/tests/ProcessTest/NoShareUidApp/ |
Android.mk | 21 # and when built explicitly put it in the data partition
|
/cts/tests/ProcessTest/ShareUidApp/ |
Android.mk | 21 # and when built explicitly put it in the data partition
|
/cts/tests/tests/provider/src/android/provider/cts/ |
Contacts_SettingsTest.java | 56 // value.put(Settings._ID, cursor.getInt(0)); 57 // value.put(Settings._SYNC_ACCOUNT, cursor.getString(1)); 58 // value.put(Settings.KEY, cursor.getString(2)); 59 // value.put(Settings.VALUE, cursor.getString(3));
|
/dalvik/libcore/luni/src/main/java/java/util/ |
PropertyPermissionCollection.java | 40 Permission prev = permissions.put(perm.getName(), perm); 48 permissions.put(perm.getName(), np); 84 fields.put("permissions", permissions); //$NON-NLS-1$ 85 fields.put("all_allowed", false); //$NON-NLS-1$
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/ |
MapEntryTest.java | 74 public Object put(Object key, Object val) { method in class:MapEntryTest.Mock_HashMap 82 return super.put(key, val); 140 hm.put(new Integer(1), "one"); 141 hm.put(new Integer(2), "two");
|
/dalvik/libcore/nio/src/main/java/java/nio/ |
CharSequenceAdapter.java | 124 public CharBuffer put(char c) { method in class:CharSequenceAdapter 129 public CharBuffer put(int index, char c) { method in class:CharSequenceAdapter 134 public final CharBuffer put(char[] src, int off, int len) { method in class:CharSequenceAdapter 147 public CharBuffer put(String src, int start, int end) { method in class:CharSequenceAdapter
|
ReadOnlyDirectByteBuffer.java | 77 public ByteBuffer put(byte value) { method in class:ReadOnlyDirectByteBuffer 82 public ByteBuffer put(int index, byte value) { method in class:ReadOnlyDirectByteBuffer 87 public ByteBuffer put(byte[] src, int off, int len) { method in class:ReadOnlyDirectByteBuffer 142 public ByteBuffer put(ByteBuffer buf) { method in class:ReadOnlyDirectByteBuffer
|
ReadOnlyHeapByteBuffer.java | 84 public ByteBuffer put(byte b) { method in class:ReadOnlyHeapByteBuffer 89 public ByteBuffer put(int index, byte b) { method in class:ReadOnlyHeapByteBuffer 94 public ByteBuffer put(byte[] src, int off, int len) { method in class:ReadOnlyHeapByteBuffer 149 public ByteBuffer put(ByteBuffer buf) { method in class:ReadOnlyHeapByteBuffer
|
/dalvik/libcore/text/src/main/java/java/text/ |
DecimalFormatSymbols.java | 499 fields.put("currencySymbol", currencySymbol); //$NON-NLS-1$ 500 fields.put("decimalSeparator", getDecimalSeparator()); //$NON-NLS-1$ 501 fields.put("digit", getDigit()); //$NON-NLS-1$ 502 fields.put("exponential", getExponential()); //$NON-NLS-1$ 503 fields.put("groupingSeparator", getGroupingSeparator()); //$NON-NLS-1$ 504 fields.put("infinity", infinity); //$NON-NLS-1$ 505 fields.put("intlCurrencySymbol", intlCurrencySymbol); //$NON-NLS-1$ 506 fields.put("minusSign", getMinusSign()); //$NON-NLS-1$ 507 fields.put("monetarySeparator", getMonetaryDecimalSeparator()); //$NON-NLS-1$ 508 fields.put("NaN", NaN); //$NON-NLS-1 [all...] |
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
ProtocolVersion.java | 125 protocolsByName.put(SSLv3.name, SSLv3); 126 protocolsByName.put(TLSv1.name, TLSv1); 127 protocolsByName.put("SSL", SSLv3); 128 protocolsByName.put("TLS", TLSv1);
|
/dalvik/vm/mterp/x86/ |
OP_APUT.S | 4 * Array put, 32 bits or less. vBB[vCC] <- vAA
|
OP_APUT_WIDE.S | 3 * Array put, 64 bits. vBB[vCC]<-vAA.
|
/external/apache-http/src/org/apache/http/client/methods/ |
HttpPut.java | 37 * HTTP PUT method. 39 * The HTTP PUT method is defined in section 9.6 of 42 * The PUT method requests that the enclosed entity be stored under the 55 public final static String METHOD_NAME = "PUT";
|
/external/clearsilver/man/man3/ |
cgi_filehandle.3 | 31 file handle for the PUT upload)
|