HomeSort by relevance Sort by last modified time
    Searched refs:_map (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/jetty/src/java/org/eclipse/jetty/util/
AttributesMap.java 36 protected final Map<String,Object> _map; field in class:AttributesMap
41 _map=new HashMap<String,Object>();
47 _map=map;
53 _map=new HashMap<String,Object>(map._map);
62 _map.remove(name);
72 _map.remove(name);
74 _map.put(name, attribute);
83 return _map.get(name);
92 return Collections.enumeration(_map.keySet())
    [all...]
MultiMap.java 45 Map<K,Object> _map; field in class:MultiMap
50 _map=new HashMap<K, Object>();
56 _map=_cmap=new ConcurrentHashMap<K, Object>(map);
58 _map=new HashMap<K, Object>(map);
64 _map=_cmap=new ConcurrentHashMap<K, Object>(map._cmap);
66 _map=new HashMap<K,Object>(map._map);
71 _map=new HashMap<K, Object>(capacity);
77 _map=_cmap=new ConcurrentHashMap<K, Object>();
79 _map=new HashMap<K, Object>()
    [all...]
ConcurrentHashSet.java 30 private final Map<E, Boolean> _map = new ConcurrentHashMap<E, Boolean>(); field in class:ConcurrentHashSet
31 private transient Set<E> _keys = _map.keySet();
40 return _map.put(e,Boolean.TRUE) == null;
46 _map.clear();
52 return _map.containsKey(o);
76 return _map.isEmpty();
88 return _map.remove(o) != null;
106 return _map.size();
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfFrameBuffer.cpp 85 _map[name] = slice;
99 SliceMap::iterator i = _map.find (name);
101 if (i == _map.end())
114 SliceMap::const_iterator i = _map.find (name);
116 if (i == _map.end())
143 SliceMap::iterator i = _map.find (name);
144 return (i == _map.end())? 0: &i->second;
151 SliceMap::const_iterator i = _map.find (name);
152 return (i == _map.end())? 0: &i->second;
173 return _map.begin()
    [all...]
ImfChannelList.cpp 80 _map[name] = channel;
94 ChannelMap::iterator i = _map.find (name);
96 if (i == _map.end())
106 ChannelMap::const_iterator i = _map.find (name);
108 if (i == _map.end())
132 ChannelMap::iterator i = _map.find (name);
133 return (i == _map.end())? 0: &i->second;
140 ChannelMap::const_iterator i = _map.find (name);
141 return (i == _map.end())? 0: &i->second;
162 return _map.begin()
    [all...]
ImfHeader.cpp 173 _map()
199 _map()
224 _map()
239 Header::Header (const Header &other): _map()
241 for (AttributeMap::const_iterator i = other._map.begin();
242 i != other._map.end();
252 for (AttributeMap::iterator i = _map.begin();
253 i != _map.end();
266 for (AttributeMap::iterator i = _map.begin();
267 i != _map.end()
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleExtensions.java 27 private SortedMap<Character, Extension> _map; field in class:LocaleExtensions
40 EMPTY_EXTENSIONS._map = EMPTY_MAP;
44 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
45 CALENDAR_JAPANESE._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.CA_JAPANESE);
49 NUMBER_THAI._map = new TreeMap<Character, Extension>();
50 NUMBER_THAI._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.NU_THAI);
66 _map = EMPTY_MAP;
72 _map = new TreeMap<Character, Extension>();
87 _map.put(Character.valueOf(key), e);
112 _map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), ule)
    [all...]
LocaleObjectCache.java 18 private ConcurrentHashMap<K, CacheEntry<K, V>> _map; field in class:LocaleObjectCache
26 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
33 CacheEntry<K, V> entry = _map.get(key);
49 entry = _map.putIfAbsent(key, newEntry);
65 _map.remove(entry.getKey());
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 23 private SortedMap<Character, Extension> _map; field in class:LocaleExtensions
36 EMPTY_EXTENSIONS._map = EMPTY_MAP;
40 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
41 CALENDAR_JAPANESE._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.CA_JAPANESE);
45 NUMBER_THAI._map = new TreeMap<Character, Extension>();
46 NUMBER_THAI._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.NU_THAI);
62 _map = EMPTY_MAP;
68 _map = new TreeMap<Character, Extension>();
83 _map.put(Character.valueOf(key), e);
108 _map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), ule)
    [all...]
LocaleObjectCache.java 14 private ConcurrentHashMap<K, CacheEntry<K, V>> _map; field in class:LocaleObjectCache
22 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
29 CacheEntry<K, V> entry = _map.get(key);
45 entry = _map.putIfAbsent(key, newEntry);
61 _map.remove(entry.getKey());
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 23 private SortedMap<Character, Extension> _map; field in class:LocaleExtensions
36 EMPTY_EXTENSIONS._map = EMPTY_MAP;
40 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
41 CALENDAR_JAPANESE._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.CA_JAPANESE);
45 NUMBER_THAI._map = new TreeMap<Character, Extension>();
46 NUMBER_THAI._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.NU_THAI);
62 _map = EMPTY_MAP;
68 _map = new TreeMap<Character, Extension>();
83 _map.put(Character.valueOf(key), e);
108 _map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), ule)
    [all...]
LocaleObjectCache.java 14 private ConcurrentHashMap<K, CacheEntry<K, V>> _map; field in class:LocaleObjectCache
22 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
29 CacheEntry<K, V> entry = _map.get(key);
45 entry = _map.putIfAbsent(key, newEntry);
61 _map.remove(entry.getKey());
  /external/autotest/frontend/tko/
tko_rpc_utils.py 15 def _map(self): member in class:KernelString
20 return hash(self._map())
24 return self._map() == other._map()
28 return self._map() != other._map()
32 return self._map() < other._map()
36 return self._map() <= other._map()
    [all...]
  /external/opencv/cv/src/
cvcanny.cpp 169 uchar* _map; local
209 _map = map + mapstep*i + 1;
210 _map[-1] = _map[size.width] = 1;
253 if( m > high && !prev_flag && _map[j-mapstep] != 2 )
255 CANNY_PUSH( _map + j );
259 _map[j] = (uchar)0;
267 if( m > high && !prev_flag && _map[j-mapstep] != 2 )
269 CANNY_PUSH( _map + j );
273 _map[j] = (uchar)0
342 const uchar* _map = map + mapstep*(i+1) + 1; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
map_to_7segment.h 36 #define SEG7_CONVERSION_MAP(_name,_map) struct seg7_conversion_map _name = {.table = { _map } }
  /development/ndk/platforms/android-21/include/linux/
map_to_7segment.h 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }
  /external/kernel-headers/original/uapi/linux/
map_to_7segment.h 83 #define SEG7_CONVERSION_MAP(_name, _map) \
84 struct seg7_conversion_map _name = { .table = { _map } }
  /ndk/sources/cxx-stl/stlport/stlport/
map 36 # include <stl/_map.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
map_to_7segment.h 83 #define SEG7_CONVERSION_MAP(_name, _map) \
84 struct seg7_conversion_map _name = { .table = { _map } }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
map_to_7segment.h 83 #define SEG7_CONVERSION_MAP(_name, _map) \
84 struct seg7_conversion_map _name = { .table = { _map } }
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
map_to_7segment.h 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
map_to_7segment.h 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/linux/
map_to_7segment.h 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/linux/
map_to_7segment.h 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/linux/
map_to_7segment.h 36 #define SEG7_CONVERSION_MAP(_name, _map) struct seg7_conversion_map _name = { .table = { _map } }

Completed in 1292 milliseconds

1 2 3 4 5