/toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/ |
orphan-7.d | 4 #map: orphan-7.map
|
orphan-8.d | 4 #map: orphan-8.map
|
/external/tensorflow/tensorflow/core/lib/gtl/ |
flatmap_test.cc | 32 // If map has an entry for k, return the corresponding value, else return def. 33 int32 Get(const NumMap& map, int64 k, int32 def = -1) { 34 auto iter = map.find(k); 35 if (iter == map.end()) { 36 EXPECT_EQ(map.count(k), 0); 39 EXPECT_EQ(map.count(k), 1); 40 EXPECT_EQ(&map.at(k), &iter->second); 46 // Return contents of map as a sorted list of pairs. 48 NumMapContents Contents(const NumMap& map) { 50 for (const auto& p : map) { 65 NumMap map; local 75 NumMap map; local 106 NumMap map; local 116 NumMap map; local 151 NumMap map; local 160 NumMap map; local 169 NumMap map; local 193 NumMap map; local 207 NumMap map; local 216 NumMap map; local 230 NumMap map; local 242 NumMap map; local 259 NumMap map; local 285 NumMap map; local 296 NumMap map; local 306 NumMap map; local 420 NumMap map; local 440 const NumMap map = tmp; local 456 NumMap map; local 477 FlatMap<NA, NA, HashNA> map; local 591 FlatMap<string, string> map; local 601 EXPECT_EQ(string(), map[k3]); local 627 FlatMap<CustomCmpKey, int, HashA, EqA> map; local 646 UniqMap map; local 675 UniqMap map; local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
SortedMapTestBase.java | 29 import java.util.Map; 43 SortedMap<Integer, Integer> map; field in class:SortedMapTestBase 56 map.clear(); 57 assertTrue(map.isEmpty()); 63 assertEquals(ref.containsKey(key), map.containsKey(key)); 71 assertEquals(ref.containsValue(value), map.containsValue(value)); 77 Set<Map.Entry<Integer, Integer>> refSet = ref.entrySet(); 78 Set<Map.Entry<Integer, Integer>> mapSet = map.entrySet(); 79 for (Map.Entry<Integer, Integer> e : refSet) 263 TreeMap<String, String> map = new TreeMap<String, String>(); local [all...] |
/bionic/tools/versioner/src/ |
SymbolDatabase.h | 19 #include <map> 34 using NdkSymbolDatabase = std::map<std::string, std::map<CompilationType, NdkSymbolType>>;
|
/external/clang/test/OpenMP/ |
target_data_device_messages.cpp | 14 #pragma omp target data map(to: a) device // expected-error {{expected '(' after 'device'}} 15 #pragma omp target data map(to: a) device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 16 #pragma omp target data map(to: a) device () // expected-error {{expected expression}} 17 #pragma omp target data map(to: a) device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp target data map(to: a) device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target data' are ignored}} 19 #pragma omp target data map(to: a) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}} 20 #pragma omp target data map(to: a) device (argc + argc) 21 #pragma omp target data map(to: a) device (argc), device (argc+1) // expected-error {{directive '#pragma omp target data' cannot contain more than one 'device' clause}} 22 #pragma omp target data map(to: a) device (S1) // expected-error {{'S1' does not refer to a value}} 23 #pragma omp target data map(to: a) device (-2) // expected-error {{argument to 'device' clause must be a non-negative integer (…) [all...] |
target_enter_data_device_messages.cpp | 14 #pragma omp target enter data map(to: i) device // expected-error {{expected '(' after 'device'}} 15 #pragma omp target enter data map(to: i) device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 16 #pragma omp target enter data map(to: i) device () // expected-error {{expected expression}} 17 #pragma omp target enter data map(to: i) device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp target enter data map(to: i) device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target enter data' are ignored}} 19 #pragma omp target enter data map(to: i) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}} 20 #pragma omp target enter data map(to: i) device (argc + argc) 21 #pragma omp target enter data map(to: i) device (argc), device (argc+1) // expected-error {{directive '#pragma omp target enter data' cannot contain more than one 'device' clause}} 22 #pragma omp target enter data map(to: i) device (S1) // expected-error {{'S1' does not refer to a value}} 23 #pragma omp target enter data map(to: i) device (-2) // expected-error {{argument to 'device' clause must be a non-negative integer (…) [all...] |
target_exit_data_device_messages.cpp | 14 #pragma omp target exit data map(from: i) device // expected-error {{expected '(' after 'device'}} 15 #pragma omp target exit data map(from: i) device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 16 #pragma omp target exit data map(from: i) device () // expected-error {{expected expression}} 17 #pragma omp target exit data map(from: i) device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp target exit data map(from: i) device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target exit data' are ignored}} 19 #pragma omp target exit data map(from: i) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}} 20 #pragma omp target exit data map(from: i) device (argc + argc) 21 #pragma omp target exit data map(from: i) device (argc), device (argc+1) // expected-error {{directive '#pragma omp target exit data' cannot contain more than one 'device' clause}} 22 #pragma omp target exit data map(from: i) device (S1) // expected-error {{'S1' does not refer to a value}} 23 #pragma omp target exit data map(from: i) device (-2) // expected-error {{argument to 'device' clause must be a non-negative intege (…) [all...] |
/external/guava/guava/src/com/google/common/base/ |
Defaults.java | 23 import java.util.Map; 36 private static final Map<Class<?>, Object> DEFAULTS; 39 // Only add to this map via put(Map, Class<T>, T) 40 Map<Class<?>, Object> map = new HashMap<Class<?>, Object>(); external variable declarations 41 put(map, boolean.class, false); 42 put(map, char.class, '\0'); 43 put(map, byte.class, (byte) 0); 44 put(map, short.class, (short) 0) [all...] |
/external/libcxx/test/std/containers/associative/map/map.ops/ |
find0.pass.cpp | 12 // <map> 14 // class map 24 #include <map> 32 typedef std::map<int, double, transparent_less> M; 37 typedef std::map<int, double, transparent_less_not_referenceable> M;
|
lower_bound0.pass.cpp | 12 // <map> 14 // class map 24 #include <map> 32 typedef std::map<int, double, transparent_less> M; 37 typedef std::map<int, double, transparent_less_not_referenceable> M;
|
upper_bound0.pass.cpp | 12 // <map> 14 // class map 24 #include <map> 32 typedef std::map<int, double, transparent_less> M; 37 typedef std::map<int, double, transparent_less_not_referenceable> M;
|
/external/libvpx/libvpx/test/ |
active_map_test.cc | 41 vpx_active_map_t map = vpx_active_map_t(); local 55 map.cols = (kWidth + 15) / 16; 56 map.rows = (kHeight + 15) / 16; 57 ASSERT_EQ(map.cols, 13u); 58 ASSERT_EQ(map.rows, 9u); 59 map.active_map = active_map; 60 encoder->Control(VP8E_SET_ACTIVEMAP, &map); 62 vpx_active_map_t map = vpx_active_map_t(); local 63 map.cols = (kWidth + 15) / 16; 64 map.rows = (kHeight + 15) / 16 [all...] |
/external/llvm/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/frameworks/support/collection/ktx/src/test/java/androidx/collection/ |
ArrayMapTest.kt | 25 val map = arrayMapOf<String, String>() 26 assertEquals(0, map.size) 30 val map = arrayMapOf("foo" to "bar", "bar" to "baz") 31 assertThat(map).containsExactly("foo", "bar", "bar", "baz") 35 val map = arrayMapOf("foo" to "bar", "foo" to "baz") 36 assertThat(map).containsExactly("foo", "baz")
|
/frameworks/support/core/ktx/src/androidTest/java/androidx/core/util/ |
ArrayMapTest.kt | 27 val map = arrayMapOf<String, String>() 28 assertEquals(0, map.size) 32 val map = arrayMapOf("foo" to "bar", "bar" to "baz") 33 assertThat(map).containsExactly("foo", "bar", "bar", "baz") 37 val map = arrayMapOf("foo" to "bar", "foo" to "baz") 38 assertThat(map).containsExactly("foo", "baz")
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/AsmParser/ |
SlotMapping.h | 19 #include <map> 35 std::map<unsigned, TrackingMDNodeRef> MetadataNodes; 37 std::map<unsigned, Type *> Types;
|