/external/chromium_org/components/autofill/core/browser/ |
data_driven_test.h | 39 // ../autofill/|test_name|/input and ../autofill/|test_name|/output. 40 base::FilePath GetInputDirectory(const base::FilePath::StringType& test_name); 42 const base::FilePath::StringType& test_name);
|
data_driven_test.cc | 69 const base::FilePath::StringType& test_name) { 72 .Append(test_name) 78 const base::FilePath::StringType& test_name) { 81 .Append(test_name)
|
/external/chromium_org/chrome/test/base/ |
web_ui_browsertest.h | 71 const std::string& test_name); 75 bool RunJavascriptTest(const std::string& test_name); 76 bool RunJavascriptTest(const std::string& test_name, 78 bool RunJavascriptTest(const std::string& test_name, 81 bool RunJavascriptTest(const std::string& test_name, 86 bool RunJavascriptAsyncTest(const std::string& test_name); 87 bool RunJavascriptAsyncTest(const std::string& test_name, 89 bool RunJavascriptAsyncTest(const std::string& test_name, 92 bool RunJavascriptAsyncTest(const std::string& test_name, 96 bool RunJavascriptAsyncTest(const std::string& test_name, [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/ |
rebaselineserver_unittest.py | 50 test_name='fast/text.html', 68 test_name='fast/text.html', 87 test_name='fast/text.html', 106 test_name='fast/text.html', 127 test_name='fast/text.html', 151 test_name='fast/image.html', 175 test_name='fast/text.html', 196 test_name='fast/image.html', 216 def _assertRebaseline(self, test_files, results_files, test_name, baseline_target, baseline_move_to, expected_success, expected_log): 220 test_name, [all...] |
/external/libsepol/tests/ |
helpers.c | 35 int test_load_policy(policydb_t * p, int policy_type, int mls, const char *test_name, const char *policy_name) 40 if (snprintf(filename, PATH_MAX, "policies/%s/%s.mls", test_name, policy_name) < 0) { 44 if (snprintf(filename, PATH_MAX, "policies/%s/%s.std", test_name, policy_name) < 0) { 57 if (read_source_policy(p, filename, test_name)) {
|
helpers.h | 40 * test_name Name of the test which will be the name of the directory in 48 extern int test_load_policy(policydb_t * p, int policy_type, int mls, const char *test_name, const char *policy_name);
|
/external/chromium_org/build/android/pylib/host_driven/ |
test_case.py | 41 def __init__(self, test_name, instrumentation_options=None): 42 """Create a test case initialized to run |test_name|. 45 test_name: The name of the method to run as the test. 48 self.test_name = test_name 50 self.qualified_name = '%s.%s' % (class_name, self.test_name) 77 return getattr(self, self.test_name)() 131 suite, test_name = test.split('.') 132 java_result = self.__RunJavaTest(package_name, suite, test_name)
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
bpf_tests.h | 23 #define BPF_DEATH_TEST(test_case_name, test_name, death, policy, aux...) \ 24 void BPF_TEST_##test_name(sandbox::BpfTests<aux>::AuxType& BPF_AUX); \ 25 TEST(test_case_name, DISABLE_ON_TSAN(test_name)) { \ 26 sandbox::BpfTests<aux>::TestArgs arg(BPF_TEST_##test_name, policy); \ 31 void BPF_TEST_##test_name(sandbox::BpfTests<aux>::AuxType& BPF_AUX) 43 #define BPF_TEST(test_case_name, test_name, policy, aux...) \ 44 BPF_DEATH_TEST(test_case_name, test_name, DEATH_SUCCESS(), policy, aux)
|
/external/chromium_org/tools/telemetry/telemetry/ |
test_runner.py | 67 for test_name, test_class in sorted(_GetTests().items()): 69 'name': test_name, 77 for test_name, test_class in sorted(_GetTests().items()): 79 print ' %-20s %s' % (test_name, 82 print ' %-20s' % test_name 89 usage = 'test_name [...] [<args>]' 99 for test_name in args: 100 if test_name not in _GetTests(): 101 parser.error('No test named "%s"' % test_name) 105 for test_name in args [all...] |
/external/chromium_org/chrome/test/perf/ |
perf_test.h | 98 void PrintIOPerfInfo(const std::string& test_name, 103 const std::string& test_name, 107 std::string IOPerfInfoToString(const std::string& test_name, 112 void PrintMemoryUsageInfo(const std::string& test_name, 117 const std::string& test_name, 121 std::string MemoryUsageInfoToString(const std::string& test_name, 126 void PrintSystemCommitCharge(const std::string& test_name, 131 const std::string& test_name, 135 std::string SystemCommitChargeToString(const std::string& test_name,
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/ |
printing.py | 184 test_name = test_tuple.test_name 186 if test_name in run_results.slow_tests: 190 if test_name in run_results.failures_by_name: 191 result = run_results.results_by_name[test_name].type 219 self._print_debug(" %s took %s seconds" % (test_tuple.test_name, test_run_time)) 321 def _test_status_line(self, test_name, suffix): 323 status_line = format_string % (self.num_completed, self.num_tests, test_name, suffix) 327 if len(test_name) < overflow_columns + len(ellipsis) + 2: 330 test_name = fs.split(test_name)[1 [all...] |
/external/skia/tools/ |
jsondiff.py | 83 for test_name in all_expectations.keys(): 84 test_expectations = all_expectations[test_name] 92 test_name, num_allowed_digests)) 97 test_name, digest_pair[0])) 98 result_dict[test_name] = digest_pair[1] 126 for test_name in results_of_this_type.keys(): 127 digest_pair = results_of_this_type[test_name] 131 test_name, digest_pair[0])) 132 result_dict[test_name] = digest_pair[1]
|
/external/chromium_org/base/json/ |
json_parser.h | 28 #define FRIEND_TEST(test_case_name, test_name)\ 29 friend class test_case_name##_##test_name##_Test 31 #define FRIEND_TEST_ALL_PREFIXES(test_case_name, test_name) \ 32 FRIEND_TEST(test_case_name, test_name); \ 33 FRIEND_TEST(test_case_name, DISABLED_##test_name); \ 34 FRIEND_TEST(test_case_name, FLAKY_##test_name)
|
/external/chromium_org/sync/tools/testserver/ |
sync_testserver.py | 169 test_name = "/chromiumsync/time" 170 if not self._ShouldHandleRequest(test_name): 191 test_name = "/chromiumsync/command" 192 if not self._ShouldHandleRequest(test_name): 216 test_name = "/chromiumsync/migrate" 217 if not self._ShouldHandleRequest(test_name): 230 test_name = "/chromiumsync/cred" 231 if not self._ShouldHandleRequest(test_name): 253 test_name = "/chromiumsync/xmppcred" 254 if not self._ShouldHandleRequest(test_name) [all...] |
/external/chromium_org/build/android/pylib/gtest/ |
test_package.py | 99 test_name = test[2:] 100 ret += [current + test_name]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
test_results_unittest.py | 37 self.assertEqual(result.test_name, 'foo') 42 result = TestResult(test_name='foo',
|
test_run_results.py | 69 if test_expectations.WONTFIX in self.expectations.model().get_expectations(test_result.test_name): 71 self.tests_by_expectation[result_type_for_stats].add(test_result.test_name) 73 self.results_by_name[test_result.test_name] = test_result 79 self.failures_by_name[test_result.test_name] = test_result.failures 87 self.unexpected_results_by_name[test_result.test_name] = test_result 96 self.slow_tests.add(test_result.test_name) 163 for test_name, result in initial_results.results_by_name.iteritems(): 164 expected = expectations.get_expectations_string(test_name) 175 elif result_type != test_expectations.SKIP and test_name in initial_results.unexpected_results_by_name: 176 if retry_results and test_name not in retry_results.unexpected_results_by_name [all...] |
/external/chromium_org/v8/tools/testrunner/local/ |
junit_output.py | 37 def HasRunTest(self, test_name, test_duration, test_failure): 39 testCaseElement.attrib["name"] = " ".join(test_name)
|
/external/skia/gm/ |
gm_json.py | 62 def CreateGmActualUrl(test_name, hash_type, hash_digest, 67 test_name: name of the test, e.g. 'perlinnoise' 73 return '%s/%s/%s/%s.png' % (gm_actuals_root_url, hash_type, test_name,
|
/external/chromium/chrome/browser/autofill/ |
data_driven_test.cc | 67 const FilePath::StringType& test_name) { 71 .Append(test_name) 77 const FilePath::StringType& test_name) { 81 .Append(test_name)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
print-layout-test-times | 47 for test_name in times: 48 key = key_for(test_name) 50 times_by_key[key] += times[test_name] 52 times_by_key[key] = times[test_name]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
rebaselineserver.py | 63 def gather_baselines_for_test(test_name, result_dict): 64 result = JSONTestResult(test_name, result_dict) 68 result_dict['baselines'] = get_test_baselines(test_name, self._test_config) 69 new_tests_subtree[test_name] = result_dict
|
/external/chromium_org/chrome/common/extensions/manifest_tests/ |
extension_manifests_manifest_version_unittest.cc | 26 const char* test_name; member in struct:__anon9126 46 test_data[i].test_name), 52 test_data[i].test_name),
|
/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/ |
test_interface.cc | 30 void PostTestMessage(nacl::string test_name, nacl::string message) { 31 nacl::string test_message = test_name; 76 void AddTest(nacl::string test_name, TestFunction test_function) { 77 test_map_[test_name] = test_function; 79 void RunTest(nacl::string test_name); 90 void TestTable::RunTest(nacl::string test_name) { 91 TestMap::iterator it = test_map_.find(test_name); 93 PostTestMessage(test_name, "NOTFOUND"); 103 void RegisterTest(nacl::string test_name, TestFunction test_func) { 104 TestTable::Get()->AddTest(test_name, test_func) [all...] |
/external/chromium_org/chrome/test/ppapi/ |
ppapi_browsertest.cc | 23 #define STRIP_PREFIXES(test_name) StripPrefixes(#test_name) 26 #define STRINGIFY(test_name) #test_name 27 #define LIST_TEST(test_name) STRINGIFY(test_name) "," 31 #define TEST_PPAPI_IN_PROCESS(test_name) \ 32 IN_PROC_BROWSER_TEST_F(PPAPITest, test_name) { \ 33 RunTest(STRIP_PREFIXES(test_name)); \ 35 #define TEST_PPAPI_OUT_OF_PROCESS(test_name) \ [all...] |