Searched defs:map (Results 251 - 275 of 306) sorted by relevance

<<111213

/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_h.cpp1286 // map to physical register encoding
2043 void map(OpClassForm &opc) { function in class:OutputMachOperands
2048 void map(OperandForm &oper) { function in class:OutputMachOperands
2053 void map(char *name) { function in class:OutputMachOperands
2060 void map(InstructForm &inst){ assert( false, "ShouldNotCallThis()"); } function in class:OutputMachOperands
2102 void map(OpClassForm &opc) { fprintf(_cpp, " %s_rule", opc._ident ); } function in class:OutputMachOpcodes
2103 void map(OperandForm &oper) { fprintf(_cpp, " %s_rule", oper._ident ); } function in class:OutputMachOpcodes
2104 void map(char *name) { if (name) fprintf(_cpp, " %s_rule", name); function in class:OutputMachOpcodes
2106 void map(InstructForm &inst) {fprintf(_cpp, " %s_rule", inst._ident ); } function in class:OutputMachOpcodes
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp192 "if stub has an oop map it must have a valid frame size");
390 RegisterMap map(THREAD, false);
391 frame fr = THREAD->last_frame().sender(&map);
431 RegisterMap map(thread, false);
432 frame fr = thread->last_frame().sender(&map);
466 RegisterMap map(thread, false);
467 frame exception_frame = thread->last_frame().sender(&map);
965 OopMap* map = caller_code->oop_map_for_return_address(caller_frame.pc()); variable
966 assert(map != NULL, "null check");
967 map
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java280 * Given the data from the Unicode specification file, this routine builds a map.
290 * The resulting map is dense representation of the character data. It contains
300 * For undefined characters, method buildOne is not called and the map entry for
328 // build map data for all chars except last in range
574 static void addExProp(long[] map, PropList propList, String prop, long mask) { argument
578 if (cp < map.length)
579 map[cp] |= mask;
585 * This is the heart of the table compression strategy. The inputs are a map
586 * and a number of bits (size). The map is simply an array of long integer values;
587 * the number of bits indicates how index values for that map ar
618 buildTable(long[] map, int size) argument
1813 searchBins(long[] map, int binsOccupied) argument
1828 generateForSizes(long[] map) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLParserExtension.java117 // structures for policies really needed to build a map
306 final Map<WSDLObject, Collection<PolicyRecordHandler>> map, final WSDLObject key, final PolicyRecordHandler handler) {
307 if (map.containsKey(key)) {
308 map.get(key).add(handler);
312 map.put(key,newSet);
331 final Map<WSDLObject, Collection<PolicyRecordHandler>> map) {
340 addHandlerToMap(map, element,
347 final WSDLObject element, final XMLStreamReader reader, final Map<WSDLObject, Collection<PolicyRecordHandler>> map) {
349 processReferenceUri(policyReader.readPolicyReferenceElement(reader), element, reader, map);
360 addHandlerToMap(map, elemen
305 addHandlerToMap( final Map<WSDLObject, Collection<PolicyRecordHandler>> map, final WSDLObject key, final PolicyRecordHandler handler) argument
327 processReferenceUri( final String policyUri, final WSDLObject element, final XMLStreamReader reader, final Map<WSDLObject, Collection<PolicyRecordHandler>> map) argument
346 processSubelement( final WSDLObject element, final XMLStreamReader reader, final Map<WSDLObject, Collection<PolicyRecordHandler>> map) argument
367 processAttributes(final WSDLObject element, final XMLStreamReader reader, final Map<WSDLObject, Collection<PolicyRecordHandler>> map) argument
[all...]
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java689 private static void checkMapSanity(Map<String,String> map) { argument
691 Set<String> keySet = map.keySet();
692 Collection<String> values = map.values();
693 Set<Map.Entry<String,String>> entrySet = map.entrySet();
704 s2.append(var + "=" + map.get(var) + "\n");
719 check(map.containsKey(key));
720 check(map.containsValue(value));
1464 // Check that various map invariants hold
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java136 /** map a type function over all immediate descendants of this type
138 public Type map(Mapping f) { method in class:Type
142 /** map a type function over a list of types
144 public static List<Type> map(List<Type> ts, Mapping f) { method in class:Type
146 List<Type> tail1 = map(ts.tail, f);
499 public Type map(Mapping f) { method in class:Type.WildcardType
500 //- System.err.println(" (" + this + ").map(" + f + ")");//DEBUG
704 public Type map(Mapping f) { method in class:Type.ClassType
708 List<Type> typarams1 = map(typarams, f);
835 public Type map(Mappin method in class:Type.ArrayType
930 public Type map(Mapping f) { method in class:Type.MethodType
1185 public Type map(Mapping f) { method in class:Type.ForAll
1326 public Type map(Mapping f) { return this; } method in class:Type.ErrorType
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.c59 /* For map from HPROF_UTF8 to a string */
70 /* Class information map from class ID (ClassIndex) to class information */
414 /* Given the heap dump data and the utf8 map, check/write the heap dump. */
700 CmapInfo *map; local
704 map = (CmapInfo*)table_get_info(ctab, cindex);
705 HPROF_ASSERT(map!=NULL);
706 HPROF_ASSERT(num_bytes==map->inst_size);
712 for(i=0;i<map->n_finfo;i++) {
717 ty = map->finfo[i].ty;
718 id = map
[all...]
/openjdk7/jdk/test/java/util/Map/
H A DBasicSerialization.java89 public static <K, V> Map<K, V> mapClone(Map<K, V> map) { argument
93 cloneMethod = map.getClass().getMethod("clone", new Class[]{});
100 Map<K, V> result = (Map<K, V>)cloneMethod.invoke(map, new Object[]{});
103 fail("clone() failed " + map.getClass().getSimpleName(), all);
109 copyConstructor = (Constructor<? extends Map>)map.getClass().getConstructor(new Class[]{Map.class});
111 Map<K, V> result = (Map<K, V>)copyConstructor.newInstance(new Object[]{map});
115 return serialClone(map);
121 public void testSerialization(String description, Map<IntegerEnum, String> map) { argument
124 Map<IntegerEnum, String> clone = mapClone(map);
125 Map<IntegerEnum, String> serialClone = serialClone(map);
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java1181 protected String genHTMLForOopMap(OopMap map) { argument
1230 OopMapStream oms = new OopMapStream(map, OopMapValue.OopTypes.OOP_VALUE);
1233 oms = new OopMapStream(map, OopMapValue.OopTypes.NARROWOOP_VALUE);
1236 oms = new OopMapStream(map, OopMapValue.OopTypes.VALUE_VALUE);
1239 oms = new OopMapStream(map, OopMapValue.OopTypes.CALLEE_SAVED_VALUE);
1242 oms = new OopMapStream(map, OopMapValue.OopTypes.DERIVED_OOP_VALUE);
1255 OopMap map = mapSet.findMapAtOffset(pcOffset, VM.getVM().isDebugging());
1256 if (map == null) {
1260 return genOopMapInfo(map);
1263 protected String genOopMapInfo(OopMap map) { argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java148 static void loadActionMap(LazyActionMap map) { argument
149 map.put(new Actions(Actions.SELECT_PREVIOUS_COLUMN));
150 map.put(new Actions(Actions.SELECT_PREVIOUS_COLUMN_EXTEND));
151 map.put(new Actions(Actions.SELECT_PREVIOUS_COLUMN_CHANGE_LEAD));
152 map.put(new Actions(Actions.SELECT_NEXT_COLUMN));
153 map.put(new Actions(Actions.SELECT_NEXT_COLUMN_EXTEND));
154 map.put(new Actions(Actions.SELECT_NEXT_COLUMN_CHANGE_LEAD));
155 map.put(new Actions(Actions.SELECT_PREVIOUS_ROW));
156 map.put(new Actions(Actions.SELECT_PREVIOUS_ROW_EXTEND));
157 map
[all...]
H A DBasicSliderUI.java296 static void loadActionMap(LazyActionMap map) { argument
297 map.put(new Actions(Actions.POSITIVE_UNIT_INCREMENT));
298 map.put(new Actions(Actions.POSITIVE_BLOCK_INCREMENT));
299 map.put(new Actions(Actions.NEGATIVE_UNIT_INCREMENT));
300 map.put(new Actions(Actions.NEGATIVE_BLOCK_INCREMENT));
301 map.put(new Actions(Actions.MIN_SCROLL_INCREMENT));
302 map.put(new Actions(Actions.MAX_SCROLL_INCREMENT));
H A DBasicSplitPaneUI.java295 static void loadActionMap(LazyActionMap map) { argument
296 map.put(new Actions(Actions.NEGATIVE_INCREMENT));
297 map.put(new Actions(Actions.POSITIVE_INCREMENT));
298 map.put(new Actions(Actions.SELECT_MIN));
299 map.put(new Actions(Actions.SELECT_MAX));
300 map.put(new Actions(Actions.START_RESIZE));
301 map.put(new Actions(Actions.TOGGLE_FOCUS));
302 map.put(new Actions(Actions.FOCUS_OUT_FORWARD));
303 map.put(new Actions(Actions.FOCUS_OUT_BACKWARD));
H A DBasicTableUI.java862 InputMap map = table.getInputMap(JComponent.WHEN_FOCUSED);
863 if (map != null && map.get(keyStroke) != null) {
866 map = table.getInputMap(JComponent.
868 if (map != null && map.get(keyStroke) != null) {
900 map = component.getInputMap(JComponent.WHEN_FOCUSED);
901 Object binding = (map != null) ? map.get(keyStroke) : null;
903 map
1508 loadActionMap(LazyActionMap map) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLDocument.java852 * Adds the specified map, this will remove a Map that has been
855 * @param map the <code>Map</code> to be registered
857 void addMap(Map map) { argument
858 String name = map.getName();
868 ((Hashtable)maps).put("#" + name, map);
874 * Removes a previously registered map.
875 * @param map the <code>Map</code> to be removed
877 void removeMap(Map map) { argument
878 String name = map.getName();
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java1705 private static short[] toList(HashMap<String, Short> map) { argument
1706 short[] list = new short[map.size()];
1708 for (Entry<String, Short> entry : map.entrySet()) {
2103 private Short getID(HashMap<String, Short> map, String key) { argument
2104 Short ret = map.get(key);
2106 map.put(key, (short)map.size());
2107 return map.get(key);
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java533 public static FlavorTable adaptFlavorMap(final FlavorMap map) { argument
534 if (map instanceof FlavorTable) {
535 return (FlavorTable)map;
540 return map.getNativesForFlavors(flavors);
543 return map.getFlavorsForNatives(natives);
649 * The map keys are sorted according to the native formats preference
653 FlavorTable map) {
658 return getFormatsForFlavors(flavors, map);
667 * The map keys are sorted according to the native formats preference
670 public SortedMap getFormatsForFlavor(DataFlavor flavor, FlavorTable map) { argument
652 getFormatsForTransferable(Transferable contents, FlavorTable map) argument
689 getFormatsForFlavors(DataFlavor[] flavors, FlavorTable map) argument
761 getFormatsForTransferableAsArray(Transferable contents, FlavorTable map) argument
765 getFormatsForFlavorAsArray(DataFlavor flavor, FlavorTable map) argument
769 getFormatsForFlavorsAsArray(DataFlavor[] flavors, FlavorTable map) argument
780 getFlavorsForFormat(long format, FlavorTable map) argument
790 getFlavorsForFormats(long[] formats, FlavorTable map) argument
876 getFlavorsForFormatsAsSet(long[] formats, FlavorTable map) argument
917 getFlavorsForFormatAsArray(long format, FlavorTable map) argument
937 getFlavorsForFormatsAsArray(long[] formats, FlavorTable map) argument
2398 keysToLongArray(SortedMap map) argument
2413 keysToDataFlavorArray(Map map) argument
2869 DataFlavorComparator(Map map) argument
2873 DataFlavorComparator(Map map, boolean order) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java1304 * Returns an unmodifiable view of the specified map. This method
1306 * maps. Query operations on the returned map "read through"
1307 * to the specified map, and attempts to modify the returned
1308 * map, whether direct or via its collection views, result in an
1311 * The returned map will be serializable if the specified map
1314 * @param m the map for which an unmodifiable view is to be returned.
1315 * @return an unmodifiable view of the specified map.
1506 * Returns an unmodifiable view of the specified sorted map. This method
1508 * sorted maps. Query operations on the returned sorted map "rea
2046 putAll(Map<? extends K, ? extends V> map) argument
3878 newSetFromMap(Map<E, Boolean> map) argument
3891 SetFromMap(Map<E, Boolean> map) argument
[all...]
H A DTreeMap.java30 * The map is sorted according to the {@linkplain Comparable natural
31 * ordering} of its keys, or by a {@link Comparator} provided at map
39 * <p>Note that the ordering maintained by a tree map, like any sorted map, and
41 * with {@code equals}</em> if this sorted map is to correctly implement the
45 * operation, but a sorted map performs all key comparisons using its {@code
47 * this method are, from the standpoint of the sorted map, equal. The behavior
48 * of a sorted map <em>is</em> well-defined even if its ordering is
53 * If multiple threads access a map concurrently, and at least one of the
54 * threads modifies the map structurall
307 putAll(Map<? extends K, ? extends V> map) argument
1027 KeySet(NavigableMap<E,Object> map) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListMap.java42 * The map is sorted according to the {@linkplain Comparable natural
43 * ordering} of its keys, or by a {@link Comparator} provided at map
53 * elements reflecting the state of the map at some point at or since
63 * associated map using <tt>put</tt>, <tt>putIfAbsent</tt>, or
89 * @param <K> the type of keys maintained by this map
264 * requirement for a map is slightly less than for the current
342 * The comparator used to maintain order in this map, or null
1103 * because otherwise, even a small map that has undergone a large
1379 * Constructs a new, empty map, sorted according to the
1388 * Constructs a new, empty map, sorte
1456 buildFromSorted(SortedMap<K, ? extends V> map) argument
2308 KeySet(ConcurrentNavigableMap<E,Object> map) argument
2383 Values(ConcurrentNavigableMap<Object, E> map) argument
2410 EntrySet(ConcurrentNavigableMap<K1, V1> map) argument
2500 SubMap(ConcurrentSkipListMap<K,V> map, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, boolean isDescending) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.cpp141 // Since we share a map with the caller, his JVMS gets adjusted.
209 // Since we share a map with the caller, his JVMS gets adjusted.
231 // as part of this call. Since we share a map with the caller,
331 SafePointNode* map = new (C) SafePointNode(size, jvms); local
333 map->init_req(i1, call->in(i1));
337 if (!map->in(TypeFunc::Memory)->is_MergeMem()) {
338 Node* mem = MergeMemNode::make(C, map->in(TypeFunc::Memory));
340 map->set_req(TypeFunc::Memory, mem);
345 jvms->set_map(map);
346 map
[all...]
H A Dcallnode.hpp187 // This provides a way to map the optimized program back into the interpreter,
254 SafePointNode* map() const { return _map; } function in class:JVMState
292 void set_map(SafePointNode *map) { _map = map; } argument
485 // "sosn_map" is a map, specific to the translation of "s" to "new_call",
H A DgraphKit.hpp62 SafePointNode* _map; // Parser map from JVM to Nodes
63 SafePointNode* _exceptions;// Parser map(s) for exception state(s)
72 assert(_map != NULL, "must call stopped() to test for reset compiler map");
108 // Get base of card map
134 SafePointNode* map() const { return _map; } function in class:GraphKit
142 void set_jvms(JVMState* jvms) { set_map(jvms->map());
164 // Make sure the map looks OK.
171 // Clone the existing map state. (Implements PreserveJVMState.)
174 // Set the map to a clone of the given one.
181 // Preserve the map intac
[all...]
H A Dparse1.cpp140 // The safepoint is a map which will feed an uncommon trap.
177 // Helper routine which sets up elements of the initial parser map when
178 // performing a parse for on stack replacement. Add values into map.
186 // Mismatch between method and jvms can occur since map briefly held
191 assert((int)jvms()->endoff() == (int)map()->req(), "sanity");
237 map()->push_monitor(flock);
369 SafePointNode* types_are_good = map();
542 // Setup the initial JVM state map.
545 // Check for bailouts during map initialization
574 entry_map = map(); // captur
757 SafePointNode* map = new (this) SafePointNode(max_size, NULL); local
1811 SafePointNode* map = this->map(); local
[all...]
H A Dstringopts.cpp1275 SafePointNode* map = new (C) SafePointNode(size, jvms); local
1281 map->init_req(i1, sc->end()->in(i1));
1285 map->init_req(i1, C->top());
1289 map->init_req(i1, sc->begin()->in(i1));
1292 if (!map->in(TypeFunc::Memory)->is_MergeMem()) {
1293 map->set_req(TypeFunc::Memory, MergeMemNode::make(C, map->in(TypeFunc::Memory)));
1296 jvms->set_map(map);
1297 map->ensure_stack(jvms, jvms->method()->max_stack());
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java124 * <LI>Has its connection's type map set to <code>null</code>
246 * <LI>Has its connection's type map set to <code>null</code>
320 * <LI>Has its connection's type map set to <code>null</code>
408 * <LI>Has its connection's type map set to <code>null</code>
3190 * @param map a <code>java.util.Map</code> object that contains the mapping
3198 public Object getObject(int i, java.util.Map<String,Class<?>> map) argument
3203 return rs.getObject(i, map);
3281 * @param map a <code>java.util.Map</code> object that contains the mapping
3289 public Object getObject(String colName, java.util.Map<String,Class<?>> map) argument
3292 return getObject(findColumn(colName), map);
[all...]

Completed in 237 milliseconds

<<111213