HomeSort by relevance Sort by last modified time
    Searched refs:test_map (Results 1 - 25 of 41) sorted by null

1 2

  /external/google-breakpad/src/processor/
address_map_unittest.cc 79 TestMap test_map; local
84 ASSERT_FALSE(test_map.Retrieve(0, &entry, &address));
85 ASSERT_FALSE(test_map.Retrieve(INT_MIN, &entry, &address));
86 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address));
90 ASSERT_TRUE(test_map.Store(1,
92 ASSERT_TRUE(test_map.Retrieve(1, &entry, &address));
94 test_map.Clear();
98 ASSERT_FALSE(test_map.Retrieve(0, &entry, &address));
99 ASSERT_FALSE(test_map.Retrieve(INT_MIN, &entry, &address));
100 ASSERT_FALSE(test_map.Retrieve(INT_MAX, &entry, &address))
    [all...]
static_map_unittest.cc 94 TestMap test_map; member in class:TestInvalidMap
99 test_map = TestMap(data);
100 ASSERT_FALSE(test_map.ValidateInMemoryStructure());
111 test_map = TestMap(data);
112 ASSERT_FALSE(test_map.ValidateInMemoryStructure());
116 test_map = TestMap(data);
117 ASSERT_FALSE(test_map.ValidateInMemoryStructure());
134 test_map = TestMap(data);
135 ASSERT_FALSE(test_map.ValidateInMemoryStructure());
147 test_map[testcase] = TestMap(map_data[testcase])
305 TestMap test_map[kNumberTestCases]; member in class:TestValidMap
    [all...]
static_contained_range_map_unittest.cc 242 scoped_ptr<TestMap> test_map(new TestMap(serialized_data.get()));
248 ASSERT_FALSE(test_map->RetrieveRange(-1, entry_test));
249 ASSERT_FALSE(test_map->RetrieveRange(0, entry_test));
250 ASSERT_FALSE(test_map->RetrieveRange(10, entry_test));
262 scoped_ptr<TestMap> test_map(new TestMap(serialized_data.get()));
268 ASSERT_FALSE(test_map->RetrieveRange(-1, entry_test));
269 ASSERT_FALSE(test_map->RetrieveRange(0, entry_test));
270 ASSERT_TRUE(test_map->RetrieveRange(10, entry_test));
272 ASSERT_TRUE(test_map->RetrieveRange(13, entry_test));
static_address_map_unittest.cc 82 test_map[testcase] = TestMap(map_data[testcase]);
104 test_map[testcase].Retrieve(target, entry_cstring, &address_test);
149 TestMap test_map[kNumberTestCases]; member in class:TestStaticAddressMap
  /external/tensorflow/tensorflow/compiler/xla/legacy_flags/
debug_options_parsers_test.cc 31 std::unordered_map<string, string> test_map; local
33 impl::parse_xla_backend_extra_options(&test_map, test_string);
34 EXPECT_EQ(test_map.size(), 4);
35 EXPECT_EQ(test_map.at("aa"), "bb");
36 EXPECT_EQ(test_map.at("cc"), "");
37 EXPECT_EQ(test_map.at("dd"), "");
38 EXPECT_EQ(test_map.at("ee"), "ff=gg");
  /external/v8/tools/testrunner/objects/
workpacket.py 63 test_map = {}
65 test_map[t.id] = t
75 return result, test_map
  /external/autotest/server/cros/
goofy_client.py 259 test_map = collections.defaultdict(list)
261 test_map[names.split('.')[0]].append(names)
262 return test_map
375 test_map = self._get_test_map()
376 if test_map:
377 logging.info('About to execute tests: %s', test_map)
383 for current_suite in test_map.keys():
389 for test_names in test_map.get(current_suite):
  /external/v8/tools/testrunner/network/
network_execution.py 180 data, test_map = packet.Pack(self.binaries)
193 test = test_map.pop(test_id)
227 if len(test_map) > 0:
229 print("\nNo results for %d tests, running them locally." % len(test_map))
230 self._EnqueueLocally(test_map)
232 def _EnqueueLocally(self, test_map):
234 for test in test_map:
235 self.tests.append(test_map[test])
  /system/tools/aidl/tests/
aidl_test_client_primitives.cpp 58 Map test_map; local
59 test_map["first_val"] = int8_t{-128};
60 test_map["second_val"] = int32_t{1 << 30};
61 test_map["third_val"] = String16("OHAI");
70 !RepeatPrimitive(s, &ITestService::RepeatMap, test_map) ||
  /frameworks/native/libs/vr/libpdx/
encoder_performance_test.cpp 463 std::map<int, std::string> test_map; local
465 test_map.emplace(i, std::to_string(i));
467 std::move(test_map));
471 std::unordered_map<int, std::string> test_map; local
473 test_map.emplace(i, std::to_string(i));
476 std::move(test_map));
  /external/python/cpython2/Lib/lib-tk/test/test_ttk/
test_style.py 24 def test_map(self): member in class:StyleTest
  /external/python/cpython3/Lib/tkinter/test/test_ttk/
test_style.py 24 def test_map(self): member in class:StyleTest
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 24 def test_map(self): member in class:StyleTest
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 24 def test_map(self): member in class:StyleTest
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 24 def test_map(self): member in class:StyleTest
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 24 def test_map(self): member in class:StyleTest
  /system/extras/simpleperf/scripts/
test.py     [all...]
  /external/v8/tools/testrunner/local/
execution.py 336 test_map = {}
341 test_map[test.id] = test
360 test = test_map[result.value[0]]
  /external/protobuf/python/google/protobuf/internal/
message_test.py     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TreeMapTest.java 1906 TreeMap test_map = new TreeMap<String, String>(); local
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-matchers_test.cc 3741 map<int, std::string> test_map; local
    [all...]
  /external/python/cpython3/Lib/test/
test_concurrent_futures.py 405 def test_map(self): member in class:ExecutorTest
test_itertools.py 1113 def test_map(self): member in class:TestBasicOps
1534 def test_map(self): member in class:TestExamples
1647 def test_map(self): member in class:TestGC
1844 def test_map(self): member in class:TestVariousIteratorArgs
    [all...]
  /external/python/futures/
test_futures.py 483 def test_map(self): member in class:ExecutorTest
  /external/googletest/googlemock/test/
gmock-matchers_test.cc 4329 map<int, std::string> test_map; local
    [all...]

Completed in 542 milliseconds

1 2