HomeSort by relevance Sort by last modified time
    Searched full:map2 (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
CombinerHeightMap.java 61 private AbstractHeightMap map2; field in class:CombinerHeightMap
74 * @param map2 the second heightmap to combine.
82 AbstractHeightMap map2,
87 if (null == map1 || null == map2) {
92 if (map1.getSize() != map2.getSize()) {
104 this.map2 = map2;
116 * map1 will be used with 40% of map2. The two factors must add up
121 * @param map2 the second heightmap to combine.
122 * @param factor2 the factor for map2.
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
mpspec_32.h 38 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
mpspec_32.h 38 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
mpspec_32.h 38 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
mpspec_32.h 38 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
mpspec_32.h 38 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidHashMapTest.java 219 HashMap<String, String> map2 = new HashMap<String, String>(); local
226 map2.put("one", "1");
227 map2.put("two", "2");
228 map2.put("three", "3");
230 assertTrue(map1.equals(map2));
237 assertFalse(map2.equals(map3));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
IdentityHashMap2Test.java 160 AbstractMap map2 = (AbstractMap) map.clone(); local
161 map2.put("key", "value2");
162 Collection values2 = map2.values();
167 map2.clear();
168 map2.put("key2", "value3");
169 Set key2 = map2.keySet();
287 Map map2 = new IdentityHashMap(101); local
288 map2.put(new Integer(1), "1");
289 map2.put(new Integer(4), "4");
290 Iterator it2 = map2.keySet().iterator()
    [all...]
HashMapTest.java 188 SubMap map2 = new SubMap(map); local
189 assertTrue(map2.containsKey("a"));
190 assertTrue(map2.containsValue("a"));
235 AbstractMap map2 = (AbstractMap) map.clone(); local
236 map2.put("key", "value2");
237 Collection values2 = map2.values();
242 map2.clear();
243 map2.put("key2", "value3");
244 Set key2 = map2.keySet();
426 Map map2 = new HashMap(101) local
    [all...]
AbstractMapTest.java 80 AbstractMap map2 = new HashMap(10); local
81 assertSame("HashMap(10)", map2.keySet(), map2.keySet());
232 AbstractMap map2 = new HashMap(10); local
233 assertSame("HashMap(10)", map2.values(), map2.values());
LinkedHashMapTest.java 260 Map map2 = new LinkedHashMap(101); local
261 map2.put(new Integer(1), "1");
262 map2.put(new Integer(4), "4");
263 Iterator it2 = map2.keySet().iterator();
273 assertEquals("Wrong size 2", 1, map2.size());
274 assertTrue("Wrong contents 2", map2.keySet().iterator().next().equals(
359 AbstractMap map2 = (AbstractMap) map.clone(); local
360 map2.put("key", "value2");
361 Collection values2 = map2.values();
367 map2.clear()
    [all...]
SortedMapTestBase.java 363 SortedMap<Integer, Integer> map2 = (SortedMap<Integer, Integer>) mapClone.invoke(map, null); local
364 assertEquals(refClone.invoke(ref, null), map2); local
365 map2.remove(map2.lastKey());
366 assertFalse(ref.equals(map2));
  /libcore/luni/src/test/java/tests/api/java/util/
HashMapTest.java 155 AbstractMap map2 = (AbstractMap) map.clone(); local
156 map2.put("key", "value2");
157 Collection values2 = map2.values();
162 map2.clear();
163 map2.put("key2", "value3");
164 Set key2 = map2.keySet();
323 Map map2 = new HashMap(101); local
324 map2.put(new Integer(1), "1");
325 map2.put(new Integer(4), "4");
326 Iterator it2 = map2.keySet().iterator()
    [all...]
IdentityHashMapTest.java 149 AbstractMap map2 = (AbstractMap) map.clone(); local
150 map2.put("key", "value2");
151 Collection values2 = map2.values();
156 map2.clear();
157 map2.put("key2", "value3");
158 Set key2 = map2.keySet();
276 Map map2 = new IdentityHashMap(101); local
277 map2.put(new Integer(1), "1");
278 map2.put(new Integer(4), "4");
279 Iterator it2 = map2.keySet().iterator()
    [all...]
AbstractMapTest.java 80 AbstractMap map2 = new HashMap(10); local
81 assertSame("HashMap(10)", map2.keySet(), map2.keySet());
144 AbstractMap map2 = new HashMap(10); local
145 assertSame("HashMap(10)", map2.values(), map2.values());
LinkedHashMapTest.java 281 Map map2 = new LinkedHashMap(101); local
282 map2.put(new Integer(1), "1");
283 map2.put(new Integer(4), "4");
284 Iterator it2 = map2.keySet().iterator();
294 assertEquals("Wrong size 2", 1, map2.size());
295 assertTrue("Wrong contents 2", map2.keySet().iterator().next().equals(
380 AbstractMap map2 = (AbstractMap) map.clone(); local
381 map2.put("key", "value2");
382 Collection values2 = map2.values();
388 map2.clear()
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
mpspec_32.h 44 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /development/ndk/platforms/android-9/arch-x86/include/asm/
mpspec_32.h 44 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /external/kernel-headers/original/asm-x86/
mpspec_32.h 55 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
mpspec_32.h 44 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
mpspec_32.h 44 #define physids_equal(map1, map2) bitmap_equal((map1).mask, (map2).mask, MAX_APICS)
  /external/javassist/src/main/javassist/bytecode/analysis/
MultiType.java 190 Map map2 = getAllMultiInterfaces(type2); local
192 return findCommonInterfaces(map1, map2);
197 Map map2 = getAllInterfaces(single.getCtClass(), null); local
199 return findCommonInterfaces(map1, map2);
  /external/e2fsprogs/intl/
localealias.c 147 const struct alias_map *map2);
387 alias_compare (const struct alias_map *map1, const struct alias_map *map2)
390 return strcasecmp (map1->alias, map2->alias);
393 const unsigned char *p2 = (const unsigned char *) map2->alias;
  /external/freetype/src/psnames/
psmodule.c 172 PS_UniMap* map2 = (PS_UniMap*)b; local
174 FT_UInt32 unicode2 = BASE_GLYPH( map2->unicode );
180 if ( map1->unicode > map2->unicode )
182 else if ( map1->unicode < map2->unicode )
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 526 Map<String, DeclareStyleableInfo> map2 = new HashMap<String, DeclareStyleableInfo>(); local
531 map2.put(key, map.get(key));
542 return Collections.unmodifiableMap(map2);
553 Map<String, DeclareStyleableInfo> map2 = new HashMap<String, DeclareStyleableInfo>(); local
557 map2.put(key, map.get(key));
568 return Collections.unmodifiableMap(map2);
579 Map<String, DeclareStyleableInfo> map2 = new HashMap<String, DeclareStyleableInfo>(); local
582 map2.put(key, map.get(key));
593 return Collections.unmodifiableMap(map2);

Completed in 595 milliseconds

1 2 3