HomeSort by relevance Sort by last modified time
    Searched full:objmap (Results 1 - 2 of 2) sorted by null

  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITObjectCacheTest.cpp 41 if (ObjMap.find(ModuleID) != ObjMap.end())
44 ObjMap[ModuleID] = copyBuffer(Obj);
68 StringMap<const MemoryBuffer *>::iterator it = ObjMap.find(ModuleID);
69 if (it == ObjMap.end())
82 StringMap<const MemoryBuffer *> ObjMap;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
HashMapTest.java 449 HashMap<Object, Object> objmap = new HashMap<Object, Object>(); local
451 objmap.put(i, "foobar");
455 assertNull(objmap.put(aKey, "value"));
456 assertNull(objmap.remove(new MyKey()));
457 assertEquals("foobar", objmap.get(0));
458 assertEquals("value", objmap.get(aKey));

Completed in 305 milliseconds