/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/ |
H A D | ClassSet.java | 73 private HashMap _map = new HashMap(); field in class:ClassSet 78 if(!_map.containsKey(clazz.getClassName())) { 80 _map.put(clazz.getClassName(), clazz); 86 public void remove(JavaClass clazz) { _map.remove(clazz.getClassName()); } 87 public boolean empty() { return _map.isEmpty(); } 90 Collection values = _map.values(); 97 return (String[])_map.keySet().toArray(new String[_map.keySet().size()]);
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_ValueSet.hpp | 39 BitMap _map; member in class:ValueSet 55 inline ValueSet::ValueSet() : _map(Instruction::number_of_instructions()) { 56 _map.clear(); 62 res->_map.set_from(_map); 68 return _map.at(x->id()); 73 _map.set_bit(x->id()); 78 _map.clear_bit(x->id()); 83 return _map.set_intersection_with_result(other->_map); [all...] |
H A D | c1_ValueMap.hpp | 214 ValueMap* _map; member in class:ValueNumberingEffects 218 void kill_memory() { _map->kill_memory(); } 219 void kill_field(ciField* field, bool all_offsets) { _map->kill_field(field, all_offsets); } 220 void kill_array(ValueType* type) { _map->kill_array(type); } 222 ValueNumberingEffects(ValueMap* map): _map(map) {}
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/ |
H A D | NamedNodeMapIterator.java | 37 protected NamedNodeMap _map; field in class:NamedNodeMapIterator 41 _map = map; 46 if (_map == null) 48 return _index < _map.getLength(); 52 Object obj = _map.item(_index);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/ |
H A D | DuplicateAttributeVerifier.java | 48 private Entry[] _map; field in class:DuplicateAttributeVerifier 73 if (_map == null) { 74 _map = new Entry[MAP_SIZE]; 79 if (_map == null) { 80 _map = new Entry[MAP_SIZE]; 103 final Entry head = _map[hash]; 106 _map[hash] = newEntry; 119 _map[hash] = newEntry;
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | bitMap.hpp | 52 bm_word_t* _map; // First word in bitmap member in class:VALUE_OBJ_CLASS_SPEC 75 bm_word_t* map() const { return _map; } 76 bm_word_t map(idx_t word) const { return _map[word]; } 82 void set_word (idx_t word, bm_word_t val) { _map[word] = val; } 84 void clear_word(idx_t word) { _map[word] = 0; } 117 BitMap() : _map(NULL), _size(0), _map_allocator(false) {} 128 void set_map(bm_word_t* map) { _map = map; } 281 BitMap _map; member in class:VALUE_OBJ_CLASS_SPEC 300 return _map.size(); 306 return _map [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | superword.hpp | 120 GrowableArray<DepMem*> _map; member in class:VALUE_OBJ_CLASS_SPEC 125 DepGraph(Arena* a) : _arena(a), _map(a, 8, 0, NULL) { 134 DepMem* dep(Node* node) { return _map.at(node->_idx); } 146 void init() { _map.clear(); } // initialize
|
H A D | callnode.hpp | 210 SafePointNode* _map; // Map node associated with this scope member in class:JVMState 254 SafePointNode* map() const { return _map; } 292 void set_map(SafePointNode *map) { _map = map; }
|
H A D | graphKit.hpp | 62 SafePointNode* _map; // Parser map from JVM to Nodes member in class:GraphKit 72 assert(_map != NULL, "must call stopped() to test for reset compiler map"); 73 return _map; 134 SafePointNode* map() const { return _map; } 147 void set_map(SafePointNode* m) { _map = m; debug_only(verify_map()); } 180 // Set _map to NULL, signalling a stop to further bytecode execution. 187 // Tell if _map is NULL, or control is top. 397 void push(Node* n) { map_not_null(); _map->set_stack(_map->_jvms, _sp++ , n); } 398 Node* pop() { map_not_null(); return _map 853 SafePointNode* _map; member in class:PreserveJVMState [all...] |
/openjdk7/hotspot/src/share/vm/services/ |
H A D | threadService.hpp | 321 ThreadConcurrentLocks* _map; member in class:ConcurrentLocksDump 329 ConcurrentLocksDump(bool retain_map_on_free) : _map(NULL), _last(NULL), _retain_map_on_free(retain_map_on_free) {}; 330 ConcurrentLocksDump() : _map(NULL), _last(NULL), _retain_map_on_free(false) {};
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/ |
H A D | Types.java | 2036 private WeakHashMap<MethodSymbol, SoftReference<Map<TypeSymbol, Entry>>> _map = field in class:Types.ImplementationCache 2063 SoftReference<Map<TypeSymbol, Entry>> ref_cache = _map.get(ms); 2067 _map.put(ms, new SoftReference<Map<TypeSymbol, Entry>>(cache)); 2109 private WeakHashMap<TypeSymbol, Entry> _map = field in class:Types.MembersClosureCache 2135 Entry e = _map.get(csym); 2146 _map.put(csym, e);
|
/openjdk7/hotspot/src/share/vm/prims/ |
H A D | jvmtiExport.cpp | 702 jvmtiAddrLocationMap *_map; member in class:JvmtiCompiledMethodLoadEventMark 710 JvmtiCodeBlobEvents::build_jvmti_addr_location_map(nm, &_map, &_map_length); 713 FREE_C_HEAP_ARRAY(jvmtiAddrLocationMap, _map, mtInternal); 719 const jvmtiAddrLocationMap* map() { return _map; }
|