/frameworks/base/core/java/android/database/ |
DatabaseUtils.java | 456 * @param values The {@link ContentValues} to put the value into, with the field as the key 481 * @param values The {@link ContentValues} to put the value into, with the field as the key 486 values.put(key, cursor.getString(cursor.getColumnIndexOrThrow(field))); 494 * @param values The {@link ContentValues} to put the value into, with the field as the key 505 * @param values The {@link ContentValues} to put the value into, with the field as the key 512 values.put(key, cursor.getInt(colIndex)); 514 values.put(key, (Integer) null); 523 * @param values The {@link ContentValues} to put the value into, with the field as the key 535 * @param values The {@link ContentValues} to put the value into 543 values.put(key, value) [all...] |
/frameworks/base/core/java/com/google/android/util/ |
SmileyResources.java | 38 mSmileyToRes.put(smilies[i], smileyResIds[i]);
|
/frameworks/base/graphics/java/android/renderscript/ |
ScriptC.java | 114 mIntDefines.put(name, value); 118 mFloatDefines.put(name, value); 143 mIntDefines.put(f.getName(), f.getInt(o)); 146 mFloatDefines.put(f.getName(), f.getFloat(o));
|
/frameworks/base/opengl/tools/glgen/src/ |
ParameterChecker.java | 28 map.put(tokens[0], tokens);
|
/libcore/luni/src/main/java/java/net/ |
CookieHandler.java | 88 public abstract void put(URI uri, Map<String, List<String>> responseHeaders) method in class:CookieHandler
|
ResponseCache.java | 27 * <p>Although {@code URLConnection} will always call {@link #put}, the specific 92 public abstract CacheRequest put(URI uri, URLConnection conn) throws IOException; method in class:ResponseCache
|
/libcore/luni/src/main/java/java/security/ |
BasicPermissionCollection.java | 90 items.put(name, permission); 167 fields.put("all_allowed", allEnabled); 168 fields.put("permissions", new Hashtable<String, Permission>(items)); 169 fields.put("permClass", permClass);
|
UnresolvedPermissionCollection.java | 75 klasses.put(klass, klassMates); 158 permissions.put(key, new Vector(((Collection) entry.getValue()))); 161 fields.put("permissions", permissions); 188 klasses.put(key, new HashSet(values));
|
/libcore/luni/src/main/java/java/util/ |
Map.java | 193 public V put(K key, V value); method in interface:Map
|
SimpleTimeZone.java | [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/fortress/ |
Services.java | 93 providersNames.put(p.getName(), p); 147 providersNames.put(provider.getName(), provider); 181 services.put(key, serv); 188 services.put(key, serv);
|
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
ElemDesc.java | 162 m_attrs.put(name, flags);
|
/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");
|
/libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
FloatBufferTest.java | 97 method = "put", 605 * Class under test for java.nio.FloatBuffer put(float) 610 method = "put", 617 FloatBuffer ret = buf.put((float) i); 622 buf.put(0); 630 * Class under test for java.nio.FloatBuffer put(float[]) 635 method = "put", 644 FloatBuffer ret = buf.put(array); 649 buf.put(array); 656 buf.put((float[])null) [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
MockResolver.java | 35 entities.put("[" + publicId + ":" + systemId + "]", source);
|
/packages/apps/Calendar/src/com/android/calendar/ |
DismissAllAlarmsService.java | 54 values.put(PROJECTION[COLUMN_INDEX_STATE], CalendarAlerts.DISMISSED);
|
/packages/apps/Contacts/src/com/android/contacts/ui/widget/ |
PhotoEditorView.java | 120 mEntry.put(Photo.PHOTO, (byte[])null); 133 mEntry.put(Photo.PHOTO, out.toByteArray()); 140 mEntry.put(Photo.IS_SUPER_PRIMARY, 1); 150 mEntry.put(Photo.IS_SUPER_PRIMARY, superPrimary ? 1 : 0);
|
/packages/apps/Email/src/org/apache/james/mime4j/field/ |
DelegatingFieldParser.java | 32 parsers.put(name.toLowerCase(), parser);
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
SmsReceiverService.java | 281 // We couldn't send the message, put in the queue to retry later. 341 values.put(Sms.TYPE, Sms.MESSAGE_TYPE_QUEUED); 394 values.put(Inbox.BODY, sms.getMessageBody()); 395 values.put(Sms.ERROR_CODE, error); 433 values.put(Sms.ERROR_CODE, error); 438 values.put(Inbox.BODY, sms.getDisplayMessageBody()); 446 values.put(Inbox.BODY, body.toString()); 460 values.put(Sms.ADDRESS, address); 465 values.put(Sms.THREAD_ID, threadId); 486 values.put(Inbox.ADDRESS, sms.getDisplayOriginatingAddress()) [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
PerNameExecutor.java | 57 mExecutors.put(name, executor);
|
/packages/apps/Settings/src/com/android/settings/ |
ApnEditor.java | 382 values.put(Telephony.Carriers.NAME, 384 values.put(Telephony.Carriers.APN, apn); 385 values.put(Telephony.Carriers.PROXY, checkNotSet(mProxy.getText())); 386 values.put(Telephony.Carriers.PORT, checkNotSet(mPort.getText())); 387 values.put(Telephony.Carriers.MMSPROXY, checkNotSet(mMmsProxy.getText())); 388 values.put(Telephony.Carriers.MMSPORT, checkNotSet(mMmsPort.getText())); 389 values.put(Telephony.Carriers.USER, checkNotSet(mUser.getText())); 390 values.put(Telephony.Carriers.SERVER, checkNotSet(mServer.getText())); 391 values.put(Telephony.Carriers.PASSWORD, checkNotSet(mPassword.getText())); 392 values.put(Telephony.Carriers.MMSC, checkNotSet(mMmsc.getText())) [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
MetaData.java | 194 values.put("_id", 1); 195 values.put(CalendarMetaData.LOCAL_TIMEZONE, timezone); 196 values.put(CalendarMetaData.MIN_INSTANCE, begin); 197 values.put(CalendarMetaData.MAX_INSTANCE, end);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
FolderTypeRelationship.java | 128 typeToFolderMap.put(type, folderList); 138 folderToTypeMap.put(folder, typeList); 155 mTypeToFolderMap.put(type, list.toArray(new ResourceFolderType[list.size()])); 161 mFolderToTypeMap.put(folder, list.toArray(new ResourceType[list.size()]));
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceNetwork.java | 260 * Command to put the Monkey to sleep. 402 COMMAND_MAP.put("flip", new FlipCommand()); 403 COMMAND_MAP.put("touch", new TouchCommand()); 404 COMMAND_MAP.put("trackball", new TrackballCommand()); 405 COMMAND_MAP.put("key", new KeyCommand()); 406 COMMAND_MAP.put("sleep", new SleepCommand()); 407 COMMAND_MAP.put("wake", new WakeCommand()); 408 COMMAND_MAP.put("tap", new TapCommand()); 409 COMMAND_MAP.put("press", new PressCommand()); 410 COMMAND_MAP.put("type", new TypeCommand()) [all...] |
/frameworks/base/tests/CoreTests/android/core/ |
HashtableTest.java | 43 sTable.put(sKeys[i], i); 57 hTable.put(i, i); 58 hTable.put(i, i); 59 hTable.put(i, i); 60 hTable.put(i, i); 61 hTable.put(i, i); 62 hTable.put(i, i); 63 hTable.put(i, i); 64 hTable.put(i, i); 65 hTable.put(i, i) [all...] |