Home
last modified time | relevance | path

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

12345678910>>...78

/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/v8/src/objects/
Dobjects-body-descriptors-inl.h31 int FlexibleBodyDescriptor<start_offset>::SizeOf(Map map, HeapObject object) { in SizeOf()
36 int FlexibleWeakBodyDescriptor<start_offset>::SizeOf(Map map, in SizeOf()
41 bool BodyDescriptorBase::IsValidJSObjectSlotImpl(Map map, HeapObject obj, in IsValidJSObjectSlotImpl()
75 void BodyDescriptorBase::IterateJSObjectBodyImpl(Map map, HeapObject obj, in IterateJSObjectBodyImpl()
176 static bool IsValidSlot(Map map, HeapObject obj, int offset) { in IsValidSlot()
182 static inline void IterateBody(Map map, HeapObject obj, int object_size, in IterateBody()
187 static inline int SizeOf(Map map, HeapObject object) { in SizeOf()
196 static bool IsValidSlot(Map map, HeapObject obj, int offset) { in IsValidSlot()
201 static inline void IterateBody(Map map, HeapObject obj, int object_size, in IterateBody()
206 static inline int SizeOf(Map map, HeapObject object) { in SizeOf()
[all …]
Dobjects-body-descriptors.h86 static bool IsValidSlot(Map map, HeapObject obj, int offset) { in IsValidSlot()
91 static inline void IterateBody(Map map, HeapObject obj, ObjectVisitor* v) { in IterateBody()
96 static inline void IterateBody(Map map, HeapObject obj, int object_size, in IterateBody()
102 static inline int SizeOf(Map map, HeapObject object) { in SizeOf()
117 static inline int SizeOf(Map map, HeapObject object) { return kSize; } in SizeOf()
128 static bool IsValidSlot(Map map, HeapObject obj, int offset) { in IsValidSlot()
133 static inline void IterateBody(Map map, HeapObject obj, int object_size, in IterateBody()
139 static inline int SizeOf(Map map, HeapObject object) { in SizeOf()
165 static bool IsValidSlot(Map map, HeapObject obj, int offset) { in IsValidSlot()
170 static inline void IterateBody(Map map, HeapObject obj, int object_size, in IterateBody()
[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-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/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/guava/guava-tests/test/com/google/common/util/concurrent/
DAtomicLongMapTest.java52 AtomicLongMap<Object> map = AtomicLongMap.create(); in testNulls() local
58 AtomicLongMap<String> map = AtomicLongMap.create(in); in testCreate_map() local
70 AtomicLongMap<String> map = AtomicLongMap.create(); in testIncrementAndGet() local
86 AtomicLongMap<String> map = AtomicLongMap.create(); in testIncrementAndGet_zero() local
103 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndIncrement() local
119 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndIncrement_zero() local
136 AtomicLongMap<String> map = AtomicLongMap.create(); in testDecrementAndGet() local
152 AtomicLongMap<String> map = AtomicLongMap.create(); in testDecrementAndGet_zero() local
169 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndDecrement() local
185 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndDecrement_zero() local
[all …]
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DAtomicLongMapTest.java52 AtomicLongMap<Object> map = AtomicLongMap.create(); in testNulls() local
58 AtomicLongMap<String> map = AtomicLongMap.create(in); in testCreate_map() local
70 AtomicLongMap<String> map = AtomicLongMap.create(); in testIncrementAndGet() local
86 AtomicLongMap<String> map = AtomicLongMap.create(); in testIncrementAndGet_zero() local
103 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndIncrement() local
119 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndIncrement_zero() local
136 AtomicLongMap<String> map = AtomicLongMap.create(); in testDecrementAndGet() local
152 AtomicLongMap<String> map = AtomicLongMap.create(); in testDecrementAndGet_zero() local
169 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndDecrement() local
185 AtomicLongMap<String> map = AtomicLongMap.create(); in testGetAndDecrement_zero() local
[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.java65 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrder() local
74 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterPutKeyTwice() local
84 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveFirstEntry() local
94 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveMiddleEntry() local
104 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveLastEntry() local
114 CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.createWithExpectedSize(100); in testTrimToSize() local
128 private void testHasMapEntriesInOrder(Map<?, ?> map, Object... alternatingKeysAndValues) { in testHasMapEntriesInOrder()
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 …]
/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.java65 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrder() local
74 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterPutKeyTwice() local
84 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveFirstEntry() local
94 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveMiddleEntry() local
104 Map<Integer, String> map = CompactLinkedHashMap.create(); in testInsertionOrderAfterRemoveLastEntry() local
114 CompactLinkedHashMap<Integer, String> map = CompactLinkedHashMap.createWithExpectedSize(100); in testTrimToSize() local
128 private void testHasMapEntriesInOrder(Map<?, ?> map, Object... alternatingKeysAndValues) { in testHasMapEntriesInOrder()
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 …]
/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/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/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLSymbols.cpp264 template <> void SymbolRecordImpl<ScopeEndSym>::map(IO &IO) {} in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
266 void UnknownSymbolRecord::map(yaml::IO &io) { in map() function in llvm::CodeViewYAML::detail::UnknownSymbolRecord
280 template <> void SymbolRecordImpl<Thunk32Sym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
290 template <> void SymbolRecordImpl<TrampolineSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
299 template <> void SymbolRecordImpl<SectionSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
308 template <> void SymbolRecordImpl<CoffGroupSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
316 template <> void SymbolRecordImpl<ExportSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
322 template <> void SymbolRecordImpl<ProcSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
336 template <> void SymbolRecordImpl<RegisterSym>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
342 template <> void SymbolRecordImpl<PublicSym32>::map(IO &IO) { in map() function in llvm::CodeViewYAML::detail::SymbolRecordImpl
[all …]
/external/u-boot/board/synopsys/hsdk/
Denv-lib.c12 static void env_clear_common(u32 index, const struct env_map_common *map) in env_clear_common()
18 static int env_read_common(u32 index, const struct env_map_common *map) in env_read_common()
38 static void env_clear_core(u32 index, const struct env_map_percpu *map) in env_clear_core()
46 static int env_read_core(u32 index, const struct env_map_percpu *map) in env_read_core()
70 static int env_validate_common(u32 index, const struct env_map_common *map) in env_validate_common()
100 static int env_validate_core(u32 index, const struct env_map_percpu *map, in env_validate_core()
139 void envs_cleanup_core(const struct env_map_percpu *map) in envs_cleanup_core()
146 void envs_cleanup_common(const struct env_map_common *map) in envs_cleanup_common()
153 int envs_read_common(const struct env_map_common *map) in envs_read_common()
166 int envs_validate_common(const struct env_map_common *map) in envs_validate_common()
[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/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/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
DChapter2_4Test.java45 Map<String, Object> map = (Map<String, Object>) document.getNativeData(); in testExample_2_19() local
59 Map<String, Object> map = (Map<String, Object>) document.getNativeData(); in testExample_2_20() local
74 Map<String, Object> map = (Map<String, Object>) document.getNativeData(); in testExample_2_21() local
85 Map<String, Object> map = (Map<String, Object>) document.getNativeData(); in testExample_2_22() local
111 Map<String, Object> map = (Map<String, Object>) document.getNativeData(); in testExample_2_23_non_date() local
122 Map<String, Object> map = (Map<String, Object>) document.getNativeData(); in testExample_2_23_picture() local
148 Map<String, Object> map = (Map<String, Object>) document.getNativeData(); in testExample_2_23() local
168 Map<String, String> map = (Map<String, String>) document.getNativeData(); in testExample_2_26() local
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
DIsMapContainingKeyTest.java21 Map<String,Integer> map = new HashMap<String, Integer>(); in testMatchesSingletonMapContainingKey() local
28 Map<String,Integer> map = new HashMap<String, Integer>(); in testMatchesMapContainingKey() local
50 Map<Integer, String> map = new HashMap<Integer, String>(); in testMatchesMapContainingKeyWithIntegerKeys() local
58 Map<Number, String> map = new HashMap<Number, String>(); in testMatchesMapContainingKeyWithNumberKeys() local
77 Map<String,Integer> map = new TreeMap<String, Integer>(); in testDoesNotMatchMapMissingKey() local
/external/v8/src/heap/
Dmarking-visitor-inl.h118 Map map, BytecodeArray object) { in VisitBytecodeArray()
131 Map map, JSFunction object) { in VisitJSFunction()
143 Map map, SharedFunctionInfo shared_info) { in VisitSharedFunctionInfo()
167 VisitFixedArrayWithProgressBar(Map map, FixedArray object, in VisitFixedArrayWithProgressBar()
196 Map map, FixedArray object) { in VisitFixedArray()
207 Map map, FixedDoubleArray object) { in VisitFixedDoubleArray()
218 MarkingState>::VisitEmbedderTracingSubclass(Map map, in VisitEmbedderTracingSubclass()
232 Map map, JSObject object) { in VisitJSApiObject()
238 Map map, JSArrayBuffer object) { in VisitJSArrayBuffer()
245 Map map, JSDataView object) { in VisitJSDataView()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DSmallSortedMapTest.java143 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testReplacingPut() local
154 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testRemove() local
195 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testClear() local
206 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testGetArrayEntryAndOverflowEntries() local
227 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testEntrySetContains() local
239 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testEntrySetAdd() local
255 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testEntrySetRemove() local
272 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testEntrySetClear() local
284 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testEntrySetIteratorNext() local
299 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testEntrySetIteratorRemove() local
[all …]

12345678910>>...78