/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/ |
FilePreferencesImplTest.java | 58 uroot.put("ukey1", "value1"); 63 uroot.put("ukey2", "value3"); 65 uroot.put("\u4e2d key1", "\u4e2d value1"); 75 sroot.put("skey1", "value1"); 77 sroot.put("\u4e2d key1", "\u4e2d value1");
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/ |
HMac.java | 36 // blockLengths.put("GOST3411", Integer.valueOf(32)); 38 // blockLengths.put("MD2", Integer.valueOf(16)); 39 // blockLengths.put("MD4", Integer.valueOf(64)); 41 blockLengths.put("MD5", Integer.valueOf(64)); 44 // blockLengths.put("RIPEMD128", Integer.valueOf(64)); 45 // blockLengths.put("RIPEMD160", Integer.valueOf(64)); 48 blockLengths.put("SHA-1", Integer.valueOf(64)); 50 // blockLengths.put("SHA-224", Integer.valueOf(64)); 52 blockLengths.put("SHA-256", Integer.valueOf(64)); 53 blockLengths.put("SHA-384", Integer.valueOf(128)) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/ |
RSADigestSigner.java | 43 // oidMap.put("RIPEMD128", TeleTrusTObjectIdentifiers.ripemd128); 44 // oidMap.put("RIPEMD160", TeleTrusTObjectIdentifiers.ripemd160); 45 // oidMap.put("RIPEMD256", TeleTrusTObjectIdentifiers.ripemd256); 48 oidMap.put("SHA-1", X509ObjectIdentifiers.id_SHA1); 50 // oidMap.put("SHA-224", NISTObjectIdentifiers.id_sha224); 52 oidMap.put("SHA-256", NISTObjectIdentifiers.id_sha256); 53 oidMap.put("SHA-384", NISTObjectIdentifiers.id_sha384); 54 oidMap.put("SHA-512", NISTObjectIdentifiers.id_sha512); 57 // oidMap.put("MD2", PKCSObjectIdentifiers.md2); 58 // oidMap.put("MD4", PKCSObjectIdentifiers.md4) [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MapGenerators.java | 51 builder.put(key, 4); 69 builder.put(key, String.valueOf(key)); 93 builder.put(key++, value); 114 builder.put(entry.getKey(), entry.getValue()); 131 builder.put(i, toStringOrNull(elements[i]));
|
/external/nist-sip/java/gov/nist/core/ |
MultiValueMapImpl.java | 44 public List<V> put(String key, V value) { method in class:MultiValueMapImpl 48 map.put(key, keyList); 138 public List<V> put(String key, List<V> value) { method in class:MultiValueMapImpl 139 return this.map.put(key,(ArrayList<V>) value); 150 this.map.put(k, al);
|
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/ |
WifiP2pDnsSdServiceResponse.java | 82 sVmpack.put(0x0c, "_tcp.local."); 83 sVmpack.put(0x11, "local."); 84 sVmpack.put(0x1c, "_udp.local."); 228 vmpack.put(0x27, mDnsQueryName); 276 mTxtRecord.put(keyVal[0], keyVal[1]);
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
BordeauxSessionStorage.java | 86 entry.put(COLUMN_KEY, key); 87 entry.put(COLUMN_TIME, System.currentTimeMillis()); 88 entry.put(COLUMN_MODEL, model); 89 entry.put(COLUMN_CLASS, learner.getName()); 139 sessions.put(key, session);
|
/libcore/luni/src/main/java/java/nio/ |
CharToByteBufferAdapter.java | 141 public CharBuffer put(char c) { method in class:CharToByteBufferAdapter 150 public CharBuffer put(int index, char c) { method in class:CharToByteBufferAdapter 157 public CharBuffer put(char[] src, int srcOffset, int charCount) { method in class:CharToByteBufferAdapter 161 ((ReadWriteDirectByteBuffer) byteBuffer).put(src, srcOffset, charCount); method 163 ((ReadWriteHeapByteBuffer) byteBuffer).put(src, srcOffset, charCount); method
|
DoubleToByteBufferAdapter.java | 141 public DoubleBuffer put(double c) { method in class:DoubleToByteBufferAdapter 150 public DoubleBuffer put(int index, double c) { method in class:DoubleToByteBufferAdapter 157 public DoubleBuffer put(double[] src, int srcOffset, int doubleCount) { method in class:DoubleToByteBufferAdapter 161 ((ReadWriteDirectByteBuffer) byteBuffer).put(src, srcOffset, doubleCount); method 163 ((ReadWriteHeapByteBuffer) byteBuffer).put(src, srcOffset, doubleCount); method
|
FloatToByteBufferAdapter.java | 140 public FloatBuffer put(float c) { method in class:FloatToByteBufferAdapter 149 public FloatBuffer put(int index, float c) { method in class:FloatToByteBufferAdapter 156 public FloatBuffer put(float[] src, int srcOffset, int floatCount) { method in class:FloatToByteBufferAdapter 160 ((ReadWriteDirectByteBuffer) byteBuffer).put(src, srcOffset, floatCount); method 162 ((ReadWriteHeapByteBuffer) byteBuffer).put(src, srcOffset, floatCount); method
|
IntToByteBufferAdapter.java | 141 public IntBuffer put(int c) { method in class:IntToByteBufferAdapter 150 public IntBuffer put(int index, int c) { method in class:IntToByteBufferAdapter 157 public IntBuffer put(int[] src, int srcOffset, int intCount) { method in class:IntToByteBufferAdapter 161 ((ReadWriteDirectByteBuffer) byteBuffer).put(src, srcOffset, intCount); method 163 ((ReadWriteHeapByteBuffer) byteBuffer).put(src, srcOffset, intCount); method
|
LongToByteBufferAdapter.java | 141 public LongBuffer put(long c) { method in class:LongToByteBufferAdapter 150 public LongBuffer put(int index, long c) { method in class:LongToByteBufferAdapter 157 public LongBuffer put(long[] src, int srcOffset, int longCount) { method in class:LongToByteBufferAdapter 161 ((ReadWriteDirectByteBuffer) byteBuffer).put(src, srcOffset, longCount); method 163 ((ReadWriteHeapByteBuffer) byteBuffer).put(src, srcOffset, longCount); method
|
ShortToByteBufferAdapter.java | 140 public ShortBuffer put(short c) { method in class:ShortToByteBufferAdapter 149 public ShortBuffer put(int index, short c) { method in class:ShortToByteBufferAdapter 156 public ShortBuffer put(short[] src, int srcOffset, int shortCount) { method in class:ShortToByteBufferAdapter 160 ((ReadWriteDirectByteBuffer) byteBuffer).put(src, srcOffset, shortCount); method 162 ((ReadWriteHeapByteBuffer) byteBuffer).put(src, srcOffset, shortCount); method
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
SmsReceiverService.java | 321 // We couldn't send the message, put in the queue to retry later. 397 values.put(Sms.TYPE, Sms.MESSAGE_TYPE_FAILED); 398 values.put(Sms.ERROR_CODE, SmsManager.RESULT_ERROR_GENERIC_FAILURE); 399 values.put(Sms.READ, Integer.valueOf(0)); 455 values.put(Sms.ERROR_CODE, error); 460 values.put(Inbox.BODY, replaceFormFeeds(sms.getDisplayMessageBody())); 470 values.put(Inbox.BODY, replaceFormFeeds(body.toString())); 516 values.put(Sms.ERROR_CODE, error); 521 values.put(Inbox.BODY, replaceFormFeeds(sms.getDisplayMessageBody())); 531 values.put(Inbox.BODY, replaceFormFeeds(body.toString())) [all...] |
/tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/codeutils/db/actions/ |
ContentProviderGeneratorByTable.java | 116 contentProviderParameters.put(ContentProviderDeployer.ANDROID_PROJECT_PACKAGE_NAME,
118 contentProviderParameters.put(ContentProviderDeployer.CONTENT_PROVIDER_CLASS_NAME,
120 contentProviderParameters.put(ContentProviderDeployer.CONTENT_PROVIDER_AUTHORITY,
122 contentProviderParameters.put("#databaseOpenHelperPackageName#", openHelperPackageName);
123 contentProviderParameters.put("#databaseOpenHelperClassName#",
125 contentProviderParameters.put(DatabaseDeployer.DATABASE_NAME, getDbName());
126 contentProviderParameters.put("#tableName#", getTableName());
127 contentProviderParameters.put("#tableNameUpperCase#", getTableName().toUpperCase());
128 contentProviderParameters.put("#tableNameLowerCase#", getTableName().toLowerCase());
129 contentProviderParameters.put("#uriConstants#", getUriConstants()); [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/features/ |
FeatureSummaryActivity.java | 188 actualFeatures.put(fi.name, fi.name); 199 // add features from latest to last so that the latest requirements are put in the set first 244 row.put("feature", f.name); 245 row.put("icon", statusIcon); 254 row.put("feature", feature); 258 row.put("icon", R.drawable.fs_error); 262 row.put("icon", R.drawable.fs_warning); 269 idMap.put(R.drawable.fs_error, 0); 270 idMap.put(R.drawable.fs_warning, 1); 271 idMap.put(R.drawable.fs_indeterminate, 2) [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
Type.java | 109 * Put all the primitive types into the intern table. This needs 121 * Note: VOID isn't put in the intern table, since it's special and 129 CLASS_TYPE_MAP.put(boolean.class, BOOLEAN); 130 CLASS_TYPE_MAP.put(short.class, SHORT); 131 CLASS_TYPE_MAP.put(int.class, INT); 132 CLASS_TYPE_MAP.put(long.class, LONG); 133 CLASS_TYPE_MAP.put(char.class, CHAR); 134 CLASS_TYPE_MAP.put(byte.class, BYTE); 135 CLASS_TYPE_MAP.put(float.class, FLOAT); 136 CLASS_TYPE_MAP.put(double.class, DOUBLE) [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
ArrayModifier.java | 57 modifierData.put("fittype", fittype);
60 modifierData.put("count", modifierStructure.getFieldValue("count"));
63 modifierData.put("length", modifierStructure.getFieldValue("length"));
90 modifierData.put("length", Float.valueOf(length));
91 modifierData.put("fittype", Integer.valueOf(1));// treat it like FIXED LENGTH
102 modifierData.put("offset", offset);
107 modifierData.put("scale", scale);
112 modifierData.put("offsetob", pOffsetObject);
119 modifierData.put("startcap", pStartCap);
123 modifierData.put("endcap", pEndCap); [all...] |
/external/libvpx/vp8/encoder/x86/ |
subtract_sse2.asm | 107 punpcklbw xmm0, xmm1 ; put sign back to subtraction 108 punpckhbw xmm2, xmm3 ; put sign back to subtraction 125 punpcklbw xmm4, xmm5 ; put sign back to subtraction 126 punpckhbw xmm6, xmm7 ; put sign back to subtraction 183 punpcklbw xmm0, xmm1 ; put sign back to subtraction 184 punpckhbw xmm2, xmm3 ; put sign back to subtraction 204 punpcklbw xmm0, xmm1 ; put sign back to subtraction 205 punpckhbw xmm2, xmm3 ; put sign back to subtraction 227 punpcklbw xmm0, xmm1 ; put sign back to subtraction 228 punpckhbw xmm2, xmm3 ; put sign back to subtractio [all...] |
/external/stlport/src/ |
strstream.cpp | 60 strstreambuf::strstreambuf(char* get, streamsize n, char* put) 63 _M_setup(get, put, n); 66 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) 69 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n); 73 unsigned char* put) 76 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n); 277 void strstreambuf::_M_setup(char* get, char* put, streamsize n) { 281 if (put) { 283 setp(put, put + N) [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
strstream.cpp | 60 strstreambuf::strstreambuf(char* get, streamsize n, char* put) 63 _M_setup(get, put, n); 66 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) 69 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n); 73 unsigned char* put) 76 _M_setup(__REINTERPRET_CAST(char*,get), __REINTERPRET_CAST(char*,put), n); 277 void strstreambuf::_M_setup(char* get, char* put, streamsize n) { 281 if (put) { 283 setp(put, put + N) [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/tests/calllog/ |
FillCallLogTestActivity.java | 137 values.put(name, cursor.getString(column)); 140 values.put(name, cursor.getLong(column)); 143 values.put(name, cursor.getDouble(column)); 146 values.put(name, cursor.getBlob(column)); 163 values[i].put(Calls.NUMBER, generateRandomNumber()); method 164 values[i].put(Calls.DATE, System.currentTimeMillis()); // Will be randomized later method 165 values[i].put(Calls.DURATION, 1); // Will be overwritten later method 262 values.put(Calls.DATE, 267 values.put(Calls.DURATION, RNG.nextInt(30 * 60 * 60 * 1000)); 271 values.put(Calls.TYPE, CALL_TYPES[RNG.nextInt(CALL_TYPES.length)]) [all...] |
/frameworks/base/core/java/android/os/ |
Bundle.java | 396 mMap.put(key, value); 408 mMap.put(key, value); 420 mMap.put(key, value); 432 mMap.put(key, value); 444 mMap.put(key, value); 456 mMap.put(key, value); 468 mMap.put(key, value); 480 mMap.put(key, value); 492 mMap.put(key, value); 504 mMap.put(key, value) [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
FlatManifestWriterImpl.java | 349 waveformatex.put(new byte[]{0x00, 0x06}); //1536 wSamplesPerBlock - little endian 350 waveformatex.put(dWChannelMaskFirstByte); 351 waveformatex.put(dWChannelMaskSecondByte); 352 waveformatex.put(new byte[]{0x00, 0x00}); //pad dwChannelMask to 32bit 353 waveformatex.put(new byte[]{(byte)0xAF, (byte)0x87, (byte)0xFB, (byte)0xA7, 0x02, 0x2D, (byte)0xFB, 0x42, (byte)0xA4, (byte)0xD4, 0x05, (byte)0xCD, (byte)0x93, (byte)0x84, 0x3B, (byte)0xDD}); //SubFormat - Dolby Digital Plus GUID 393 waveformatex.put((byte) (samplesPerBlock & 0xff)); 394 waveformatex.put((byte) (samplesPerBlock >>> 8)); 396 waveformatex.put((byte) (dwChannelMask & 0xff)); 397 waveformatex.put((byte) (dwChannelMask >>> 8)); 398 waveformatex.put((byte) (dwChannelMask >>> 16)) [all...] |
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/ |
CalendarSyncAdapter.java | 335 attendeeCv.put(Attendees.ATTENDEE_NAME, organizerName); 338 attendeeCv.put(Attendees.ATTENDEE_EMAIL, organizerEmail); 340 attendeeCv.put(Attendees.ATTENDEE_RELATIONSHIP, Attendees.RELATIONSHIP_ORGANIZER); 341 attendeeCv.put(Attendees.ATTENDEE_TYPE, Attendees.TYPE_REQUIRED); 342 attendeeCv.put(Attendees.ATTENDEE_STATUS, Attendees.ATTENDEE_STATUS_ACCEPTED); 380 cv.put(EVENT_SAVED_TIMEZONE_COLUMN, originalTimeZone); 381 cv.put(Events.EVENT_TIMEZONE, UTC_TIMEZONE.getID()); 396 cv.put(Events.ORIGINAL_INSTANCE_TIME, cal.getTimeInMillis()); 401 cv.put(Events.DTSTART, startTime); 405 cv.put(Events.DURATION, "P" + ((endTime - startTime) / DAYS) + "D") [all...] |