Searched refs:put (Results 151 - 175 of 2354) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/io/Serializable/PutField/
H A DWrite2.java49 fields.put("s1", "qwerty");
50 fields.put("s2", "asdfg");
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DContext.java32 * Class from which to put/get shared resources.
50 public <T> T put(Class<T> key, T value) { method in class:Context
51 return (T) map.put(key, value);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DParameterCache.java85 dsaCache.put(Integer.valueOf(keyLength), spec);
105 dhCache.put(Integer.valueOf(keyLength), spec);
213 dsaCache.put(Integer.valueOf(512),
215 dsaCache.put(Integer.valueOf(768),
217 dsaCache.put(Integer.valueOf(1024),
221 dhCache.put(Integer.valueOf(512), new DHParameterSpec(p512, g512));
222 dhCache.put(Integer.valueOf(768), new DHParameterSpec(p768, g768));
223 dhCache.put(Integer.valueOf(1024), new DHParameterSpec(p1024, g1024));
/openjdk7/jdk/test/java/util/EnumMap/
H A DProperEntrySetOnClone.java40 map1.put(Test.ONE, "1");
41 map1.put(Test.TWO, "2");
H A DUniqueNullValue.java44 map.put(TestEnum.e00, 0);
52 map.put(TestEnum.e00, null);
/openjdk7/jdk/test/java/util/Hashtable/
H A DSelfRef.java46 m.put("Harvey", m);
50 m.put(m, "Harvey");
/openjdk7/jdk/test/java/util/TreeMap/
H A DNullPermissiveComparator.java60 m.put("a", "A");
61 m.put("b", "B");
62 m.put("c", "C");
70 m.put(null, "NULL");
80 m.put("a", "A");
81 m.put("b", "B");
82 m.put("c", "C");
90 m.put(null, "NULL");
/openjdk7/jdk/test/javax/script/
H A DTest3.java47 en.put("key", "engine value");
50 gn.put("key", "global value");
/openjdk7/jdk/test/sun/net/InetAddress/nameservice/simple/
H A DCacheTest.java80 SimpleNameService.put("theclub", "129.156.220.219");
96 SimpleNameService.put("luster", "10.5.18.21");
H A DDefaultCaching.java41 SimpleNameService.put("theclub", "129.156.220.219");
47 SimpleNameService.put("luster", "10.5.18.21");
54 SimpleNameService.put("foo", "10.5.18.22");
55 SimpleNameService.put("theclub", "129.156.220.1");
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/com/sun/sample/scriptpad/
H A DMain.java61 engine.put("engine", engine);
78 engine.put(ScriptEngine.NAME, name);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBaseSchemaDVFactory.java100 builtInTypes.put(ANYSIMPLETYPE, XSSimpleTypeDecl.fAnySimpleType);
103 builtInTypes.put(STRING, stringDV);
104 builtInTypes.put(BOOLEAN, new XSSimpleTypeDecl(baseAtomicType, BOOLEAN, XSSimpleTypeDecl.DV_BOOLEAN, XSSimpleType.ORDERED_FALSE, false, true, false, true, XSConstants.BOOLEAN_DT));
106 builtInTypes.put(DECIMAL, decimalDV);
108 builtInTypes.put(ANYURI, new XSSimpleTypeDecl(baseAtomicType, ANYURI, XSSimpleTypeDecl.DV_ANYURI, XSSimpleType.ORDERED_FALSE, false, false, false, true, XSConstants.ANYURI_DT));
109 builtInTypes.put(BASE64BINARY, new XSSimpleTypeDecl(baseAtomicType, BASE64BINARY, XSSimpleTypeDecl.DV_BASE64BINARY, XSSimpleType.ORDERED_FALSE, false, false, false, true, XSConstants.BASE64BINARY_DT));
112 builtInTypes.put(DURATION, durationDV);
114 builtInTypes.put(DATETIME, new XSSimpleTypeDecl(baseAtomicType, DATETIME, XSSimpleTypeDecl.DV_DATETIME, XSSimpleType.ORDERED_PARTIAL, false, false, false, true, XSConstants.DATETIME_DT));
115 builtInTypes.put(TIME, new XSSimpleTypeDecl(baseAtomicType, TIME, XSSimpleTypeDecl.DV_TIME, XSSimpleType.ORDERED_PARTIAL, false, false, false, true, XSConstants.TIME_DT));
116 builtInTypes.put(DAT
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlReader.java143 charsets.put("UTF-16", "Unicode");
144 charsets.put("ISO-10646-UCS-2", "Unicode");
148 charsets.put("EBCDIC-CP-US", "cp037");
149 charsets.put("EBCDIC-CP-CA", "cp037");
150 charsets.put("EBCDIC-CP-NL", "cp037");
151 charsets.put("EBCDIC-CP-WT", "cp037");
153 charsets.put("EBCDIC-CP-DK", "cp277");
154 charsets.put("EBCDIC-CP-NO", "cp277");
155 charsets.put("EBCDIC-CP-FI", "cp278");
156 charsets.put("EBCDI
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaArray.java87 public void put(String name, Object value) { method in class:JSJavaArray
89 super.put(name, value);
93 public void put(int index, Object value) { method in class:JSJavaArray
95 super.put(index, value);
/openjdk7/jdk/src/share/classes/javax/script/
H A DBindings.java49 public Object put(String name, Object value); method in interface:Bindings
/openjdk7/jdk/src/share/classes/java/util/
H A DDictionary.java110 * @see java.util.Dictionary#put(java.lang.Object, java.lang.Object)
141 abstract public V put(K key, V value); method in class:Dictionary
/openjdk7/hotspot/test/compiler/8002069/
H A DTest8002069.java36 abstract void put(int i); method in class:O
38 put(i);
48 public void put(int i) { method in class:A
60 public void put(int i) { method in class:B
/openjdk7/jdk/src/macosx/classes/apple/security/
H A DAppleProvider.java54 put("KeyStore.KeychainStore", "apple.security.KeychainStore");
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DTzIDOldMapping.java65 MAP.put(pair[0], pair[1]);
/openjdk7/jdk/test/java/util/HashMap/
H A DKeySetRemove.java37 m[i].put("bananas", null);
/openjdk7/jdk/test/java/util/LinkedHashMap/
H A DEmptyMapIterator.java36 map.put("key", "value");
/openjdk7/jdk/test/java/util/WeakHashMap/
H A DIteration.java37 m.put(s, "cucumber");
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest4887836.java40 UIManager.put("Label.font", new Font("Perpetua", 0, 36)); // NON-NLS: property and font names
/openjdk7/jdk/test/javax/swing/plaf/nimbus/
H A DTest7048204.java43 uid.put("what.ever", "else");
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJavaSecurityProtectionDomainAccess.java32 void put(ProtectionDomain pd, PermissionCollection pc); method in interface:JavaSecurityProtectionDomainAccess.ProtectionDomainCache

Completed in 351 milliseconds

1234567891011>>