HomeSort by relevance Sort by last modified time
    Searched refs:put (Results 101 - 125 of 3667) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleTriMesh.java 97 tb.put(0f).put(1f);
98 tb.put(1f).put(1f);
99 tb.put(0f).put(0f);
100 tb.put(1f).put(0f);
118 ib.put((short)(startIdx + 1))
119 .put((short)(startIdx + 0)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 90 // algorithms.put("MD2WITHRSAENCRYPTION", new DERObjectIdentifier("1.2.840.113549.1.1.2"));
91 // algorithms.put("MD2WITHRSA", new DERObjectIdentifier("1.2.840.113549.1.1.2"));
93 algorithms.put("MD5WITHRSAENCRYPTION", new DERObjectIdentifier("1.2.840.113549.1.1.4"));
94 algorithms.put("MD5WITHRSA", new DERObjectIdentifier("1.2.840.113549.1.1.4"));
95 algorithms.put("RSAWITHMD5", new DERObjectIdentifier("1.2.840.113549.1.1.4"));
96 algorithms.put("SHA1WITHRSAENCRYPTION", new DERObjectIdentifier("1.2.840.113549.1.1.5"));
97 algorithms.put("SHA1WITHRSA", new DERObjectIdentifier("1.2.840.113549.1.1.5"));
99 // algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
100 // algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
102 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption)
    [all...]
  /dalvik/tests/070-nio-buffer/src/
Main.java 54 shortBuf.put(myShorts, 0, 32); // should work
56 shortBuf.put(myShorts, 16, 16); // should work
57 shortBuf.put(myShorts, 16, 16); // advance to end
60 shortBuf.put(myShorts, 0, 1); // should fail
61 System.err.println("ERROR: out-of-bounds put succeeded\n");
68 shortBuf.put(myShorts, 0, 33); // should fail
69 System.err.println("ERROR: out-of-bounds put succeeded\n");
76 shortBuf.put(myShorts, 0, 17); // should fail
77 System.err.println("ERROR: out-of-bounds put succeeded\n");
97 int1.put (data)
    [all...]
  /development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/client/
UserTest.java 42 jsonObj.put("u", "mjoshi");
43 jsonObj.put("f", "Megha");
44 jsonObj.put("l", "Joshi");
45 jsonObj.put("i", 1);
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractListMultimapTest.java 49 multimap.put("foo", 1);
50 multimap.put("foo", 3);
51 multimap.put("bar", 3);
52 multimap.put("foo", 1);
65 assertTrue(multimap.put("foo", 1));
66 assertTrue(multimap.put("foo", 1));
67 assertTrue(multimap.put("foo", 3));
68 assertTrue(multimap.put("bar", 5));
74 assertTrue(multimap.put("foo", 1));
92 multimap.put("foo", 1)
    [all...]
ImmutableSetMultimapTest.java 45 .put(Maps.immutableEntry("one", 1))
53 builder.put(Maps.immutableEntry("one", (Integer) null));
58 builder.put(Maps.immutableEntry((String) null, 1));
82 builder.put(entry);
113 toPut.put("foo", 1);
114 toPut.put("bar", 4);
115 toPut.put("foo", 2);
116 toPut.put("foo", 3);
118 moreToPut.put("foo", 6);
119 moreToPut.put("bar", 5)
    [all...]
AbstractMultimapAsMapImplementsMapTest.java 42 multimap.put("one", 1);
43 multimap.put("two", 2);
44 multimap.put("two", 22);
45 multimap.put("three", 3);
46 multimap.put("three", 33);
47 multimap.put("three", 333);
HashMultimapTest.java 38 multimap.put("foo", 1);
39 multimap.put("bar", 2);
40 multimap.put("foo", 3);
54 multimap.put("foo", 1);
55 multimap.put("bar", 2);
56 multimap.put("foo", 3);
SortedMapsTest.java 105 unfiltered.put(1, "one");
106 unfiltered.put(2, "two");
107 unfiltered.put(3, "three");
108 unfiltered.put(4, "four");
109 unfiltered.put(5, "five");
110 unfiltered.put(6, "six");
111 unfiltered.put(7, "seven");
134 unfiltered.put(1, "one");
135 unfiltered.put(2, "two");
136 unfiltered.put(3, "three")
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DataEntryUrnBox.java 60 byteBuffer.put(Utf8.convert(name));
61 byteBuffer.put((byte) 0);
62 byteBuffer.put(Utf8.convert(location));
63 byteBuffer.put((byte) 0);
  /libcore/luni/src/test/java/libcore/util/
BasicLruCacheTest.java 35 cache.put("aa", "put-aa");
36 assertEquals("put-aa", cache.get("aa"));
50 cache.put(null, "A");
59 cache.put("a", null);
67 cache.put("a", "A");
68 cache.put("b", "B");
81 cache.put("a", "A");
82 cache.put("b", "B");
83 cache.put("c", "C")
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyProvider.java 9 put("KeyStore.TestKeyStore", TestKeyStoreSpi.class.getName());
  /tools/motodev/src/plugins/android/src/com/motorola/studio/android/monkey/options/
IMonkeyOptionsConstants.java 74 put("none", TYPE_NONE);
75 put("text", TYPE_TEXT);
76 put("path", TYPE_PATH);
77 put("int", TYPE_NUMBER);
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
ExpirableCacheTest.java 48 mCache.put("a", 1);
49 mCache.put("b", 2);
52 mCache.put("a", 3);
58 mCache.put("b", 1);
63 mCache.put("a", 1);
71 mCache.put("b", 1);
76 mCache.put("a", 1);
84 mCache.put("b", 1);
89 mCache.put("a", 1);
96 mCache.put("a", 1)
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
GalParser.java 63 galData.put(GalData.DISPLAY_NAME, displayName);
68 galData.put(GalData.EMAIL_ADDRESS, emailAddress);
72 galData.put(GalData.WORK_PHONE, getValue());
75 galData.put(GalData.OFFICE, getValue());
78 galData.put(GalData.TITLE, getValue());
81 galData.put(GalData.COMPANY, getValue());
84 galData.put(GalData.ALIAS, getValue());
87 galData.put(GalData.FIRST_NAME, getValue());
90 galData.put(GalData.LAST_NAME, getValue());
93 galData.put(GalData.HOME_PHONE, getValue())
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
AddressMap.java 49 public void put(int keyAddress, int valueAddress) { method in class:AddressMap
50 map.put(keyAddress, valueAddress);
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
AddressMap.java 49 public void put(int keyAddress, int valueAddress) { method in class:AddressMap
50 map.put(keyAddress, valueAddress);
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 31 primitiveTypes.put(Boolean.TYPE.getName(), Boolean.TYPE);
32 primitiveTypes.put(Byte.TYPE.getName(), Byte.TYPE);
33 primitiveTypes.put(Short.TYPE.getName(), Short.TYPE);
34 primitiveTypes.put(Character.TYPE.getName(), Character.TYPE);
35 primitiveTypes.put(Integer.TYPE.getName(), Integer.TYPE);
36 primitiveTypes.put(Long.TYPE.getName(), Long.TYPE);
37 primitiveTypes.put(Float.TYPE.getName(), Float.TYPE);
38 primitiveTypes.put(Double.TYPE.getName(), Double.TYPE);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
IndexIntBuffer.java 57 public void put(int i, int value) { method in class:IndexIntBuffer
58 buf.put(i, value);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoTypeWriter.java 61 bb.put((byte) i);
67 bb.put((byte) ((result & 0xFF000000) >> 24));
68 bb.put((byte) ((result & 0x00FF0000) >> 16));
69 bb.put((byte) ((result & 0x0000FF00) >> 8));
70 bb.put((byte) ((result & 0x000000FF)));
75 bb.put((byte) ((result & 0xFF00) >> 8));
76 bb.put((byte) ((result & 0x00FF)));
92 bb.put(Utf8.convert(string));
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
StringSerializer.java 76 buffer.put((byte)0);
84 buffer.put((byte)1);
85 buffer.put((byte)bufferLength);
87 buffer.put((byte)2);
90 buffer.put((byte)3);
93 buffer.put(stringBytes);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AACTrackImpl.java 38 samplingFrequencyIndexMap.put(96000, 0);
39 samplingFrequencyIndexMap.put(88200, 1);
40 samplingFrequencyIndexMap.put(64000, 2);
41 samplingFrequencyIndexMap.put(48000, 3);
42 samplingFrequencyIndexMap.put(44100, 4);
43 samplingFrequencyIndexMap.put(32000, 5);
44 samplingFrequencyIndexMap.put(24000, 6);
45 samplingFrequencyIndexMap.put(22050, 7);
46 samplingFrequencyIndexMap.put(16000, 8);
47 samplingFrequencyIndexMap.put(12000, 9)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
LruCacheTest.java 37 assertEquals(null, cache.put("a", "A"));
43 assertEquals(null, cache.put("b", "B"));
50 assertEquals(null, cache.put("c", "C"));
58 assertEquals(null, cache.put("d", "D"));
70 assertEquals(null, cache.put("e", "E"));
114 cache.put("aa", "put-aa");
115 assertEquals("put-aa", cache.get("aa"));
129 cache.put(null, "A");
138 cache.put("a", null)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
IdentityHashMapTest.java 38 * @tests java.util.IdentityHashMap#put(java.lang.Object, java.lang.Object)
47 result = map.put(null, null);
52 assertNull("testA put returned wrong value", result);
56 result = map.put(null, value);
62 assertNull("testB put returned wrong value", result);
66 result = map.put(key, null);
71 assertNull("testC put returned wrong value", result);
75 result = map.put(null, anothervalue);
81 assertTrue("testD put returned wrong value", result == value);
94 * @tests java.util.IdentityHashMap#put(java.lang.Object, java.lang.Object
    [all...]
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
AreaCodeMapTest.java 42 sortedMapForUS.put(1212, "New York");
43 sortedMapForUS.put(1480, "Arizona");
44 sortedMapForUS.put(1650, "California");
45 sortedMapForUS.put(1907, "Alaska");
46 sortedMapForUS.put(1201664, "Westwood, NJ");
47 sortedMapForUS.put(1480893, "Phoenix, AZ");
48 sortedMapForUS.put(1501372, "Little Rock, AR");
49 sortedMapForUS.put(1626308, "Alhambra, CA");
50 sortedMapForUS.put(1650345, "San Mateo, CA");
51 sortedMapForUS.put(1867993, "Dawson, YT")
    [all...]

Completed in 1315 milliseconds

1 2 3 45 6 7 8 91011>>