Searched refs:put (Results 76 - 100 of 2354) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/util/TreeMap/
H A DClone.java39 m1.put( "one", 1 );
42 m1.put( "two", 2 );
43 m2.put( "three", 3 );
/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DDistinctEntrySetElements.java45 concurrentHashMap.put("One", "Un");
46 concurrentHashMap.put("Two", "Deux");
47 concurrentHashMap.put("Three", "Trois");
/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/transport/
H A DInboundConnectionCache.java36 public void put(Acceptor acceptor, Connection connection); method in interface:InboundConnectionCache
H A DOutboundConnectionCache.java36 public void put(ContactInfo contactInfo, Connection connection); method in interface:OutboundConnectionCache
/openjdk7/jdk/src/share/classes/java/nio/
H A DX-Buffer-bin.java.template48 * Relative <i>put</i> method for writing $a$ $type$
67 public abstract ByteBuffer put$Type$($type$ value);
88 * Absolute <i>put</i> method for writing $a$ $type$
110 public abstract ByteBuffer put$Type$(int index, $type$ value);
/openjdk7/jdk/test/sun/security/util/Oid/
H A DS11N.java143 System.out.println(" " + title + ".put(\"" + oid + "\",");
161 dump7.put("0.0",
166 dump7.put("1.1",
171 dump7.put("2.2",
176 dump7.put("1.2.3456",
181 dump7.put("1.2.2147483647.4",
187 dump7.put("1.2.268435456.4",
193 dump7.put("2.16.764.1.3101555394.1.0.100.2.1",
200 dump7.put("1.2.2147483648.4",
206 dump7.put("2.
[all...]
/openjdk7/jdk/test/java/util/AbstractMap/
H A DAbstractMapClone.java43 public Object put(Object key, Object value) { method in class:AbstractMapClone
44 return map.put(key, value);
59 m1.put("1", "1");
63 m2.put("2","2");
H A DToString.java40 m.put("x", "1");
44 m.put("y", "2");
/openjdk7/jdk/test/java/util/HashMap/
H A DToString.java36 m.put(null, null);
/openjdk7/jdk/test/java/util/prefs/
H A DCheckUserPrefFirst.java39 prefs.put("Check", "Success");
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DEnumJvmClassesVerboseLevel.java51 intTable.put(new Integer(2), "verbose");
52 intTable.put(new Integer(1), "silent");
53 stringTable.put("verbose", new Integer(2));
54 stringTable.put("silent", new Integer(1));
H A DEnumJvmJITCompilerTimeMonitoring.java51 intTable.put(new Integer(2), "supported");
52 intTable.put(new Integer(1), "unsupported");
53 stringTable.put("supported", new Integer(2));
54 stringTable.put("unsupported", new Integer(1));
H A DEnumJvmMemManagerState.java51 intTable.put(new Integer(2), "valid");
52 intTable.put(new Integer(1), "invalid");
53 stringTable.put("valid", new Integer(2));
54 stringTable.put("invalid", new Integer(1));
H A DEnumJvmMemPoolCollectThreshdSupport.java51 intTable.put(new Integer(2), "supported");
52 intTable.put(new Integer(1), "unsupported");
53 stringTable.put("supported", new Integer(2));
54 stringTable.put("unsupported", new Integer(1));
H A DEnumJvmMemPoolState.java51 intTable.put(new Integer(2), "valid");
52 intTable.put(new Integer(1), "invalid");
53 stringTable.put("valid", new Integer(2));
54 stringTable.put("invalid", new Integer(1));
H A DEnumJvmMemPoolThreshdSupport.java51 intTable.put(new Integer(2), "supported");
52 intTable.put(new Integer(1), "unsupported");
53 stringTable.put("supported", new Integer(2));
54 stringTable.put("unsupported", new Integer(1));
H A DEnumJvmMemPoolType.java51 intTable.put(new Integer(2), "heap");
52 intTable.put(new Integer(1), "nonheap");
53 stringTable.put("heap", new Integer(2));
54 stringTable.put("nonheap", new Integer(1));
H A DEnumJvmMemoryGCVerboseLevel.java51 intTable.put(new Integer(2), "verbose");
52 intTable.put(new Integer(1), "silent");
53 stringTable.put("verbose", new Integer(2));
54 stringTable.put("silent", new Integer(1));
H A DEnumJvmRTBootClassPathSupport.java51 intTable.put(new Integer(2), "supported");
52 intTable.put(new Integer(1), "unsupported");
53 stringTable.put("supported", new Integer(2));
54 stringTable.put("unsupported", new Integer(1));
/openjdk7/langtools/test/tools/javac/generics/
H A DT4683314.java39 retries.put("foo", String.valueOf(12));
/openjdk7/jdk/test/javax/management/loading/
H A DMLetContentTest.java44 attributes.put("archive", archive);
45 attributes.put("Archive", "hahaha");
47 attributes.put("code", code);
48 attributes.put("codE", "hihi");
50 attributes.put("object", object);
51 attributes.put("obJect", "toto");
53 attributes.put("name", name);
54 attributes.put("NAME", "titi");
56 attributes.put("version", version);
57 attributes.put("VeRsIo
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DDefaultScriptObject.java31 * false always for "has" calls. And ignores "delete" and "put"
47 public void put(String name, Object value) { method in class:DefaultScriptObject
50 public void put(int index, Object value) { method in class:DefaultScriptObject
H A DScriptObject.java63 public void put(String name, Object value); method in interface:ScriptObject
68 public void put(int index, Object value); method in interface:ScriptObject
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DPropertyEditorFinder.java60 this.registry.put(Byte.TYPE, ByteEditor.class);
61 this.registry.put(Short.TYPE, ShortEditor.class);
62 this.registry.put(Integer.TYPE, IntegerEditor.class);
63 this.registry.put(Long.TYPE, LongEditor.class);
64 this.registry.put(Boolean.TYPE, BooleanEditor.class);
65 this.registry.put(Float.TYPE, FloatEditor.class);
66 this.registry.put(Double.TYPE, DoubleEditor.class);
71 this.registry.put(type, editor);
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DContrastMetalTheme.java156 table.put("ToolTip.border", blackLineBorder);
157 table.put("TitledBorder.border", blackLineBorder);
158 table.put("Table.focusCellHighlightBorder", whiteLineBorder);
159 table.put("Table.focusCellForeground", getWhite());
161 table.put("TextField.border", textBorder);
162 table.put("PasswordField.border", textBorder);
163 table.put("TextArea.border", textBorder);
164 table.put("TextPane.font", textBorder);

Completed in 320 milliseconds

1234567891011>>