OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashmap
(Results
1 - 5
of
5
) sorted by null
/art/test/004-InterfaceTest/src/
Main.java
18
import java.util.
HashMap
;
22
public static long test_virtual(
HashMap
map) {
45
HashMap
hashmap
= new
HashMap
();
local
46
long elapsed = test_virtual(
hashmap
);
48
hashmap
.clear();
50
elapsed = test_interface(
hashmap
);
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
Pass2Verifier.java
21
import java.util.
HashMap
;
246
final Map<String, String>
hashmap
= new
HashMap
<>();
local
257
if (
hashmap
.containsKey(nameAndSig)) {
260
throw new ClassConstraintException("Method '" + nameAndSig + "' in class '" +
hashmap
.get(nameAndSig) +
263
addMessage("Method '" + nameAndSig + "' in class '" +
hashmap
.get(nameAndSig) +
269
hashmap
.put(nameAndSig, jc.getClassName());
274
hashmap
.put(nameAndSig, jc.getClassName());
[
all
...]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MapsTest.java
43
import java.util.
HashMap
;
70
HashMap
<Integer, Integer> map = Maps.newHashMap();
79
HashMap
<String, Integer> map = Maps.newHashMap(original);
88
HashMap
<Object, Object> map =
160
HashMap
<Object, Object> map
251
HashMap
<SomeEnum, Integer> original = Maps.newHashMap();
266
Map<String, String>
hashmap
= Maps.newHashMap();
local
267
hashmap
.put("foo", "bar");
268
hashmap
.put(null, "baz");
270
assertEquals(
hashmap
.toString(), Maps.toStringImpl(hashmap))
274
Map<String, String>
hashmap
= Maps.newHashMap();
local
[
all
...]
/external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java
52
import java.util.
HashMap
;
82
HashMap
<Integer, Integer> map = Maps.newHashMap();
91
HashMap
<String, Integer> map = Maps.newHashMap(original);
100
HashMap
<Object, Object> map =
117
* As of jdk7u40,
HashMap
has an empty-map optimization. The argument to
118
* new
HashMap
(int) is noted, but the initial table is a zero-length array.
129
HashMap
<Integer, Void> map1 = Maps.newHashMapWithExpectedSize(size);
147
HashMap
<Integer, Void> map2 = Maps.newHashMapWithExpectedSize(size);
155
private static int bucketsOf(
HashMap
<?, ?>
hashMap
) throws Exception
327
Map<String, String>
hashmap
= Maps.newHashMap();
local
335
Map<String, String>
hashmap
= Maps.newHashMap();
local
[
all
...]
/external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar
Completed in 586 milliseconds