HomeSort by relevance Sort by last modified time
    Searched defs:m_map (Results 1 - 25 of 33) sorted by null

1 2

  /external/lldb/source/Plugins/SymbolFile/DWARF/
NameToDIE.h 27 m_map()
61 lldb_private::UniqueCStringMap<uint32_t> m_map; member in class:NameToDIE
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMapVector.java 37 protected int m_map[]; // IntStack is trying to see this directly field in class:OpMapVector
56 m_map = new int[blocksize];
68 return m_map[i];
91 System.arraycopy(m_map, 0, newMap, 0, oldSize);
93 m_map = newMap;
96 m_map[index] = value;
109 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]);
112 m_map = newMap;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentOrderedMap.h 73 mutable Map m_map; member in class:WebCore::DocumentOrderedMap
78 return m_map.contains(id);
83 Map::const_iterator it = m_map.find(id);
84 return it != m_map.end() && it->value->count > 1;
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventListenerMap.h 87 EventListenerMap* m_map; member in class:WebCore::EventListenerIterator
  /external/lldb/include/lldb/DataFormatters/
FormatCache.h 63 CacheMap m_map; member in class:lldb_private::FormatCache
TypeCategoryMap.h 94 return m_map.size();
125 MapType m_map; member in class:lldb_private::TypeCategoryMap
130 return m_map;
FormatNavigator.h 117 m_map(),
133 m_map[name] = entry;
142 MapIterator iter = m_map.find(name);
143 if (iter == m_map.end())
145 m_map.erase(name);
155 m_map.clear();
165 MapIterator iter = m_map.find(name);
166 if (iter == m_map.end())
178 MapIterator pos, end = m_map.end();
179 for (pos = m_map.begin(); pos != end; pos++
227 MapType m_map; member in class:lldb_private::FormatMap
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
StringToIntTable.java 45 private String m_map[]; field in class:StringToIntTable
48 * m_map. */
66 m_map = new String[m_blocksize];
80 m_map = new String[blocksize];
109 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
111 m_map = newMap;
120 m_map[m_firstFree] = key;
139 if (m_map[i].equals(key))
161 if (m_map[i].equalsIgnoreCase(key))
180 if (m_map[i].equals(key)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
IntVector.java 40 protected int m_map[]; // IntStack is trying to see this directly field in class:IntVector
57 m_map = new int[m_blocksize];
70 m_map = new int[blocksize];
83 m_map = new int[blocksize];
93 m_map = new int[v.m_mapSize];
97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
137 m_map = newMap;
140 m_map[m_firstFree] = value
    [all...]
ObjectVector.java 40 protected Object m_map[]; field in class:ObjectVector
57 m_map = new Object[m_blocksize];
70 m_map = new Object[blocksize];
83 m_map = new Object[blocksize];
93 m_map = new Object[v.m_mapSize];
97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
137 m_map = newMap;
140 m_map[m_firstFree] = value
    [all...]
StringToIntTable.java 38 private String m_map[]; field in class:StringToIntTable
41 * m_map. */
59 m_map = new String[m_blocksize];
73 m_map = new String[blocksize];
102 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
104 m_map = newMap;
113 m_map[m_firstFree] = key;
132 if (m_map[i].equals(key))
154 if (m_map[i].equalsIgnoreCase(key))
173 if (m_map[i].equals(key)
    [all...]
StringVector.java 36 protected String m_map[]; field in class:StringVector
53 m_map = new String[m_blocksize];
66 m_map = new String[blocksize];
103 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
105 m_map = newMap;
108 m_map[m_firstFree] = value;
122 return m_map[i];
140 if (m_map[i].equals(s))
162 if (m_map[i].equalsIgnoreCase(s))
183 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1)
    [all...]
NodeVector.java 45 private int m_map[]; field in class:NodeVector
91 if ((null != this.m_map) && (this.m_map == clone.m_map))
93 clone.m_map = new int[this.m_map.length];
95 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
121 if (null == m_map)
    [all...]
SuballocatedIntVector.java 58 protected int m_map[][]; field in class:SuballocatedIntVector
63 /** "Shortcut" handle to m_map[0]. Surprisingly helpful for short vectors. */
66 /** "Shortcut" handle to most recently added row of m_map.
102 m_map = new int[numblocks][];
103 m_map[0]=m_map0;
149 // Is the new index an index into the cache row of m_map?
164 if(index>=m_map.length)
168 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
169 m_map=newMap
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
fixed_mapping.hpp 94 iterator it = boost::detail::lower_bound( m_map.begin(), m_map.end(), key, p1() );
96 return (it == m_map.end() || Compare()( key, it->first ) ) ? m_invalid_value : it->second;
101 void init() { std::sort( m_map.begin(), m_map.end(), p2() ); }
102 void add_pair( key_param_type key, value_param_type value ) { m_map.push_back( elem_type( key, value ) ); }
106 map_type m_map; member in class:boost::unit_test::fixed_mapping
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMWrapperMap.h 46 , m_map(isolate)
52 return m_map.Get(key);
57 return m_map.SetReturnValue(key, returnValue);
62 m_map.SetReference(key, parent);
67 return m_map.Contains(key);
76 m_map.Set(key, unique.Pass());
81 m_map.Clear();
87 m_map.Remove(key);
154 typename PersistentValueMapTraits::MapType m_map; member in class:WebCore::DOMWrapperMap
V8NPObject.cpp 202 return m_map.Get(key);
207 ASSERT(!m_map.Contains(key));
208 m_map.Set(key, handle);
214 ASSERT(isolate == map.m_map.GetIsolate());
222 : m_map(isolate)
226 MapType m_map; member in class:WebCore::V8NPTemplateMap
231 return &V8NPTemplateMap::sharedInstance(data.GetIsolate()).m_map;
  /external/lldb/include/lldb/Expression/
Materializer.h 36 m_map(NULL),
55 return m_materializer && m_map && (m_process_address != LLDB_INVALID_ADDRESS);
65 m_map(&map),
78 IRMemoryMap *m_map; member in class:lldb_private::Materializer::Dematerializer
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 271 int[] m_map[] = new int[BLOCKSIZE][]; field in class:ChunkedIntArray.ChunksVector
292 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
293 m_map = newMap;
297 m_map[pos] = value;
303 return m_map[pos];
  /external/chromium_org/third_party/WebKit/Source/platform/
Length.cpp 127 while (m_map.contains(m_index))
130 m_map.set(m_index, calcValue);
137 ASSERT(m_map.contains(index));
138 m_map.remove(index);
143 ASSERT(m_map.contains(index));
144 return *m_map.get(index);
149 ASSERT(m_map.contains(index));
150 CalculationValue* value = m_map.get(index);
153 m_map.set(index, nullptr);
154 m_map.remove(index)
162 HashMap<int, RefPtr<CalculationValue> > m_map; member in class:WebCore::CalculationValueHandleMap
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthCache.h 149 m_map.clear();
169 Map::AddResult addResult = m_map.add(smallStringKey, entry);
185 if ((m_singleCharMap.size() + m_map.size()) < s_maxSize)
190 m_map.clear();
203 Map m_map; member in class:WebCore::WidthCache
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 210 private final Map<Pair<PropertyTable, Property>, Control> m_map = Maps.newHashMap(); field in class:ButtonPropertyEditorPresentationImpl.PropertyToControlMap
213 m_map.put(Pair.create(propertyTable, property), control);
217 return m_map.remove(Pair.create(propertyTable, property));
221 return m_map.get(Pair.create(propertyTable, property));
  /external/lldb/include/lldb/Core/
UniqueCStringMap.h 75 m_map.push_back (typename UniqueCStringMap<T>::Entry(unique_cstr, value));
81 m_map.push_back (e);
87 m_map.clear();
98 m_map.insert (std::upper_bound (m_map.begin(), m_map.end(), e), e);
104 m_map.insert (std::upper_bound (m_map.begin(), m_map.end(), e), e);
116 if (idx < m_map.size()
353 collection m_map; member in class:lldb_private::UniqueCStringMap
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSet.java 828 Node m_map[]; field in class:NodeSet
850 if ((null != this.m_map) && (this.m_map == clone.m_map))
852 clone.m_map = new Node[this.m_map.length];
854 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
882 if (null == m_map)
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLEScontext.h 195 ArraysMap m_map; member in class:GLEScontext

Completed in 1422 milliseconds

1 2