Searched defs:map (Results 26 - 50 of 306) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVirtualConstructor.java43 private Map map; // Map<String, Class> field in class:VirtualConstructor
47 map = new HashMap();
53 already a class for this type name in the map. */
55 if (map.get(cTypeName) != null) {
59 map.put(cTypeName, clazz);
73 for (Iterator iter = map.keySet().iterator(); iter.hasNext(); ) {
76 return (VMObject) VMObjectFactory.newObject((Class) map.get(typeName), addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64RegisterMap.java38 protected IA64RegisterMap(RegisterMap map) { argument
39 super(map);
50 protected void initializeFromPD(RegisterMap map) {} argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86RegisterMap.java38 protected X86RegisterMap(RegisterMap map) { argument
39 super(map);
50 protected void initializeFromPD(RegisterMap map) {} argument
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialRef.java97 * of the structured type are mapped according to the given type map.
99 * @param map a <code>java.util.Map</code> object containing zero or
105 * according to the supplied type map
109 public Object getObject(java.util.Map<String,Class<?>> map) argument
112 map = new Hashtable(map);
114 return map.get(object);
H A DSerialStruct.java82 * @param map a <code>java.util.Map</code> object in which
90 public SerialStruct(Struct in, Map<String,Class<?>> map) argument
101 attribs = in.getAttributes(map);
108 mapToSerial(map);
118 * map to custom map it to a class in the Java programming
119 * language. The type map gives the SQL type and the class
126 * @param map a <code>java.util.Map</code> object in which
133 public SerialStruct(SQLData in, Map<String,Class<?>> map) argument
143 in.writeSQL(new SQLOutputImpl(tmp, map));
197 getAttributes(Map<String,Class<?>> map) argument
223 mapToSerial(Map map) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DComponentInputMap.java61 * @param map a <code>ComponentInputMap</code>
63 * @throws IllegalArgumentException if <code>map</code>
67 public void setParent(InputMap map) { argument
68 if (getParent() == map) {
71 if (map != null && (!(map instanceof ComponentInputMap) ||
72 ((ComponentInputMap)map).getComponent() != getComponent())) {
75 super.setParent(map);
/openjdk7/jdk/src/share/classes/java/sql/
H A DArray.java47 * <li>make an entry in a type map that contains
55 * When a type map with an entry for
58 * it contains will be used to map the elements of the <code>ARRAY</code> value.
59 * If no type map is supplied, which would typically be the case,
60 * the connection's type map is used by default.
61 * If the connection's type map or a type map supplied to a method has no entry
111 * uses the type map associated with the connection for customizations of
134 * the specified <code>map</code> for type map customization
156 getArray(java.util.Map<String,Class<?>> map) argument
219 getArray(long index, int count, java.util.Map<String,Class<?>> map) argument
276 getResultSet(java.util.Map<String,Class<?>> map) argument
344 getResultSet(long index, int count, java.util.Map<String,Class<?>> map) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDescriptorCache.java50 WeakReference<ImmutableDescriptor> wr = map.get(descriptor);
54 map.put(descriptor, new WeakReference<ImmutableDescriptor>(descriptor));
65 map = new WeakHashMap<ImmutableDescriptor, field in class:DescriptorCache
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DRefsByTypeQuery.java110 private void print(final Map<JavaClass, Long> map) { argument
112 Set<JavaClass> keys = map.keySet();
117 Long count1 = map.get(first);
118 Long count2 = map.get(second);
133 out.println(map.get(clazz));
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DSimple.java99 * @param map Mappings object which is generated by {@link Main#compile}.
102 int generateSrc(Mappings map) { argument
119 Map<String,String> a = map.getAliases();
120 List<Integer> roi = map.getRawOffsetsIndex();
121 List<Set<String>> roit = map.getRawOffsetsIndexTable();
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DFileDataSource.java124 // check to see if the type map is null?
153 * @param map The FileTypeMap for this object.
155 public void setFileTypeMap(FileTypeMap map) { argument
156 typeMap = map;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DMultiMap.java59 public void putAll(Map<? extends K, ? extends V> map) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/episode/
H A DSchemaBindings.java37 void map(boolean value); method in interface:SchemaBindings
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyMapMutator.java32 * The class serves as a base for specific policy map mutator implementations. It provides common methods that allow
33 * concrete mutator implementations to connect and disconnect to/from a policy map instance.
41 private PolicyMap map = null; field in class:PolicyMapMutator
51 * The method is used to connect the policy map mutator instance to the map it should mutate.
53 * @param map the policy map instance that will be mutable by this mutator.
54 * @throws IllegalStateException in case this mutator object is already connected to a policy map.
56 public void connect(final PolicyMap map) { argument
61 this.map
[all...]
H A DPolicyMapUtil.java57 * Throw an exception if the policy map contains any policy with at least two
63 * @param map policy map to be processed
64 * @throws PolicyException Thrown if the policy map contains at least one policy
67 public static void rejectAlternatives(final PolicyMap map) throws PolicyException { argument
68 for (Policy policy : map) {
76 * Inserts all PolicySubjects of type WsdlBindingSubject into the given policy map.
78 * @param policyMap The policy map
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DNamedNodeMapIterator.java40 public NamedNodeMapIterator(NamedNodeMap map) { argument
41 _map = map;
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_util_HashMap.java41 Map<String, String> map = new HashMap<String, String>();
42 map.put(null, null);
43 map.put("key", "value");
44 map.put("key-null", "null-value");
45 map.put("way", "remove");
46 return map;
51 Map<String, String> map = new HashMap<String, String>();
52 map.put(null, "null-value");
53 map.put("key", "value");
54 map
65 validate(Map<String, String> map) argument
81 validate(Map<String, String> map, String key, String value) argument
[all...]
/openjdk7/jdk/test/java/net/URLClassLoader/
H A DClassPathTest.java46 Map map; field in class:ClassPathTest
82 map = manifest.getEntries();
84 Iterator it = map.entrySet().iterator();
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAttributes.java42 map = new HashMap<String,Attribute>();
49 map.put(attr.getName(cr.getConstantPool()), attr);
51 // don't enter invalid names in map
58 map = new HashMap<String,Attribute>();
62 map.put(attr.getName(constant_pool), attr);
64 // don't enter invalid names in map
78 return map.get(name);
106 public final Map<String, Attribute> map; field in class:Attributes
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DCodeTaglet.java51 public static void register(Map<String, Taglet> map) { argument
52 map.remove(NAME);
53 map.put(NAME, new CodeTaglet());
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSunEntries.java75 static void putEntries(Map<Object, Object> map) { argument
89 map.put("SecureRandom.NativePRNG",
92 map.put("SecureRandom.SHA1PRNG",
95 map.put("SecureRandom.NativePRNG",
102 map.put("Signature.SHA1withDSA", "sun.security.provider.DSA$SHA1withDSA");
103 map.put("Signature.NONEwithDSA", "sun.security.provider.DSA$RawDSA");
104 map.put("Alg.Alias.Signature.RawDSA", "NONEwithDSA");
108 map.put("Signature.SHA1withDSA SupportedKeyClasses", dsaKeyClasses);
109 map.put("Signature.NONEwithDSA SupportedKeyClasses", dsaKeyClasses);
111 map
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DVariability.java42 private static Variability[] map = new Variability[NATTRIBUTES]; field in class:Variability
97 if (value < 0 || value >= map.length || map[value] == null) {
101 return map[value];
107 map[value]=this;
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DVariability.java42 private static Variability[] map = new Variability[NATTRIBUTES]; field in class:Variability
97 if (value < 0 || value >= map.length || map[value] == null) {
101 return map[value];
107 map[value]=this;
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthCacheImpl.java47 public void setMap (HashMap map) { argument
48 hashtable = map;
51 // put a value in map according to primary key + secondary key which
72 // get a value from map checking both primary
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXCreateWindowParams.java35 public XCreateWindowParams(Object[] map) { argument
36 init(map);
38 private void init(Object[] map) { argument
39 if (map.length % 2 != 0) {
42 for (int i = 0; i < map.length; i += 2) {
43 put(map[i], map[i+1]);

Completed in 123 milliseconds

1234567891011>>