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

1 2

  /external/testng/src/main/java/org/testng/internal/
ClassInfoMap.java 11 private Map<Class<?>, XmlClass> m_map = Maps.newLinkedHashMap(); field in class:ClassInfoMap
38 m_map.put(cl, xmlClass);
41 if (! m_map.containsKey(c)) registerClass(c, xmlClass);
47 m_map.put(cls, null);
51 return m_map.get(cls);
55 m_map.put(cls, xmlClass);
59 return m_map.keySet();
63 return m_map.size();
SuiteRunnerMap.java 13 private Map<String, ISuite> m_map = Maps.newHashMap(); field in class:SuiteRunnerMap
17 if (m_map.containsKey(name)) {
20 m_map.put(name, suite);
24 return m_map.get(xmlSuite.getName());
28 return m_map.values();
ResultMap.java 20 private Map<ITestResult, ITestNGMethod> m_map = new ConcurrentHashMap<>(); field in class:ResultMap
24 m_map.put(result, method);
31 for (Map.Entry<ITestResult, ITestNGMethod> entry : m_map.entrySet()) {
42 for (Entry<ITestResult, ITestNGMethod> entry : m_map.entrySet()) {
44 m_map.remove(entry.getKey());
52 m_map.remove(r);
57 return m_map.keySet();
62 return m_map.size();
67 return m_map.values();
73 .add("map", m_map)
    [all...]
  /external/testng/src/main/java/org/testng/xml/dom/
TestNGTagFactory.java 9 private Map<String, Class<?>> m_map = Maps.newHashMap(); field in class:TestNGTagFactory
12 // m_map.put("suite-files", XDom.ChildSuite.class);
17 Class<?> result = m_map.get(tag);
  /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;
  /hardware/bsp/intel/peripheral/libupm/src/st7735/
gfx.h 213 uint8_t * m_map; /**< Screens buffer */ member in class:upm::GFX
st7735.h 626 uint8_t m_map[160 * 128 * 2]; /**< Screens buffer */ member in class:upm::ST7735
  /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/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/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/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...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp 555 de::insert(m_map, variable.getName(), SharedPtr<deUint8>(data, de::ArrayDeleter<deUint8>()));
561 deUint8* const data = de::lookup(m_map, variable.getName()).get();
567 map<string, SharedPtr<deUint8> > m_map; member in class:vkt::shaderexecutor::Environment
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 576 de::insert(m_map, variable.getName(), SharedPtr<deUint8>(data, de::ArrayDeleter<deUint8>()));
582 deUint8* const data = de::lookup(m_map, variable.getName()).get();
588 map<string, SharedPtr<deUint8> > m_map; member in class:deqp::gls::BuiltinPrecisionTests::Environment
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/
org.apache.felix.bundlerepository-1.6.6.jar 
  /external/guice/lib/build/
felix-2.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/propertysheet/1.0/
propertysheet-1.0.jar 
  /prebuilts/tools/common/m2/repository/xalan/serializer/2.7.1/
serializer-2.7.1.jar 

Completed in 1092 milliseconds

1 2