Searched refs:put (Results 176 - 200 of 2354) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthCache.java56 public void put (String pkey, AuthCacheValue value); method in interface:AuthCache
/openjdk7/langtools/test/tools/javac/generics/rawOverride/
H A DT6846972.java47 map.put(array[0], array[1]);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DAttributeList.java136 attributeTypes.put(nm, num);
137 attributeTypes.put(num, nm);
157 attributeTypes.put("fixed", Integer.valueOf(FIXED));
158 attributeTypes.put("required", Integer.valueOf(REQUIRED));
159 attributeTypes.put("current", Integer.valueOf(CURRENT));
160 attributeTypes.put("conref", Integer.valueOf(CONREF));
161 attributeTypes.put("implied", Integer.valueOf(IMPLIED));
/openjdk7/langtools/test/tools/javac/
H A DT6423583.java70 map.put(Tree.Kind.BOOLEAN_LITERAL, Boolean.class);
71 map.put(Tree.Kind.CHAR_LITERAL, Character.class);
72 map.put(Tree.Kind.STRING_LITERAL, String.class);
73 map.put(Tree.Kind.INT_LITERAL, Integer.class);
74 map.put(Tree.Kind.LONG_LITERAL, Long.class);
75 map.put(Tree.Kind.FLOAT_LITERAL, Float.class);
76 map.put(Tree.Kind.DOUBLE_LITERAL, Double.class);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DContext.java61 * context.put(phaseKey, this);
79 * context.put(phaseKey, new Context.Factory<Phase>() {
122 public <T> void put(Key<T> key, Factory<T> fac) { method in class:Context
124 Object old = ht.put(key, fac);
128 ft.put(key, fac); // cannot be duplicate if unique in ht
132 public <T> void put(Key<T> key, T data) { method in class:Context
136 Object old = ht.put(key, data);
184 kt.put(clss, k);
193 public <T> void put(Class<T> clazz, T data) { method in class:Context
194 put(ke
196 public <T> void put(Class<T> clazz, Factory<T> fac) { method in class:Context
[all...]
/openjdk7/jdk/test/javax/management/ObjectName/
H A DValueWildcardTest.java219 h1.put("k", "*");
222 h2.put("k", "a*b");
226 h3.put("k", "?");
229 h4.put("k", "a?b");
233 h5.put("k", "?*");
236 h6.put("k", "a?bc*d");
240 h7.put("k1", "?");
241 h7.put("k2", "*");
244 h8.put("k1", "a?b");
245 h8.put("k
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DISO2022_JP.java424 dst.put((char)(b1 & 0xff));
429 dst.put('\u00a5');
432 dst.put('\u203e');
435 dst.put((char)b1);
448 dst.put(c);
458 dst.put(c);
465 dst.put((char)(b1 + 0xff40));
535 out.put((byte)0x1b);
536 out.put((byte)0x28);
537 out.put((byt
[all...]
H A DISCII91.java510 out.put(contextChar);
689 dst.put('\ufffd');
708 dst.put(contextChar);
722 dst.put('\u0950');
725 dst.put('\u090c');
728 dst.put('\u0961');
731 dst.put('\u0960');
734 dst.put('\u0962');
737 dst.put('\u0963');
740 dst.put('\u094
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderBuffer.java36 * the caller's responsibility to ensure that all put() calls are properly
42 * single-threaded rendering. For example, there is no put(double[]) method
62 * use the copyFromArray() method to complete the bulk put operation.
135 public RenderBuffer put(byte[] x) { method in class:RenderBuffer
136 return put(x, 0, x.length);
139 public RenderBuffer put(byte[] x, int offset, int length) { method in class:RenderBuffer
165 public RenderBuffer put(short[] x) { method in class:RenderBuffer
166 return put(x, 0, x.length);
169 public RenderBuffer put(short[] x, int offset, int length) { method in class:RenderBuffer
202 public RenderBuffer put(in method in class:RenderBuffer
206 public RenderBuffer put(int[] x, int offset, int length) { method in class:RenderBuffer
233 public RenderBuffer put(float[] x) { method in class:RenderBuffer
237 public RenderBuffer put(float[] x, int offset, int length) { method in class:RenderBuffer
264 public RenderBuffer put(long[] x) { method in class:RenderBuffer
268 public RenderBuffer put(long[] x, int offset, int length) { method in class:RenderBuffer
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKEngine.java182 regionToWidgetTypeMap.put(Region.ARROW_BUTTON, new WidgetType[] {
189 regionToWidgetTypeMap.put(Region.BUTTON, WidgetType.BUTTON);
190 regionToWidgetTypeMap.put(Region.CHECK_BOX, WidgetType.CHECK_BOX);
191 regionToWidgetTypeMap.put(Region.CHECK_BOX_MENU_ITEM,
193 regionToWidgetTypeMap.put(Region.COLOR_CHOOSER, WidgetType.COLOR_CHOOSER);
194 regionToWidgetTypeMap.put(Region.FILE_CHOOSER, WidgetType.OPTION_PANE);
195 regionToWidgetTypeMap.put(Region.COMBO_BOX, WidgetType.COMBO_BOX);
196 regionToWidgetTypeMap.put(Region.DESKTOP_ICON, WidgetType.DESKTOP_ICON);
197 regionToWidgetTypeMap.put(Region.DESKTOP_PANE, WidgetType.DESKTOP_PANE);
198 regionToWidgetTypeMap.put(Regio
[all...]
/openjdk7/jdk/src/share/classes/java/nio/
H A DDirect-X-Buffer-bin.java.template52 private ByteBuffer put$Type$(long a, $type$ x) {
56 unsafe.put$Memtype$(a, (nativeByteOrder ? y : Bits.swap(y)));
58 Bits.put$Type$(a, x, bigEndian);
66 public ByteBuffer put$Type$($type$ x) {
68 put$Type$(ix(nextPutIndex($BYTES_PER_VALUE$)), x);
75 public ByteBuffer put$Type$(int i, $type$ x) {
77 put$Type$(ix(checkIndex(i, $BYTES_PER_VALUE$)), x);
H A DX-Buffer.java.template43 * {@link #put($type$) </code><i>put</i><code>} methods that read and write
50 * <li><p> Relative {@link #put($type$[]) </code><i>bulk put</i><code>}
58 * and {@link #putChar(char) </code><i>put</i><code>} methods that read and
140 * <i>get</i> and <i>put</i> methods for each type. For 32-bit floating-point
151 * parameters of the absolute <i>get</i> and <i>put</i> methods are in terms of
169 * type-specific <i>get</i> and <i>put</i> methods described above:
176 * <li><p> A view buffer provides relative bulk <i>get</i> and <i>put</i>
239 * cb.put("tex
[all...]
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedNull.java105 void put(Map m, Object k, Object v) { method in class:CheckedNull
109 equal(null, m.put(k, v));
128 put(m, "foo", null);
129 put(m, null, "foo");
130 put(m, null, null);
131 put(m, "foo", "bar");
133 m.put("a", "b");
135 put(m, "foo", null);
136 put(m, null, "foo");
137 put(
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java376 this.fGraphicsStatesInt.put(kBoundsXIndex, x);
377 this.fGraphicsStatesInt.put(kBoundsYIndex, y);
378 this.fGraphicsStatesInt.put(kBoundsWidthIndex, width);
379 this.fGraphicsStatesInt.put(kBoundsHeightIndex, height);
417 this.fGraphicsStatesFloat.put(kClipXIndex, x);
418 this.fGraphicsStatesFloat.put(kClipYIndex, y);
419 this.fGraphicsStatesFloat.put(kClipWidthIndex, w);
420 this.fGraphicsStatesFloat.put(kClipHeightIndex, h);
431 this.fGraphicsStatesInt.put(kClipStateIndex, kClipRect);
459 this.fGraphicsStatesInt.put(kClipNumTypesInde
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java657 map.put(idName, this);
666 map.put(alias, this);
676 map.put(alias, this);
4179 aliases.put("ARAB", ARABIC);
4180 aliases.put("ARMI", IMPERIAL_ARAMAIC);
4181 aliases.put("ARMN", ARMENIAN);
4182 aliases.put("AVST", AVESTAN);
4183 aliases.put("BALI", BALINESE);
4184 aliases.put("BAMU", BAMUM);
4185 aliases.put("BAT
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DCompile.java245 symbolTable.put ("org", org);
246 symbolTable.put ("org/omg", omg);
247 symbolTable.put ("org/omg/CORBA", corba);
253 symbolTable.put ("org/omg/CORBA/Object", object);
260 symbolTable.put ("org/omg/CORBA/TypeCode", pEntry);
261 symbolTable.put ("CORBA/TypeCode", pEntry); // <d55699>
262 overrideNames.put ("CORBA/TypeCode", "org/omg/CORBA/TypeCode"); // <d55699>
263 overrideNames.put ("org/omg/CORBA/TypeCode", "CORBA/TypeCode"); // <d55699>
265 //symbolTable.put ("TypeCode", pEntry);
266 //overrideNames.put ("TypeCod
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DAlgorithmId.java575 oidTable.put(stdAlgName,
859 nameTable.put(MD5_oid, "MD5");
860 nameTable.put(MD2_oid, "MD2");
861 nameTable.put(SHA_oid, "SHA");
862 nameTable.put(SHA256_oid, "SHA256");
863 nameTable.put(SHA384_oid, "SHA384");
864 nameTable.put(SHA512_oid, "SHA512");
865 nameTable.put(RSAEncryption_oid, "RSA");
866 nameTable.put(RSA_oid, "RSA");
867 nameTable.put(DH_oi
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DLoginConfigImpl.java175 options.put("useKeyTab", "true");
176 options.put("storeKey", "true");
177 options.put("doNotPrompt", "true");
178 options.put("isInitiator", "false");
180 options.put("useTicketCache", "true");
181 options.put("doNotPrompt", "false");
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DGetPropertyInfo.java52 p.put("format", "8000 HZ 24 BIT MONO UNSIGNED BIG-ENDIAN");
53 p.put("control rate", 125);
54 p.put("reverb", false);
55 p.put("auto gain control", "false");
74 p.put("format", "9000 Hz, 8 bit, 4 channels");
88 p.put("format", "PCM_UNSIGNED 44100.0 Hz, 16 bit, 3 channels, 6 bytes/frame, big-endian");
/openjdk7/jdk/test/javax/swing/JInternalFrame/6725409/
H A Dbug6725409.java94 UIManager.put("InternalFrameTitlePane.restoreButtonText",
96 UIManager.put("InternalFrameTitlePane.moveButtonText",
98 UIManager.put("InternalFrameTitlePane.sizeButtonText",
100 UIManager.put("InternalFrameTitlePane.minimizeButtonText",
102 UIManager.put("InternalFrameTitlePane.maximizeButtonText",
104 UIManager.put("InternalFrameTitlePane.closeButtonText",
/openjdk7/jdk/test/sun/security/krb5/
H A DIPv6.java85 map.put("debug", "true");
86 map.put("doNotPrompt", "true");
87 map.put("useTicketCache", "false");
88 map.put("useFirstPass", "true");
89 shared.put("javax.security.auth.login.name", "any");
90 shared.put("javax.security.auth.login.password", "any".toCharArray());
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS9Attribute.java260 NAME_OID_TABLE.put("emailaddress", PKCS9_OIDS[1]);
261 NAME_OID_TABLE.put("unstructuredname", PKCS9_OIDS[2]);
262 NAME_OID_TABLE.put("contenttype", PKCS9_OIDS[3]);
263 NAME_OID_TABLE.put("messagedigest", PKCS9_OIDS[4]);
264 NAME_OID_TABLE.put("signingtime", PKCS9_OIDS[5]);
265 NAME_OID_TABLE.put("countersignature", PKCS9_OIDS[6]);
266 NAME_OID_TABLE.put("challengepassword", PKCS9_OIDS[7]);
267 NAME_OID_TABLE.put("unstructuredaddress", PKCS9_OIDS[8]);
268 NAME_OID_TABLE.put("extendedcertificateattributes", PKCS9_OIDS[9]);
269 NAME_OID_TABLE.put("issuerandserialnumbe
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DResult.java212 unitMap.put("U", new Integer(WORK_UNITS));
213 unitMap.put("M", new Integer(WORK_MILLIONS));
214 unitMap.put("K", new Integer(WORK_THOUSANDS));
215 unitMap.put("A", new Integer(WORK_AUTO));
216 unitMap.put("MU", new Integer(WORK_MILLIONS));
217 unitMap.put("KU", new Integer(WORK_THOUSANDS));
218 unitMap.put("AU", new Integer(WORK_AUTO));
220 unitMap.put("O", new Integer(WORK_UNITS | WORK_OPS));
221 unitMap.put("NO", new Integer(WORK_UNITS | WORK_OPS));
222 unitMap.put("M
[all...]
/openjdk7/jdk/test/com/sun/security/auth/module/KeyStoreLoginModule/
H A DOptionTest.java98 options.put(O_TYPE, P11KEYSTORE);
113 options.put(O_TYPE, P11KEYSTORE);
114 options.put(O_URL, NONE);
115 options.put(O_KPASS_URL, KPASS_URL);
129 options.put(O_PPATH, "true");
130 options.put(O_SPASS_URL, SPASS_URL);
144 options.put(O_PPATH, "true");
145 options.put(O_KPASS_URL, KPASS_URL);
176 options.put(O_ALIAS, ALIAS);
190 options.put(O_SPASS_UR
[all...]
/openjdk7/jdk/test/java/security/Provider/
H A DGetInstance.java141 put("MessageDigest.foo", "GetInstance$FooDigest");
142 put("CertStore.foo", "GetInstance$FooStore");
143 put("Signature.foo", "GetInstance$FooSignatureSpi");
145 put("Signature.fuu", "GetInstance$BazSignature");
148 put("Signature.baz", "GetInstance$BazSignatureSpi");
156 put("MessageDigest.bar", "GetInstance$FooKey");
157 put("Signature.bar", "GetInstance$FooKey");
158 put("Certstore.bar", "GetInstance$FooKey");
161 put("Signature.baz", "GetInstance$BazSignature");
168 put("MessageDiges
[all...]

Completed in 154 milliseconds

1234567891011>>