HomeSort by relevance Sort by last modified time
    Searched refs:test_name (Results 126 - 150 of 323) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/base/test/
test_launcher.cc 194 result.test_name.c_str(),
213 std::string(result.test_case_name) + "." + result.test_name);
286 std::string test_name = test_info->test_case_name(); local
287 test_name.append(".");
288 test_name.append(test_info->name());
291 if (test_name.find("DISABLED") != std::string::npos &&
298 !MatchesFilter(test_name, positive_filter)) ||
299 MatchesFilter(test_name, negative_filter)) {
  /external/chromium_org/gpu/config/
gpu_blacklist_unittest.cc 86 #define GPU_BLACKLIST_FEATURE_TEST(test_name, feature_name, feature_type) \
87 TEST_F(GpuBlacklistTest, test_name) { \
gpu_test_expectations_parser.cc 143 bool NamesMatching(const std::string& ref, const std::string& test_name) {
148 if (test_name.length() > len -1 &&
149 ref.compare(0, len - 1, test_name, 0, len - 1) == 0)
153 return (ref == test_name);
202 const std::string& test_name,
205 if (NamesMatching(entries_[i].test_name, test_name) &&
331 // BUG_ID or TEST_NAME
335 entry.test_name = tokens[i];
467 if (entries_[i].test_name == entries_[j].test_name &
    [all...]
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
module_instance.cc 130 const char* test_name = PPBVar()->VarToUtf8(message, &len); local
131 RunTest(test_name);
  /external/chromium_org/tools/dromaeo_benchmark_runner/
dromaeo_benchmark_runner.py 178 def WriteBrowserBenchmarkResults(self, test_name, test_data):
183 row.append(test_name)
213 test_name = test['name']
214 if test_name not in self.data:
216 self.data[test_name] = dict([(prop, []) for prop in test_props])
221 self.data[test_name][prop].append(value)
258 for (test_name, test_data) in benchmark_results.data.iteritems():
259 spreadsheet_writer.WriteBrowserBenchmarkResults(test_name, test_data)
  /external/chromium/testing/gtest/scripts/
gen_gtest_pred_impl.py 617 test_name = pred_format_type.title()
621 test_name += 'OnUserType'
628 test_name += 'OnBuiltInType'
637 test_name += 'Failure'
641 test_name += 'Success'
648 'test_name' : test_name,
660 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
  /external/chromium_org/cc/resources/
worker_pool_perftest.cc 162 void AfterTest(const std::string test_name) {
165 test_name.c_str(),
185 void RunScheduleTasksTest(const std::string test_name,
201 AfterTest(test_name);
204 void RunExecuteTasksTest(const std::string test_name,
219 AfterTest(test_name);
  /external/chromium_org/testing/gtest/scripts/
gen_gtest_pred_impl.py 617 test_name = pred_format_type.title()
621 test_name += 'OnUserType'
628 test_name += 'OnBuiltInType'
637 test_name += 'Failure'
641 test_name += 'Success'
648 'test_name' : test_name,
660 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
queries.py 160 help='Print a CSV-style report that includes the port name, test_name, test platform, baseline type, baseline location, and baseline platform'),
192 for test_name in tests:
193 self._print_baselines(options, port_name, test_name, port.expected_baselines_by_extension(test_name))
195 def _print_baselines(self, options, port_name, test_name, baselines):
200 print "%s,%s,%s,%s,%s,%s" % (port_name, test_name, self._platform_for_path(test_name),
  /external/chromium_org/tools/telemetry/telemetry/page/
page_test_runner.py 61 test_name or None
63 test_name = None
66 test_name = arg
68 return test_name
138 test_name = self.FindTestName(test_constructors, args)
140 if test_name:
141 test = test_constructors[test_name]()
  /external/gtest/scripts/
gen_gtest_pred_impl.py 617 test_name = pred_format_type.title()
621 test_name += 'OnUserType'
628 test_name += 'OnBuiltInType'
637 test_name += 'Failure'
641 test_name += 'Success'
648 'test_name' : test_name,
660 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
gen_gtest_pred_impl.py 617 test_name = pred_format_type.title()
621 test_name += 'OnUserType'
628 test_name += 'OnBuiltInType'
637 test_name += 'Failure'
641 test_name += 'Success'
648 'test_name' : test_name,
660 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
  /external/protobuf/gtest/scripts/
gen_gtest_pred_impl.py 620 test_name = pred_format_type.title()
624 test_name += 'OnUserType'
631 test_name += 'OnBuiltInType'
640 test_name += 'Failure'
644 test_name += 'Success'
651 'test_name' : test_name,
663 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
  /external/chromium_org/chrome/test/base/
web_ui_browsertest.cc 180 const std::string& test_name) {
183 args.push_back(new base::StringValue(test_name));
191 bool WebUIBrowserTest::RunJavascriptTest(const std::string& test_name) {
193 return RunJavascriptTest(test_name, empty_args);
196 bool WebUIBrowserTest::RunJavascriptTest(const std::string& test_name,
200 return RunJavascriptTest(test_name, args);
203 bool WebUIBrowserTest::RunJavascriptTest(const std::string& test_name,
209 return RunJavascriptTest(test_name, args);
213 const std::string& test_name,
216 test_name, test_arguments, true, false, NULL)
668 const base::Value* test_name; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_runner_unittest.py 57 def print_started_test(self, test_name):
75 super(LockCheckingRunner, self).__init__(options, port, printer, port.results_directory(), lambda test_name: False)
114 runner._test_inputs = [TestInput(test_name, 6000) for test_name in test_names]
147 result = TestResult(test_name=test, failures=[test_failures.FailureReftestMismatchDidNotOccur()], reftest_type=['!='])
153 result = TestResult(test_name=test, failures=[], reftest_type=['=='])
189 self.assertEqual([test_input.test_name for test_input in shard.test_inputs],
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 585 const char* test_name) {
589 FormatFileLocation(file, line).c_str(), test_name, case_name);
593 defined_test_names_.insert(test_name);
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-internal.h 530 const char* test_name) {
534 FormatFileLocation(file, line).c_str(), test_name, case_name);
538 defined_test_names_.insert(test_name);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-internal.h 591 const char* test_name) {
595 FormatFileLocation(file, line).c_str(), test_name, case_name);
599 defined_test_names_.insert(test_name);
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 591 const char* test_name) {
595 FormatFileLocation(file, line).c_str(), test_name, case_name);
599 defined_test_names_.insert(test_name);
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-internal.h 591 const char* test_name) {
595 FormatFileLocation(file, line).c_str(), test_name, case_name);
599 defined_test_names_.insert(test_name);
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 619 const char* test_name) {
623 FormatFileLocation(file, line).c_str(), test_name, case_name);
627 defined_test_names_.insert(test_name);
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 591 const char* test_name) {
595 FormatFileLocation(file, line).c_str(), test_name, case_name);
599 defined_test_names_.insert(test_name);
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 506 const char* test_name) {
510 FormatFileLocation(file, line).c_str(), test_name, case_name);
514 defined_test_names_.insert(test_name);
    [all...]
  /external/chromium_org/media/tools/layout_tests/
layouttest_analyzer_helpers.py 193 test_name, te_info = test_info
194 issues_txt += ' '.join(te_info.keys()) + ',' + test_name + ','
231 (test_name, te_info) = test_info
237 gpu_link, test_name)
239 dashboard_link, test_name, ' '.join(
430 test_name = match.group(1)
436 gpu_link, test_name)
437 line = line.replace(test_name, '<a href="%s">%s</a>' % (
438 dashboard_link, test_name))
  /external/chromium_org/chrome/installer/util/
delete_after_reboot_helper_unittest.cc 103 wchar_t* test_name; member in struct:StringTest
118 << tests[i].test_name;
119 EXPECT_EQ(tests[i].count, string_list.size()) << tests[i].test_name;
125 tests[i].length)) << tests[i].test_name;
136 << failures[i].test_name;

Completed in 1888 milliseconds

1 2 3 4 56 7 8 91011>>