/external/autotest/client/site_tests/policy_RestoreOnStartupURLs/ |
D | policy_RestoreOnStartupURLs.py | 34 TEST_CASES = { variable in policy_RestoreOnStartupURLs 90 if self.TEST_CASES[case] is None: 94 policy_value = ','.join(self.TEST_CASES[case]) 96 policy_json = {self.POLICY_NAME: self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_JavaScriptBlockedForUrls/ |
D | policy_JavaScriptBlockedForUrls.py | 55 TEST_CASES = { variable in policy_JavaScriptBlockedForUrls 145 if not self.TEST_CASES[case]: 148 policy_value = ','.join(self.TEST_CASES[case]) 149 policy_json = {'JavaScriptBlockedForUrls': self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_JavaScriptAllowedForUrls/ |
D | policy_JavaScriptAllowedForUrls.py | 53 TEST_CASES = { variable in policy_JavaScriptAllowedForUrls 144 if not self.TEST_CASES[case]: 147 policy_value = ','.join(self.TEST_CASES[case]) 148 policy_json = {'JavaScriptAllowedForUrls': self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_URLWhitelist/ |
D | policy_URLWhitelist.py | 50 TEST_CASES = { variable in policy_URLWhitelist 186 if not self.TEST_CASES[case]: 189 policy_value = ','.join(self.TEST_CASES[case]) 190 policies_json.update({'URLWhitelist': self.TEST_CASES[case]})
|
/external/autotest/client/site_tests/policy_ImagesBlockedForUrls/ |
D | policy_ImagesBlockedForUrls.py | 53 TEST_CASES = { variable in policy_ImagesBlockedForUrls 129 if case not in self.TEST_CASES: 162 for case in sorted(self.TEST_CASES): 168 for case, value in sorted(self.TEST_CASES.items()):
|
/external/autotest/client/site_tests/policy_ImagesAllowedForUrls/ |
D | policy_ImagesAllowedForUrls.py | 52 TEST_CASES = { variable in policy_ImagesAllowedForUrls 128 if case not in self.TEST_CASES: 161 for case in sorted(self.TEST_CASES): 167 for case, value in sorted(self.TEST_CASES.items()):
|
/external/autotest/client/site_tests/policy_EditBookmarksEnabled/ |
D | policy_EditBookmarksEnabled.py | 50 TEST_CASES = { variable in policy_EditBookmarksEnabled 124 policy_value = self.json_string(self.TEST_CASES[case]) 125 policy_json = {self.POLICY_NAME: self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_CookiesBlockedForUrls/ |
D | policy_CookiesBlockedForUrls.py | 50 TEST_CASES = { variable in policy_CookiesBlockedForUrls 123 policy_value = ','.join(self.TEST_CASES[case]) 124 policy_json = {'CookiesBlockedForUrls': self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_CookiesAllowedForUrls/ |
D | policy_CookiesAllowedForUrls.py | 52 TEST_CASES = { variable in policy_CookiesAllowedForUrls 123 policy_value = ','.join(self.TEST_CASES[case]) 124 policy_json = {POLICY_NAME: self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_PopupsBlockedForUrls/ |
D | policy_PopupsBlockedForUrls.py | 46 TEST_CASES = { variable in policy_PopupsBlockedForUrls 124 policy_value = ','.join(self.TEST_CASES[case]) 125 policy_json = {self.POLICY_NAME: self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_PopupsAllowedForUrls/ |
D | policy_PopupsAllowedForUrls.py | 46 TEST_CASES = { variable in policy_PopupsAllowedForUrls 124 policy_value = ','.join(self.TEST_CASES[case]) 125 policy_json = {self.POLICY_NAME: self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_ManagedBookmarks/ |
D | policy_ManagedBookmarks.py | 56 TEST_CASES = { variable in policy_ManagedBookmarks 170 if self.TEST_CASES[case] is None: 174 policy_value = self.TEST_CASES[case]
|
/external/autotest/client/site_tests/policy_ProxySettings/ |
D | policy_ProxySettings.py | 133 TEST_CASES = { variable in policy_ProxySettings 198 policy_value = self.TEST_CASES[case] 199 policies_json = {POLICY_NAME: self.TEST_CASES[case]}
|
/external/autotest/client/site_tests/policy_URLBlacklist/ |
D | policy_URLBlacklist.py | 47 TEST_CASES = { variable in policy_URLBlacklist 167 if case not in self.TEST_CASES:
|
/external/autotest/client/cros/ |
D | enterprise_policy_base.py | 448 if test_case not in self.TEST_CASES: 460 for test_case in sorted(self.TEST_CASES): 466 for test_case, value in sorted(self.TEST_CASES.items()):
|
/external/sfntly/cpp/ |
D | CMakeLists.txt | 78 file(GLOB TEST_CASES src/test/*.cc src/test/autogenerated/*.cc) 85 ${TEST_CASES} ${CHROME_SUBSETTER_LIB}
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineImageViewTests.cpp | 350 #define ADD_SUBRESOURCE_RANGE_TESTS(TEST_CASES) \ in createSubresourceRangeTests() argument 352 for (int configNdx = 0; configNdx < DE_LENGTH_OF_ARRAY(TEST_CASES); configNdx++) \ in createSubresourceRangeTests() 355 const TestCaseConfig config = TEST_CASES[configNdx]; \ in createSubresourceRangeTests()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | TestMessageFormat.java | 1528 Object[][] TEST_CASES = { in TestNullArgs() local 1537 for (int i = 0; i < TEST_CASES.length; i++) { in TestNullArgs() 1538 String text = msgfmt.format(TEST_CASES[i][0]); in TestNullArgs() 1539 if (!text.equals(TEST_CASES[i][1])) { in TestNullArgs() 1540 errln("FAIL: Returned[" + text + "] Expected[" + TEST_CASES[i][1] + "]"); in TestNullArgs()
|
D | NumberFormatTest.java | 3839 final Object[][] TEST_CASES = { in TestRoundingBehavior() local 3884 for (Object[] testCase : TEST_CASES) { in TestRoundingBehavior()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | TestMessageFormat.java | 1524 Object[][] TEST_CASES = { in TestNullArgs() local 1533 for (int i = 0; i < TEST_CASES.length; i++) { in TestNullArgs() 1534 String text = msgfmt.format(TEST_CASES[i][0]); in TestNullArgs() 1535 if (!text.equals(TEST_CASES[i][1])) { in TestNullArgs() 1536 errln("FAIL: Returned[" + text + "] Expected[" + TEST_CASES[i][1] + "]"); in TestNullArgs()
|
D | NumberFormatTest.java | 3835 final Object[][] TEST_CASES = { in TestRoundingBehavior() local 3880 for (Object[] testCase : TEST_CASES) { in TestRoundingBehavior()
|