Searched defs:map (Results 151 - 175 of 306) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64Frame.java153 IA64RegisterMap map = (IA64RegisterMap) regMap;
156 Assert.that(map != null, "map must be set");
161 map.setIncludeArgumentOops(false);
163 if (isEntryFrame()) return senderForEntryFrame(map);
164 if (isInterpretedFrame()) return senderForInterpreterFrame(map);
176 return senderForCompiledFrame(map, cb);
187 private Frame senderForEntryFrame(IA64RegisterMap map) { argument
189 Assert.that(map != null, "map mus
209 senderForInterpreterFrame(IA64RegisterMap map) argument
220 senderForDeoptimizedFrame(IA64RegisterMap map, CodeBlob cb) argument
225 senderForCompiledFrame(IA64RegisterMap map, CodeBlob cb) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpring.java390 protected abstract int map(int i); method in class:Spring.SpringMap
395 return map(s.getMinimumValue());
399 return map(s.getPreferredValue());
403 return Math.min(Short.MAX_VALUE, map(s.getMaximumValue()));
407 return map(s.getValue());
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicLabelUI.java73 static void loadActionMap(LazyActionMap map) { argument
74 map.put(new Actions(Actions.PRESS));
75 map.put(new Actions(Actions.RELEASE));
H A DBasicLookAndFeel.java1947 * cues map onto user and system activities that may be useful
2218 * map.
2220 static void installAudioActionMap(ActionMap map) { argument
2223 map.setParent(((BasicLookAndFeel)laf).getAudioActionMap());
2237 ActionMap map = c.getActionMap();
2238 if (map != null) {
2239 Action audioAction = map.get(actionKey);
/openjdk7/jdk/src/share/classes/java/text/
H A DRBCollationTables.java104 * @param map The collator's character-mapping table (the value for mapping)
114 UCompactIntArray map,
122 mapping = map;
112 fillInTables(boolean f2ary, boolean swap, UCompactIntArray map, Vector cTbl, Vector eTbl, IntHashtable cFlgs, short mso, short mto) argument
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListSet.java92 * The underlying map. Uses Boolean.TRUE as value for each
474 // Support for resetting map in clone
475 private void setMap(ConcurrentNavigableMap<E,Object> map) { argument
476 UNSAFE.putObjectVolatile(this, mapOffset, map);
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DAttributes.java58 protected Map<Object,Object> map; field in class:Attributes
74 map = new HashMap(size);
84 map = new HashMap(attr);
97 return map.get(name);
148 return map.put((Attributes.Name)name, (String)value);
179 return map.remove(name);
191 return map.containsValue(value);
201 return map.containsKey(name);
208 * @param attr the Attributes to be stored in this map
223 map
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceRefKlass.cpp450 // Clear the nonstatic oop-map entries corresponding to referent
464 OopMapBlock* map = ik->start_of_nonstatic_oop_maps(); local
466 // Check that the current map is (2,4) - currently points at field with
467 // offset 2 (words) and has 4 map entries.
473 assert(map->offset() == java_lang_ref_Reference::queue_offset &&
474 map->count() == 1, "just checking");
476 assert(map->offset() == offset && map->count() == count,
479 // Update map to (3,1) - point to offset of 3 (words) with 1 map entr
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DgenerateOptoStub.cpp56 // Make a map, with JVM state
66 SafePointNode *map = new (C) SafePointNode( max_map, jvms ); local
67 jvms->set_map(map);
69 assert(map == this->map(), "kit.map is set");
75 map()->init_req(i, _gvn.transform(new (C) ParmNode(start, i)));
76 for( ; i<map()->req(); i++ )
77 map()->init_req(i, top()); // For nicer debugging
80 set_all_memory(map()
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DAnimationController.java214 Map<Part, AnimationState> map = animationStateMap.get(component);
216 if (map != null) {
217 map.remove(part);
218 if (map.size() == 0) {
224 if (map == null) {
225 map = new EnumMap<Part, AnimationState>(Part.class);
226 animationStateMap.put(component, map);
228 map.put(part,
245 Map<Part, AnimationState> map =
247 if (map !
408 private static final Map<Part, PartUIClientPropertyKey> map = field in class:AnimationController.PartUIClientPropertyKey
[all...]
H A DWindowsScrollBarUI.java372 private static HashMap<String, WeakReference<Grid>> map; field in class:WindowsScrollBarUI.Grid
377 map = new HashMap<String, WeakReference<Grid>>();
382 WeakReference<Grid> ref = map.get(key);
386 map.put(key, new WeakReference<Grid>(grid));
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DEnvHelp.java435 /* Return a writable map containing only those attributes that are
444 SortedMap<String, V> map = new TreeMap<String, V>(attributes);
445 purgeUnserializable(map.values());
446 hideAttributes(map);
447 return map;
511 been eliminated from the map anyway because they are typically
533 private static void hideAttributes(SortedMap<String, ?> map) { argument
534 if (map.isEmpty())
540 String hide = (String) map.get(HIDDEN_ATTRIBUTES);
562 /* Construct a string that is greater than any key in the map
735 mapToHashtable(Map<K, V> map) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DSystemFlavorMap.java53 * The SystemFlavorMap is a configurable map between "natives" (Strings), which
112 * 'flavorToNative' map.
124 * Accessor to nativeToFlavor map. Since we use lazy initialization we must
145 * Accessor to flavorToNative map. Since we use lazy initialization we must
515 * Stores the listed object under the specified hash key in map. Unlike a
516 * standard map, the listed object will not replace any object already at
520 private void store(Object hashed, Object listed, Map map) { argument
521 List list = (List)map.get(hashed);
524 map.put(hashed, list);
701 // To prevent the List stored in the map fro
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.inline.hpp65 inline int frame::frame_size(RegisterMap* map) const { return sender_sp() - sp(); }
296 inline oop frame::saved_oop_result(RegisterMap* map) const {
297 return *((oop*) map->location(O0->as_VMReg()));
300 inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) { argument
301 *((oop*) map->location(O0->as_VMReg())) = obj;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.inline.hpp298 inline oop frame::saved_oop_result(RegisterMap* map) const {
299 return *((oop*) map->location(rax->as_VMReg()));
302 inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) { argument
303 *((oop*) map->location(rax->as_VMReg())) = obj;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DProperties.java42 private String[] map = new String[4]; field in class:Properties
67 hash = 83 * hash + (this.map != null ? this.map.hashCode() : 0);
87 map = new String[p.map.length];
88 System.arraycopy(map, 0, p.map, 0, p.map.length);
109 for (int i = 0; i < map.length; i += 2)
110 if (map[
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.cpp217 void ValueMap::kill_map(ValueMap* map) { argument
219 _killed_values.set_union(&map->_killed_values);
360 // initial, empty value map with nesting 0
372 assert(value_map_of(dominator) != NULL, "value map of dominator must exist");
374 // create new value map with increased nesting
410 TRACE_VALUE_NUMBERING(tty->print("value map before processing block: "); current_map()->print());
429 // remember value map for successors
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DSpecialCaseMap.java50 * Read and parse a Unicode special case map file.
54 * special case map data file that could be successfully parsed
90 * @param s a line of the Unicode special case map data file to be parsed
146 char[] map = new char[buff.length()];
147 buff.getChars(0, buff.length(), map, 0);
148 return map;
159 static int find(int ch, SpecialCaseMap[] map) { argument
160 if ((map == null) || (map.length == 0)) {
165 top = map
221 hex6(char[] map) argument
235 setLowerCaseMap(char[] map) argument
239 setUpperCaseMap(char[] map) argument
243 setTitleCaseMap(char[] map) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp159 int frame_size(RegisterMap* map) const;
162 frame sender(RegisterMap* map) const;
170 frame real_sender(RegisterMap* map) const;
178 frame sender_for_compiled_frame(RegisterMap* map) const;
179 frame sender_for_entry_frame(RegisterMap* map) const;
180 frame sender_for_interpreter_frame(RegisterMap* map) const;
181 frame sender_for_native_frame(RegisterMap* map) const;
393 oop saved_oop_result(RegisterMap* map) const;
394 void set_saved_oop_result(RegisterMap* map, oop obj);
417 void oops_interpreted_do(OopClosure* f, const RegisterMap* map, boo
429 oops_do(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp75 bm_word_t* map() const { return _map; } function in class:VALUE_OBJ_CLASS_SPEC
76 bm_word_t map(idx_t word) const { return _map[word]; } function in class:VALUE_OBJ_CLASS_SPEC
79 bm_word_t* word_addr(idx_t bit) const { return map() + word_index(bit); }
116 // Constructs a bitmap with no map, and size 0.
119 // Constructs a bitmap with the given map and size.
120 BitMap(bm_word_t* map, idx_t size_in_bits);
123 // new bitmap). Allocates the map array in resource area if
127 // Set the map and size.
128 void set_map(bm_word_t* map) { _map = map; } argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DQNameMap.java42 * This specialized map allows a look up operation without constructing
67 * The number of key-value mappings contained in this identity hash map.
86 * Gives an entrySet view of this map
97 * Associates the specified value with the specified keys in this map.
98 * If the map previously contained a mapping for this key, the old
138 * or <tt>null</tt> if the map contains no mapping for this key.
142 * @return the value to which this map maps the specified set of keya, or
143 * <tt>null</tt> if the map contains no mapping for this set of keys.
157 * Returns the number of keys-value mappings in this map.
159 * @return the number of keys-value mappings in this map
173 putAll(QNameMap<? extends V> map) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/
H A DExternalAttachmentsUnmarshaller.java89 private final Map<URI, Policy> map = new HashMap<URI, Policy>(); field in class:ExternalAttachmentsUnmarshaller
98 final Map<URI, Policy> map = instance.unmarshal(reader, null);
99 LOGGER.exiting(map);
100 return Collections.unmodifiableMap(map);
118 processCharacters(event.asCharacters(), parentElement, map);
125 return map;
129 processStartTag(element, parentElement, reader, map);
133 return map;
143 return map;
147 final XMLEventReader reader, final Map<URI, Policy> map)
146 processStartTag(final StartElement element, final StartElement parent, final XMLEventReader reader, final Map<URI, Policy> map) argument
209 processCharacters(final Characters chars, final StartElement currentElement, final Map<URI, Policy> map) argument
226 processUri(final Characters chars, final Map<URI, Policy> map) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DEndpointImpl.java224 public void setProperties(Map<String, Object> map) { argument
225 this.properties = new HashMap<String, Object>(map);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DAbstractSchemaValidationTube.java370 private @Nullable void addSchemaFragmentSource(Document doc, String systemId, Map<String, DOMSource> map) { argument
386 map.put(docId, new DOMSource(elem, docId));
483 * @param pseudo a map(tns-->systemId) of schema documents
/openjdk7/jdk/src/solaris/native/java/lang/
H A Djava_props_md.c76 /* Take an array of string pairs (map of key->value) and a string (key).
77 * Examine each pair in the map to see if the first string (key) matches the
79 * return 1. Otherwise do nothing and return 0. The end of the map is
83 mapLookup(char* map[], const char* key, char** value) { argument
85 for (i = 0; strcmp(map[i], ""); i += 2){
86 if (!strcmp(key, map[i])){
87 *value = map[i + 1];
199 * any of the names in the locale_aliases list, map it to the
202 * no country name, and this facility is used to map each language
203 * to a default country if that's possible. It's also used to map
[all...]

Completed in 148 milliseconds

1234567891011>>