Home
last modified time | relevance | path

Searched full:map (Results 1 – 25 of 7791) sorted by relevance

12345678910>>...312

/external/icu/icu4c/source/data/sprep/
Drfc4518ci.txt426 0041; 0061; MAP
427 0042; 0062; MAP
428 0043; 0063; MAP
429 0044; 0064; MAP
430 0045; 0065; MAP
431 0046; 0066; MAP
432 0047; 0067; MAP
433 0048; 0068; MAP
434 0049; 0069; MAP
435 004A; 006A; MAP
[all …]
Drfc3722.txt422 00AD; ; MAP
423 034F; ; MAP
424 1806; ; MAP
425 180B; ; MAP
426 180C; ; MAP
427 180D; ; MAP
428 200B; ; MAP
429 200C; ; MAP
430 200D; ; MAP
431 2060; ; MAP
[all …]
Drfc3920node.txt422 00AD; ; MAP
423 034F; ; MAP
424 1806; ; MAP
425 180B; ; MAP
426 180C; ; MAP
427 180D; ; MAP
428 200B; ; MAP
429 200C; ; MAP
430 200D; ; MAP
431 2060; ; MAP
[all …]
Drfc3530csci.txt421 00AD; ; MAP
422 034F; ; MAP
423 1806; ; MAP
424 180B; ; MAP
425 180C; ; MAP
426 180D; ; MAP
427 200B; ; MAP
428 200C; ; MAP
429 200D; ; MAP
430 2060; ; MAP
[all …]
Drfc3491.txt422 00AD; ; MAP
423 034F; ; MAP
424 1806; ; MAP
425 180B; ; MAP
426 180C; ; MAP
427 180D; ; MAP
428 200B; ; MAP
429 200C; ; MAP
430 200D; ; MAP
431 2060; ; MAP
[all …]
Drfc4518.txt476 # Map table for LDAP profile (rfc4518.txt)
478 00AD; ; MAP
479 034F; ; MAP
480 1806; ; MAP
481 180B; ; MAP
482 180C; ; MAP
483 180D; ; MAP
484 FE00; ; MAP
485 FE01; ; MAP
486 FE02; ; MAP
[all …]
/external/icu/icu4c/source/test/testdata/
Dnfs4_cs_prep_ci.txt413 00AD; ; MAP
414 034F; ; MAP
415 1806; ; MAP
416 180B; ; MAP
417 180C; ; MAP
418 180D; ; MAP
419 200B; ; MAP
420 200C; ; MAP
421 200D; ; MAP
422 2060; ; MAP
[all …]
Dnfs4_cis_prep.txt413 00AD; ; MAP
414 034F; ; MAP
415 1806; ; MAP
416 180B; ; MAP
417 180C; ; MAP
418 180D; ; MAP
419 200B; ; MAP
420 200C; ; MAP
421 200D; ; MAP
422 2060; ; MAP
[all …]
Dnfs4_mixed_prep_s.txt413 00AD; ; MAP
414 034F; ; MAP
415 1806; ; MAP
416 180B; ; MAP
417 180C; ; MAP
418 180D; ; MAP
419 200B; ; MAP
420 200C; ; MAP
421 200D; ; MAP
422 2060; ; MAP
[all …]
/external/guava/guava-gwt/test-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/
DAtomicLongMapTest.java25 import java.util.Map;
42 Map<String, Long> in = ImmutableMap.of("1", 1L, "2", 2L, "3", 3L); in testCreate_map()
43 AtomicLongMap<String> map = AtomicLongMap.create(in); in testCreate_map() local
44 assertFalse(map.isEmpty()); in testCreate_map()
45 assertSame(3, map.size()); in testCreate_map()
46 assertTrue(map.containsKey("1")); in testCreate_map()
47 assertTrue(map.containsKey("2")); in testCreate_map()
48 assertTrue(map.containsKey("3")); in testCreate_map()
49 assertEquals(1L, map.get("1")); in testCreate_map()
50 assertEquals(2L, map.get("2")); in testCreate_map()
[all …]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAtomicLongMapTest.java27 import java.util.Map;
52 AtomicLongMap<Object> map = AtomicLongMap.create(); in testNulls() local
53 tester.testAllPublicInstanceMethods(map); in testNulls()
57 Map<String, Long> in = ImmutableMap.of("1", 1L, "2", 2L, "3", 3L); in testCreate_map()
58 AtomicLongMap<String> map = AtomicLongMap.create(in); in testCreate_map() local
59 assertFalse(map.isEmpty()); in testCreate_map()
60 assertSame(3, map.size()); in testCreate_map()
61 assertTrue(map.containsKey("1")); in testCreate_map()
62 assertTrue(map.containsKey("2")); in testCreate_map()
63 assertTrue(map.containsKey("3")); in testCreate_map()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java30 import java.util.Map;
31 import java.util.Map.Entry;
35 * Tests representing the contract of {@link Map}. Concrete subclasses of this
36 * base class test conformance of concrete {@link Map} subclasses to that
70 * @return a new, empty map instance.
74 protected abstract Map<K, V> makeEmptyMap() in makeEmptyMap()
80 * @return a new, non-empty map instance.
84 protected abstract Map<K, V> makePopulatedMap() in makePopulatedMap()
93 * that will not be found in the map.
104 * that will not be found in the map.
[all …]
/external/icu/icu4c/source/tools/gensprep/
DfilterRFC3454.pl183 $line =~ s/Map to nothing/MAP/;
185 $line =~ s/Case map/MAP/;
186 $line =~ s/Additional folding/MAP/;
303 $comment ="# Map table for SASL profile (rfc4013.txt)\n\n";
309 print $outFH "00A0; 0020; MAP\n";
310 print $outFH "1680; 0020; MAP\n";
311 print $outFH "2000; 0020; MAP\n";
312 print $outFH "2001; 0020; MAP\n";
313 print $outFH "2002; 0020; MAP\n";
314 print $outFH "2003; 0020; MAP\n";
[all …]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DRopToDop.java38 /** {@code non-null;} map from all the common rops to dalvik opcodes */
39 private static final HashMap<Rop, Dop> MAP; field in RopToDop
226 MAP = new HashMap<Rop, Dop>(400);
227 MAP.put(Rops.NOP, Dops.NOP); in MAP.put()
228 MAP.put(Rops.MOVE_INT, Dops.MOVE); in MAP.put()
229 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE); in MAP.put()
230 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE); in MAP.put()
231 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE); in MAP.put()
232 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT); in MAP.put()
233 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE); in MAP.put()
[all …]
/external/clang/test/OpenMP/
Dtarget_map_messages.cpp67 #pragma omp target map // expected-error {{expected '(' after 'map'}} in tmain()
68 #pragma omp target map( // expected-error {{expected ')'}} expected-note {{to match this '('}} expe… in tmain()
69 #pragma omp target map() // expected-error {{expected expression}} in tmain()
70 #pragma omp target map(alloc) // expected-error {{use of undeclared identifier 'alloc'}} in tmain()
71 …a omp target map(to argc // expected-error {{expected ')'}} expected-note {{to match this '('}} ex… in tmain()
72 #pragma omp target map(to:) // expected-error {{expected expression}} in tmain()
73 #pragma omp target map(from: argc, // expected-error {{expected expression}} expected-error {{expec… in tmain()
74 #pragma omp target map(x: y) // expected-error {{incorrect map type, expected one of 'to', 'from', … in tmain()
75 #pragma omp target map(x) in tmain()
77 #pragma omp target map(tofrom: t[:I]) in tmain()
[all …]
/external/v8/test/cctest/
Dtest-field-type-tracking.cc29 // keep map in fast mode.
253 bool Check(Map* map, int expected_nof) const { in Check() argument
255 CHECK_EQ(expected_nof, map->NumberOfOwnDescriptors()); in Check()
256 CHECK(!map->is_dictionary_map()); in Check()
258 DescriptorArray* descriptors = map->instance_descriptors(); in Check()
273 bool Check(Map* map) const { return Check(map, number_of_properties_); } in Check()
278 // given |map|.
281 Handle<Map> AddDataField(Handle<Map> map, PropertyAttributes attributes, in AddDataField() argument
284 CHECK_EQ(number_of_properties_, map->NumberOfOwnDescriptors()); in AddDataField()
289 return Map::CopyWithField(map, name, heap_type, attributes, representation, in AddDataField()
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DUrlComponentEncodingTester.java22 import java.util.Map;
40 private static final Map<Integer, Encoding> defaultEncodings;
42 Map<Integer, Encoding> map = new LinkedHashMap<>();
43 map.put( 0x0, Encoding.PERCENT); // Null character
44 map.put( 0x1, Encoding.PERCENT); // Start of Header
45 map.put( 0x2, Encoding.PERCENT); // Start of Text
46 map.put( 0x3, Encoding.PERCENT); // End of Text
47 map.put( 0x4, Encoding.PERCENT); // End of Transmission
48 map.put( 0x5, Encoding.PERCENT); // Enquiry
49 map.put( 0x6, Encoding.PERCENT); // Acknowledgment
[all …]
/external/protobuf/java/src/test/java/com/google/protobuf/
DSmallSortedMapTest.java40 import java.util.Map;
50 private static class SimpleEntry<K, V> implements Map.Entry<K, V> {
79 if (!(o instanceof Map.Entry)) in equals()
81 Map.Entry e = (Map.Entry) o; in equals()
134 for (SmallSortedMap<Integer, Integer> map : allMaps) { in runPutAndGetTest()
135 assertEquals(numElements, map.size()); in runPutAndGetTest()
137 assertEquals(new Integer(i + 1), map.get(i)); in runPutAndGetTest()
147 SmallSortedMap<Integer, Integer> map = SmallSortedMap.newInstanceForTest(3); in testReplacingPut() local
149 assertNull(map.put(i, i + 1)); in testReplacingPut()
150 assertNull(map.remove(i + 1)); in testReplacingPut()
[all …]
/external/libchrome/base/
Did_map_unittest.cc26 IDMap<TestObject> map; in TEST() local
27 EXPECT_TRUE(map.IsEmpty()); in TEST()
28 EXPECT_EQ(0U, map.size()); in TEST()
33 int32_t id1 = map.Add(&obj1); in TEST()
34 EXPECT_FALSE(map.IsEmpty()); in TEST()
35 EXPECT_EQ(1U, map.size()); in TEST()
36 EXPECT_EQ(&obj1, map.Lookup(id1)); in TEST()
38 int32_t id2 = map.Add(&obj2); in TEST()
39 EXPECT_FALSE(map.IsEmpty()); in TEST()
40 EXPECT_EQ(2U, map.size()); in TEST()
[all …]
/external/llvm/unittests/ADT/
DIntervalMapTest.cpp19 // Empty map tests
22 UUMap map(allocator); in TEST() local
23 EXPECT_TRUE(map.empty()); in TEST()
25 // Lookup on empty map. in TEST()
26 EXPECT_EQ(0u, map.lookup(0)); in TEST()
27 EXPECT_EQ(7u, map.lookup(0, 7)); in TEST()
28 EXPECT_EQ(0u, map.lookup(~0u-1)); in TEST()
29 EXPECT_EQ(7u, map.lookup(~0u-1, 7)); in TEST()
32 EXPECT_TRUE(map.begin() == map.begin()); in TEST()
33 EXPECT_TRUE(map.begin() == map.end()); in TEST()
[all …]
DDenseMapTest.cpp12 #include <map>
77 // allows all of the map implementations to be tested with shared
82 T Map; member in __anon7a8ac1430111::DenseMapTest
111 // Empty map tests
114 EXPECT_EQ(0u, this->Map.size()); in TYPED_TEST()
115 EXPECT_TRUE(this->Map.empty()); in TYPED_TEST()
118 EXPECT_TRUE(this->Map.begin() == this->Map.end()); in TYPED_TEST()
121 EXPECT_FALSE(this->Map.count(this->getKey())); in TYPED_TEST()
122 EXPECT_TRUE(this->Map.find(this->getKey()) == this->Map.end()); in TYPED_TEST()
125 this->Map.lookup(this->getKey())); in TYPED_TEST()
[all …]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DLinkedListMultimapTest.java32 import java.util.Map;
112 LinkedListMultimap<String, Integer> map = create(); in testLinkedGetAdd() local
113 map.put("bar", 1); in testLinkedGetAdd()
114 Collection<Integer> foos = map.get("foo"); in testLinkedGetAdd()
117 map.put("bar", 4); in testLinkedGetAdd()
118 map.put("foo", 5); in testLinkedGetAdd()
119 assertEquals("{bar=[1, 4], foo=[2, 3, 5]}", map.toString()); in testLinkedGetAdd()
121 map.entries().toString()); in testLinkedGetAdd()
125 ListMultimap<String, Integer> map = create(); in testLinkedGetInsert() local
126 map.put("bar", 1); in testLinkedGetInsert()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DMapsTransformValuesTest.java26 import java.util.Map;
57 protected Map<String, String> makeEmptyMap() { in makeEmptyMap()
63 protected Map<String, String> makePopulatedMap() { in makePopulatedMap()
64 Map<String, Integer> underlying = Maps.newHashMap(); in makePopulatedMap()
82 private void assertMapsEqual(Map<?, ?> expected, Map<?, ?> map) { in assertMapsEqual() argument
83 assertEquals(expected, map); in assertMapsEqual()
84 assertEquals(expected.hashCode(), map.hashCode()); in assertMapsEqual()
85 assertEquals(expected.entrySet(), map.entrySet()); in assertMapsEqual()
90 Collection<?> mapValues = map.values(); in assertMapsEqual()
97 Map<String, String> map = Maps.transformValues( in testTransformEmptyMapEquality() local
[all …]
DMapsTransformValuesUnmodifiableIteratorTest.java26 import java.util.Map;
32 * Tests for {@link Maps#transformValues} when the backing map's views
47 final Map<K, V> delegate;
49 UnmodifiableIteratorMap(Map<K, V> delegate) { in UnmodifiableIteratorMap()
53 @Override protected Map<K, V> delegate() { in delegate()
109 @Override protected Map<String, String> makeEmptyMap() {
110 Map<String, Integer> underlying = Maps.newHashMap();
115 @Override protected Map<String, String> makePopulatedMap() {
116 Map<String, Integer> underlying = Maps.newHashMap();
135 private void assertMapsEqual(Map<?, ?> expected, Map<?, ?> map) {
[all …]
/external/v8/src/
Dtransitions.h18 // TransitionArrays are fixed arrays used to hold map transitions for property,
20 // property transition are stored inline (i.e. the target map is stored
24 // map. In the case of a simple transition, the key is also read from the
25 // descriptor array of the target map.
37 // Insert a new transition into |map|'s transition array, extending it
39 static void Insert(Handle<Map> map, Handle<Name> name, Handle<Map> target,
42 static Map* SearchTransition(Map* map, PropertyKind kind, Name* name,
44 static MaybeHandle<Map> SearchTransition(Handle<Map> map, PropertyKind kind, in SearchTransition() argument
47 if (Map* transition = SearchTransition(*map, kind, *name, attributes)) { in SearchTransition()
50 return MaybeHandle<Map>(); in SearchTransition()
[all …]

12345678910>>...312