Home
last modified time | relevance | path

Searched defs:map (Results 1 – 25 of 2417) sorted by relevance

12345678910>>...97

/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java146 protected final boolean supportsValuesHashCode(Map<K, V> map) { in supportsValuesHashCode()
169 protected final void assertInvariants(Map<K, V> map) { in assertInvariants()
265 protected void assertMoreInvariants(Map<K, V> map) {} in assertMoreInvariants()
268 final Map<K, V> map; in testClear() local
289 final Map<K, V> map; in testContainsKey() local
315 final Map<K, V> map; in testContainsValue() local
337 final Map<K, V> map; in testEntrySet() local
362 final Map<K, V> map; in testEntrySetForEmptyMap() local
372 final Map<K, V> map; in testEntrySetContainsEntryIncompatibleKey() local
399 final Map<K, V> map; in testEntrySetContainsEntryNullKeyPresent() local
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java146 protected final boolean supportsValuesHashCode(Map<K, V> map) { in supportsValuesHashCode()
169 protected final void assertInvariants(Map<K, V> map) { in assertInvariants()
265 protected void assertMoreInvariants(Map<K, V> map) {} in assertMoreInvariants()
268 final Map<K, V> map; in testClear() local
289 final Map<K, V> map; in testContainsKey() local
315 final Map<K, V> map; in testContainsValue() local
337 final Map<K, V> map; in testEntrySet() local
362 final Map<K, V> map; in testEntrySetForEmptyMap() local
372 final Map<K, V> map; in testEntrySetContainsEntryIncompatibleKey() local
399 final Map<K, V> map; in testEntrySetContainsEntryNullKeyPresent() local
[all …]
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DAtomicLongMapTest.java47 AtomicLongMap<Object> map = AtomicLongMap.create(); in testNulls() local
53 AtomicLongMap<String> map = AtomicLongMap.create(in); in testCreate_map() local
65 AtomicLongMap<String> map = AtomicLongMap.create(); in testIncrementAndGet() local
81 AtomicLongMap<String> map = AtomicLongMap.create(); in testIncrementAndGet_zero() local
98 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndIncrement() local
114 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndIncrement_zero() local
131 AtomicLongMap<String> map = AtomicLongMap.create(); in testDecrementAndGet() local
147 AtomicLongMap<String> map = AtomicLongMap.create(); in testDecrementAndGet_zero() local
164 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndDecrement() local
180 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndDecrement_zero() local
[all …]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAtomicLongMapTest.java47 AtomicLongMap<Object> map = AtomicLongMap.create(); in testNulls() local
53 AtomicLongMap<String> map = AtomicLongMap.create(in); in testCreate_map() local
65 AtomicLongMap<String> map = AtomicLongMap.create(); in testIncrementAndGet() local
81 AtomicLongMap<String> map = AtomicLongMap.create(); in testIncrementAndGet_zero() local
98 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndIncrement() local
114 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndIncrement_zero() local
131 AtomicLongMap<String> map = AtomicLongMap.create(); in testDecrementAndGet() local
147 AtomicLongMap<String> map = AtomicLongMap.create(); in testDecrementAndGet_zero() local
164 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndDecrement() local
180 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndDecrement_zero() local
[all …]
/external/harfbuzz_ng/src/
Dhb-map.cc52 hb_map_t *map; in hb_map_create() local
84 hb_map_reference (hb_map_t *map) in hb_map_reference()
96 hb_map_destroy (hb_map_t *map) in hb_map_destroy()
118 hb_map_set_user_data (hb_map_t *map, in hb_map_set_user_data()
137 hb_map_get_user_data (hb_map_t *map, in hb_map_get_user_data()
155 hb_map_allocation_successful (const hb_map_t *map) in hb_map_allocation_successful()
172 hb_map_set (hb_map_t *map, in hb_map_set()
189 hb_map_get (const hb_map_t *map, in hb_map_get()
205 hb_map_del (hb_map_t *map, in hb_map_del()
221 hb_map_has (const hb_map_t *map, in hb_map_has()
[all …]
/external/rust/crates/tokio-stream/tests/
Dstream_stream_map.rs32 let mut map = StreamMap::<&str, stream::Pending<()>>::new(); in empty() localVariable
45 let mut map = task::spawn(StreamMap::new()); in single_entry() localVariable
84 let mut map = task::spawn(StreamMap::new()); in multiple_entries() localVariable
143 let mut map = task::spawn(StreamMap::new()); in insert_remove() localVariable
173 let mut map = task::spawn(StreamMap::new()); in replace() localVariable
200 let mut map = StreamMap::new(); in size_hint_with_upper() localVariable
215 let mut map = StreamMap::new(); in size_hint_without_upper() localVariable
227 let map = StreamMap::<&str, stream::Pending<()>>::new(); in new_capacity_zero() localVariable
235 let map = StreamMap::<&str, stream::Pending<()>>::with_capacity(10); in with_capacity() localVariable
243 let mut map = StreamMap::new(); in iter_keys() localVariable
[all …]
/external/rust/crates/linked-hash-map/tests/
Dtest.rs12 let mut map = LinkedHashMap::new(); in test_insert_and_get() localVariable
22 let mut map = LinkedHashMap::new(); in test_index() localVariable
32 let mut map = LinkedHashMap::new(); in test_insert_update() localVariable
41 let mut map = LinkedHashMap::new(); in test_entry_insert_vacant() localVariable
72 let mut map = LinkedHashMap::new(); in test_entries_replacing() localVariable
87 let mut map = LinkedHashMap::new(); in test_entries_remove() localVariable
145 let mut map = LinkedHashMap::new(); in entries_insert() localVariable
158 let mut map = LinkedHashMap::new(); in test_debug() localVariable
176 let mut map = LinkedHashMap::new(); in test_remove() localVariable
197 let mut map = LinkedHashMap::new(); in test_pop() localVariable
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/json/
DJsonTest.java30 Map<String, Integer> map = (Map<String, Integer>) loader.load("{a: 1}"); in testLooksLikeJson() local
35 Map<String, Integer> map = (Map<String, Integer>) loader.load("{\"a\": 1}"); in testSpaceAfterColon() local
49 Map<String, Integer> map = (Map<String, Integer>) loader.load("{\"a\":1}"); in testNoSpace() local
54 Map<String, Integer> map = (Map<String, Integer>) loader.load("{\"a\":\"1\"}"); in testNoSpaceBothDoubleQuoted() local
59 Map<String, Integer> map = (Map<String, Integer>) loader.load("{'a':1}"); in testNoSpaceSingleQouted() local
64 … Map<String, Object> map = (Map<String, Object>) loader.load("{\"a\":1,\"b\":true,\"c\":\"foo\"}"); in testManyValues() local
72 Map<String, Object> map = (Map<String, Object>) loader.load("{a: null}"); in testConstructNull() local
78 Map<String, Object> map = (Map<String, Object>) loader.load("{a: }"); in testConstructNullFromEmpty() local
84 Map<String, Object> map = (Map<String, Object>) loader.load("{a: true}"); in testConstructBoolean() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp263 template <> void SymbolRecordImpl<ScopeEndSym>::map(IO &IO) {} in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
265 void UnknownSymbolRecord::map(yaml::IO &io) { in map() function in llvm::CodeViewYAML::detail::UnknownSymbolRecord
279 template <> void SymbolRecordImpl<Thunk32Sym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
289 template <> void SymbolRecordImpl<TrampolineSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
298 template <> void SymbolRecordImpl<SectionSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
307 template <> void SymbolRecordImpl<CoffGroupSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
315 template <> void SymbolRecordImpl<ExportSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
321 template <> void SymbolRecordImpl<ProcSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
335 template <> void SymbolRecordImpl<RegisterSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
341 template <> void SymbolRecordImpl<PublicSym32>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
[all …]
/external/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp286 template <> void SymbolRecordImpl<ScopeEndSym>::map(IO &IO) {} in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
288 void UnknownSymbolRecord::map(yaml::IO &io) { in map() function in llvm::CodeViewYAML::detail::UnknownSymbolRecord
302 template <> void SymbolRecordImpl<Thunk32Sym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
312 template <> void SymbolRecordImpl<TrampolineSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
321 template <> void SymbolRecordImpl<SectionSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
330 template <> void SymbolRecordImpl<CoffGroupSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
338 template <> void SymbolRecordImpl<ExportSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
344 template <> void SymbolRecordImpl<ProcSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
358 template <> void SymbolRecordImpl<RegisterSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
364 template <> void SymbolRecordImpl<PublicSym32>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
[all …]
/external/guava/android/guava-tests/test/com/google/common/collect/
DHashBiMapTest.java77 Map<String, String> map = in testMapConstructor() local
122 BiMap<Integer, String> map = HashBiMap.create(); in testBiMapEntrySetIteratorRemove() local
135 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrder() local
148 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterRemoveFirst() local
160 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterRemoveMiddle() local
172 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterRemoveLast() local
184 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterForcePut() local
196 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterInverseForcePut() local
208 BiMap<String, Integer> map = HashBiMap.create(); in testInverseInsertionOrderAfterInverse() local
218 BiMap<String, Integer> map = HashBiMap.create(); in testInverseInsertionOrderAfterInverseForcePut() local
[all …]
DCompactLinkedHashMapTest.java66 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrder() local
75 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterPutKeyTwice() local
85 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveFirstEntry() local
95 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveMiddleEntry() local
105 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveLastEntry() local
115 CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.createWithExpectedSize(100); in testTrimToSize() local
129 private void testHasMapEntriesInOrder(Map<?, ?> map, Object... alternatingKeysAndValues) { in testHasMapEntriesInOrder()
147 CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.create(); in testAllocArraysDefault() local
164 CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.createWithExpectedSize(i); in testAllocArraysExpectedSize() local
DMapsTransformValuesTest.java85 private void assertMapsEqual(Map<?, ?> expected, Map<?, ?> map) { in assertMapsEqual()
100 Map<String, String> map = in testTransformEmptyMapEquality() local
102 assertMapsEqual(Maps.newHashMap(), map); in testTransformEmptyMapEquality() local
106 Map<String, String> map = in testTransformSingletonMapEquality() local
115 Map<String, Integer> map = Maps.transformValues(underlying, Functions.<Integer>identity()); in testTransformIdentityFunctionEquality() local
120 Map<String, String> map = in testTransformPutEntryIsUnsupported() local
144 Map<String, String> map = Maps.transformValues(underlying, Functions.toStringFunction()); in testTransformRemoveEntry() local
154 Map<String, Boolean> map = in testTransformEqualityOfMapsWithNullValues() local
178 Map<String, String> map = Maps.transformValues(underlying, Functions.toStringFunction()); in testTransformReflectsUnderlyingMap() local
202 Map<String, String> map = Maps.transformValues(underlying, Functions.toStringFunction()); in testTransformChangesAreReflectedInUnderlyingMap() local
[all …]
DMapsTest.java80 HashMap<Integer, Integer> map = Maps.newHashMap(); in testHashMap() local
81 assertEquals(Collections.emptyMap(), map); in testHashMap() local
89 HashMap<String, Integer> map = Maps.newHashMap(original); in testHashMapWithInitialMap() local
98 HashMap<Object, Object> map = in testHashMapGeneralizesTypes() local
200 LinkedHashMap<Integer, Integer> map = Maps.newLinkedHashMap(); in testLinkedHashMap() local
201 assertEquals(Collections.emptyMap(), map); in testLinkedHashMap() local
206 Map<String, String> map = in testLinkedHashMapWithInitialMap() local
244 HashMap<Object, Object> map = Maps.<Object, Object>newLinkedHashMap(original); in testLinkedHashMapGeneralizesTypes() local
251 IdentityHashMap<Integer, Integer> map = Maps.newIdentityHashMap(); in testIdentityHashMap() local
252 assertEquals(Collections.emptyMap(), map); in testIdentityHashMap() local
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DHashBiMapTest.java77 Map<String, String> map = in testMapConstructor() local
122 BiMap<Integer, String> map = HashBiMap.create(); in testBiMapEntrySetIteratorRemove() local
135 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrder() local
148 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterRemoveFirst() local
160 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterRemoveMiddle() local
172 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterRemoveLast() local
184 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterForcePut() local
196 BiMap<String, Integer> map = HashBiMap.create(); in testInsertionOrderAfterInverseForcePut() local
208 BiMap<String, Integer> map = HashBiMap.create(); in testInverseInsertionOrderAfterInverse() local
218 BiMap<String, Integer> map = HashBiMap.create(); in testInverseInsertionOrderAfterInverseForcePut() local
[all …]
DCompactLinkedHashMapTest.java90 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrder() local
99 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterPutKeyTwice() local
109 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveFirstEntry() local
119 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveMiddleEntry() local
129 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveLastEntry() local
139 CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.createWithExpectedSize(100); in testTrimToSize() local
153 private void testHasMapEntriesInOrder(Map<?, ?> map, Object... alternatingKeysAndValues) { in testHasMapEntriesInOrder()
171 CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.create(); in testAllocArraysDefault() local
188 CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.createWithExpectedSize(i); in testAllocArraysExpectedSize() local
DMapsTransformValuesTest.java86 private void assertMapsEqual(Map<?, ?> expected, Map<?, ?> map) { in assertMapsEqual()
101 Map<String, String> map = in testTransformEmptyMapEquality() local
103 assertMapsEqual(Maps.newHashMap(), map); in testTransformEmptyMapEquality() local
107 Map<String, String> map = in testTransformSingletonMapEquality() local
116 Map<String, Integer> map = Maps.transformValues(underlying, Functions.<Integer>identity()); in testTransformIdentityFunctionEquality() local
121 Map<String, String> map = in testTransformPutEntryIsUnsupported() local
145 Map<String, String> map = Maps.transformValues(underlying, Functions.toStringFunction()); in testTransformRemoveEntry() local
155 Map<String, Boolean> map = in testTransformEqualityOfMapsWithNullValues() local
179 Map<String, String> map = Maps.transformValues(underlying, Functions.toStringFunction()); in testTransformReflectsUnderlyingMap() local
203 Map<String, String> map = Maps.transformValues(underlying, Functions.toStringFunction()); in testTransformChangesAreReflectedInUnderlyingMap() local
[all …]
DMapsTest.java80 HashMap<Integer, Integer> map = Maps.newHashMap(); in testHashMap() local
81 assertEquals(Collections.emptyMap(), map); in testHashMap() local
89 HashMap<String, Integer> map = Maps.newHashMap(original); in testHashMapWithInitialMap() local
98 HashMap<Object, Object> map = in testHashMapGeneralizesTypes() local
200 LinkedHashMap<Integer, Integer> map = Maps.newLinkedHashMap(); in testLinkedHashMap() local
201 assertEquals(Collections.emptyMap(), map); in testLinkedHashMap() local
206 Map<String, String> map = in testLinkedHashMapWithInitialMap() local
244 HashMap<Object, Object> map = Maps.<Object, Object>newLinkedHashMap(original); in testLinkedHashMapGeneralizesTypes() local
251 IdentityHashMap<Integer, Integer> map = Maps.newIdentityHashMap(); in testIdentityHashMap() local
252 assertEquals(Collections.emptyMap(), map); in testIdentityHashMap() local
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DDictionaryExtensions.cs45 public static bool containsKey(IDictionary map, object key) { in containsKey()
50 public static object get(IDictionary map, object key) { in get()
55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) { in get()
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) { in get()
78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) { in get()
91 public static void put(IDictionary map, object key, object value) { in put()
96 … public static void put<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key, TValue value) { in put()
101 public static void put<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key, TValue value) { in put()
106 public static HashSet<object> keySet(IDictionary map) { in keySet()
111 public static HashSet<TKey> keySet<TKey, TValue>(IDictionary<TKey, TValue> map) { in keySet()
[all …]
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DDictionaryExtensions.cs44 public static bool containsKey( this IDictionary map, object key ) in containsKey()
50 public static object get( this IDictionary map, object key ) in get()
55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key ) in get()
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key ) in get()
80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key ) in get()
93 public static void put( this IDictionary map, object key, object value ) in put()
99 … public static void put<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key, TValue value ) in put()
105 … public static void put<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key, TValue value ) in put()
111 public static HashSet<object> keySet( this IDictionary map ) in keySet()
117 public static HashSet<TKey> keySet<TKey, TValue>( this IDictionary<TKey, TValue> map ) in keySet()
[all …]
/external/protobuf/src/google/protobuf/
Dmap_test_util.cc1001 std::map<int32, int32> map; in ExpectMapFieldsSetViaReflection() local
1020 std::map<int64, int64> map; in ExpectMapFieldsSetViaReflection() local
1039 std::map<uint32, uint32> map; in ExpectMapFieldsSetViaReflection() local
1058 std::map<uint64, uint64> map; in ExpectMapFieldsSetViaReflection() local
1076 std::map<int32, int32> map; in ExpectMapFieldsSetViaReflection() local
1094 std::map<int64, int64> map; in ExpectMapFieldsSetViaReflection() local
1112 std::map<uint32, uint32> map; in ExpectMapFieldsSetViaReflection() local
1130 std::map<uint64, uint64> map; in ExpectMapFieldsSetViaReflection() local
1148 std::map<int32, int32> map; in ExpectMapFieldsSetViaReflection() local
1166 std::map<int64, int64> map; in ExpectMapFieldsSetViaReflection() local
[all …]
/external/webrtc/modules/rtp_rtcp/source/
Drtp_header_extension_map_unittest.cc21 RtpHeaderExtensionMap map; in TEST() local
32 RtpHeaderExtensionMap map; in TEST() local
42 RtpHeaderExtensionMap map; in TEST() local
54 const RtpHeaderExtensionMap map(config); in TEST() local
61 RtpHeaderExtensionMap map; in TEST() local
68 RtpHeaderExtensionMap map; in TEST() local
75 RtpHeaderExtensionMap map; in TEST() local
85 RtpHeaderExtensionMap map; in TEST() local
93 RtpHeaderExtensionMap map; in TEST() local
101 RtpHeaderExtensionMap map; in TEST() local
/external/rust/crates/hashlink/tests/
Dlinked_hash_map.rs42 let mut map = LinkedHashMap::new(); in test_index() localVariable
52 let mut map = LinkedHashMap::new(); in test_insert_and_get() localVariable
62 let mut map = LinkedHashMap::new(); in test_insert_update() localVariable
71 let mut map = LinkedHashMap::new(); in test_entry_insert_vacant() localVariable
102 let mut map = LinkedHashMap::new(); in test_remove() localVariable
122 let mut map = LinkedHashMap::new(); in test_pop() localVariable
158 let mut map = LinkedHashMap::new(); in test_move() localVariable
186 let mut map = LinkedHashMap::new(); in test_clear() localVariable
197 let mut map = LinkedHashMap::new(); in test_iter() localVariable
252 let mut map = LinkedHashMap::new(); in test_borrow() localVariable
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DInstructionsBuilderTest.java54 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in current_line_number_should_be_applied_to_instructions() local
69 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in null_probearray_should_not_mark_instruction_as_covered() local
80 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in unexecuted_probe_should_not_mark_instruction_as_covered() local
91 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in executed_probe_should_mark_instruction_as_covered() local
108 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in subsequent_instructions_should_be_linked_by_default() local
126 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in subsequent_instructions_should_not_be_linked_when_noSuccessor_was_called() local
146 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in subsequent_instructions_should_be_linked_after_label_marked_as_successor() local
164 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in subsequent_instructions_should_not_be_linked_after_label_not_marked_as_successor() local
184 Map<AbstractInsnNode, Instruction> map = builder.getInstructions(); in jumps_should_propagate_coverage_status() local
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DChapter2_3Test.java62 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_16() local
74 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17() local
87 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17_unicode() local
94 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17_control() local
101 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17_hexesc() local
108 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17_single() local
115 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17_quoted() local
122 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_17_tie_fighter() local
129 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_18() local

12345678910>>...97