| /third_party/skia/tools/perf-canvaskit-puppeteer/ |
| H A D | canvas_perf.js | 2 const tests = []; 3 // In all tests, the canvas is 600 by 600 px. 4 // tests should NOT call ctx.surface.flush() 29 tests.push({ 50 tests.push({ 73 tests.push({ 97 tests.push({ 120 tests.push({ 148 tests.push({ 171 tests [all...] |
| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | thcoll.cpp | 258 void CollationThaiTest::compareArray(Collator& c, const char* tests[], in compareArray() argument 263 if (tests[i+1][0] == '<') { in compareArray() 265 } else if (tests[i+1][0] == '>') { in compareArray() 267 } else if (tests[i+1][0] == '=') { in compareArray() 270 // expect = Integer.decode(tests[i+1]).intValue(); in compareArray() 271 errln((UnicodeString)"Error: unknown operator " + tests[i+1]); in compareArray() 276 parseChars(s1, tests[i]); in compareArray() 277 parseChars(s2, tests[i+2]); in compareArray() 356 const char *tests[LINES] = { in TestInvalidThai() local 382 for(i = 0; i < UPRV_LENGTHOF(tests); in TestInvalidThai() 419 const char *tests[] = { TestReordering() local [all...] |
| /third_party/node/tools/gyp/ |
| H A D | test_gyp.py | 6 """gyptest.py -- test runner for GYP tests.""" 34 parser.add_argument("-a", "--all", action="store_true", help="run all tests") 41 help="run tests with the specified formats", 51 "-l", "--list", action="store_true", help="list available tests and exit" 74 parser.add_argument("tests", nargs="*") 85 if not args.tests: 87 sys.stderr.write("Specify -a to get all tests.\n") 89 args.tests = ["test"] 91 tests = [] 92 for arg in args.tests [all...] |
| /third_party/node/deps/npm/node_modules/node-gyp/gyp/ |
| H A D | test_gyp.py | 6 """gyptest.py -- test runner for GYP tests.""" 34 parser.add_argument("-a", "--all", action="store_true", help="run all tests") 41 help="run tests with the specified formats", 51 "-l", "--list", action="store_true", help="list available tests and exit" 74 parser.add_argument("tests", nargs="*") 85 if not args.tests: 87 sys.stderr.write("Specify -a to get all tests.\n") 89 args.tests = ["test"] 91 tests = [] 92 for arg in args.tests [all...] |
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
| H A D | TestLocaleValidity.java | 43 String[][] tests = { in testBasic() 95 // tests from LDML spec section on Hybrid Locale Identifiers in testBasic() 187 check(tests, foundKeys, Datasubtype.regular, Datasubtype.unknown); in testBasic() 211 String[][] tests = { in testMissing() 217 check(tests, null, Datasubtype.regular, Datasubtype.unknown); in testMissing() 222 String[][] tests = { in testTSubtags() 231 check(tests, null, Datasubtype.regular, Datasubtype.unknown); in testTSubtags() 236 String[][] tests = { in testDeprecated() 242 check(tests, null, Datasubtype.regular, Datasubtype.unknown, Datasubtype.deprecated); in testDeprecated() 245 private void check(String[][] tests, Se argument [all...] |
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
| H A D | TestLocaleValidity.java | 40 String[][] tests = { in testBasic() 94 // tests from LDML spec section on Hybrid Locale Identifiers in testBasic() 186 check(tests, foundKeys, Datasubtype.regular, Datasubtype.unknown); in testBasic() 210 String[][] tests = { in testMissing() 216 check(tests, null, Datasubtype.regular, Datasubtype.unknown); in testMissing() 221 String[][] tests = { in testTSubtags() 230 check(tests, null, Datasubtype.regular, Datasubtype.unknown); in testTSubtags() 235 String[][] tests = { in testDeprecated() 241 check(tests, null, Datasubtype.regular, Datasubtype.unknown, Datasubtype.deprecated); in testDeprecated() 244 private void check(String[][] tests, Se argument [all...] |
| /third_party/python/Lib/ |
| H A D | sndhdr.py | 66 for tf in tests: 77 tests = [] variable 100 tests.append(test_aifc) 134 tests.append(test_au) 148 tests.append(test_hcom) 163 tests.append(test_voc) 180 tests.append(test_wav) 190 tests.append(test_8svx) 200 tests.append(test_sndt) 210 tests [all...] |
| /third_party/json/ |
| H A D | Makefile | 18 # the list of sources in the tests folder 19 TESTS_SRCS=$(shell find tests -type f \( -name '*.hpp' -o -name '*.cpp' -o -name '*.cu' \) -not -path 'tests/thirdparty/*' -not -path 'tests/abi/include/nlohmann/*' | sort) 47 # documentation tests 62 cd cmake-build-benchmarks ; cmake ../tests/benchmarks -GNinja -DCMAKE_BUILD_TYPE=Release 75 $(MAKE) parse_afl_fuzzer -C tests CXX=afl-clang++ 76 mv tests/parse_afl_fuzzer fuzz-testing/fuzzer 77 find tests/data/json_tests -size -5k -name *json | xargs -I{} cp "{}" fuzz-testing/testcases 83 $(MAKE) parse_bson_fuzzer -C tests CX [all...] |
| /third_party/node/deps/v8/tools/dev/ |
| H A D | gm.py | 6 Convenience wrapper for compiling V8 with gn/ninja and running tests. 55 # Build targets that get built when you don't specify any (and specified tests 58 # Tests that run-tests.py would run by default that can be run with 67 "tests": [], 70 "tests": { 72 "tests": [], 77 "tests": DEFAULT_TESTS, 82 "tests": ["ALL"], 87 "tests": [], 97 - tests (buil [all...] |
| /third_party/python/Lib/unittest/ |
| H A D | loader.py | 18 # we would need to avoid loading the same tests multiple times 68 This class is responsible for loading tests according to various criteria 120 tests = [] 124 tests.append(self.loadTestsFromTestCase(obj)) 127 tests = self.suiteClass(tests) 130 return load_tests(self, tests, pattern) 136 return tests 245 tests found within them. Only test files that match the pattern will 254 this exists then it will be called with (loader, tests, patter [all...] |
| /third_party/ffmpeg/tests/fate/ |
| H A D | ffmpeg.mak | 2 fate-mapchan-6ch-extract-2: tests/data/asynth-22050-6.wav 3 fate-mapchan-6ch-extract-2: CMD = ffmpeg -i $(TARGET_PATH)/tests/data/asynth-22050-6.wav -map_channel 0.0.0 -fflags +bitexact -f wav md5: -map_channel 0.0.1 -fflags +bitexact -f wav md5: 6 fate-mapchan-6ch-extract-2-downmix-mono: tests/data/asynth-22050-6.wav 7 fate-mapchan-6ch-extract-2-downmix-mono: CMD = md5 -auto_conversion_filters -i $(TARGET_PATH)/tests/data/asynth-22050-6.wav -map_channel 0.0.1 -map_channel 0.0.0 -ac 1 -fflags +bitexact -f wav 10 fate-mapchan-silent-mono: tests/data/asynth-22050-1.wav 11 fate-mapchan-silent-mono: CMD = md5 -i $(TARGET_PATH)/tests/data/asynth-22050-1.wav -map_channel -1 -map_channel 0.0.0 -fflags +bitexact -f wav 14 fate-mapchan-2ch-extract-ch0-ch2-trailing: tests/data/asynth-44100-2.wav 15 fate-mapchan-2ch-extract-ch0-ch2-trailing: CMD = md5 -i $(TARGET_PATH)/tests/data/asynth-44100-2.wav -map_channel 0.0.0 -map_channel 0.0.2? -fflags +bitexact -f wav 18 fate-mapchan-3ch-extract-ch0-ch2-trailing: tests/data/asynth-44100-3.wav 19 fate-mapchan-3ch-extract-ch0-ch2-trailing: CMD = md5 -i $(TARGET_PATH)/tests/dat [all...] |
| /third_party/typescript/tests/baselines/reference/tscWatch/projectsWithReferences/ |
| H A D | on-sample-project.js | 63 //// [/user/username/projects/sample1/tests/tsconfig.json]
78 //// [/user/username/projects/sample1/tests/index.ts]
266 //// [/user/username/projects/sample1/tests/index.js]
278 //// [/user/username/projects/sample1/tests/index.d.ts]
283 //// [/user/username/projects/sample1/tests/tsconfig.tsbuildinfo]
286 //// [/user/username/projects/sample1/tests/tsconfig.tsbuildinfo.readable.baseline.txt]
366 /a/lib/tsc.js -w -p tests
375 Program root files: ["/user/username/projects/sample1/tests/index.ts"]
376 Program options: {"composite":true,"declaration":true,"forceConsistentCasingInFileNames":true,"skipDefaultLibCheck":true,"watch":true,"project":"/user/username/projects/sample1/tests","configFilePath":"/user/username/projects/sample1/tests/tsconfi [all...] |
| /third_party/libuv/test/ |
| H A D | test-strtok.c | 62 struct strtok_test_case tests[] = { in TEST_IMPL() local 69 size_t tests_len = ARRAY_SIZE(tests); in TEST_IMPL() 78 snprintf(current_test, sizeof(current_test), "%s", tests[i].str); in TEST_IMPL() 79 tok_r = uv__strtok(current_test, tests[i].sep, &itr); in TEST_IMPL() 84 tok_r = uv__strtok(NULL, tests[i].sep, &itr); in TEST_IMPL()
|
| /third_party/skia/infra/wasm-common/docker/ |
| H A D | Makefile | 4 # docker run karma-chrome-tests /usr/bin/google-chrome-stable --version 15 docker build --no-cache -t karma-chrome-tests ./karma-chrome-tests/ 16 docker tag karma-chrome-tests gcr.io/skia-public/karma-chrome-tests:${CHROME_VERSION} 17 docker push gcr.io/skia-public/karma-chrome-tests:${CHROME_VERSION}
|
| /third_party/node/test/parallel/ |
| H A D | test-repl-autocomplete.js | 65 const tests = [ 122 const numtests = tests.length; 138 const opts = tests.shift(); 168 console.error(`Failed test # ${numtests - tests.length}`); 189 console.error(`Failed test # ${numtests - tests.length}`); 200 console.error(tests[numtests - tests.length - 1]); 201 throw new Error(`Failed test # ${numtests - tests.length}`); 217 // run the tests
|
| H A D | test-repl-reverse-search.js | 61 // TODO(BridgeAR): Add tests for lines that exceed the maximum columns. 62 const tests = [ 267 const numtests = tests.length; 283 const opts = tests.shift(); 314 console.error(`Failed test # ${numtests - tests.length}`); 332 console.error(`Failed test # ${numtests - tests.length}`); 343 console.error(tests[numtests - tests.length - 1]); 344 throw new Error(`Failed test # ${numtests - tests.length}`); 360 // run the tests [all...] |
| /third_party/protobuf/ |
| H A D | update_file_lists.sh | 122 set_cmake_value $CMAKE_DIR/tests.cmake lite_test_protos "" $LITE_PROTOS 123 set_cmake_value $CMAKE_DIR/tests.cmake tests_protos "" $PROTOS_BLACKLISTED 124 set_cmake_value $CMAKE_DIR/tests.cmake common_test_files $CMAKE_PREFIX $COMMON_TEST_SOURCES 125 set_cmake_value $CMAKE_DIR/tests.cmake common_lite_test_files $CMAKE_PREFIX $COMMON_LITE_TEST_SOURCES 126 set_cmake_value $CMAKE_DIR/tests.cmake tests_files $CMAKE_PREFIX $TEST_SOURCES 127 set_cmake_value $CMAKE_DIR/tests.cmake non_msvc_tests_files $CMAKE_PREFIX $NON_MSVC_TEST_SOURCES 128 set_cmake_value $CMAKE_DIR/tests.cmake lite_test_files $CMAKE_PREFIX $LITE_TEST_SOURCES 129 set_cmake_value $CMAKE_DIR/tests.cmake lite_arena_test_files $CMAKE_PREFIX $LITE_ARENA_TEST_SOURCES
|
| /third_party/unity/auto/ |
| H A D | generate_test_runner.rb | 71 tests = find_tests(source) 80 generate(input_file, output_file, tests, used_mocks, testfile_includes) 90 def generate(input_file, output_file, tests, used_mocks, testfile_includes) 93 create_externs(output, tests, used_mocks) 100 create_run_test(output) unless tests.empty? 101 create_args_wrappers(output, tests) 102 create_main(output, input_file, tests, used_mocks) 108 create_h_file(output, @options[:header_file], tests, testfile_includes, used_mocks) 135 # find tests 188 # determine line numbers and create tests t [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
| H A D | vktSpvAsmSignedIntCompareTests.cpp | 38 void createSignedIntCompareTests (tcu::TestCaseGroup* tests, const char* data_dir) in createSignedIntCompareTests() argument 41 tcu::TestContext& testCtx = tests->getTestContext(); in createSignedIntCompareTests() 63 tests->addChild(testCase); in createSignedIntCompareTests() 66 DE_UNREF(tests); in createSignedIntCompareTests()
|
| H A D | vktSpvAsmSignedOpTests.cpp | 22 * \brief SPIR-V signed instruction tests 38 void createSignedOpTests (tcu::TestCaseGroup* tests, const char* data_dir) in createSignedOpTests() argument 41 tcu::TestContext& testCtx = tests->getTestContext(); in createSignedOpTests() 78 tests->addChild(testCase); in createSignedOpTests() 81 DE_UNREF(tests); in createSignedOpTests()
|
| /third_party/skia/docs/examples/ |
| H A D | Path_conservativelyContainsRect.cpp | 9 SkRect tests[] = { in REG_FIDDLE() local 15 for (unsigned i = 0; i < SK_ARRAY_COUNT(tests); ++i) { in REG_FIDDLE() 19 bool rectInPath = path.conservativelyContainsRect(tests[i]); in REG_FIDDLE() 21 canvas->drawRect(tests[i], paint); in REG_FIDDLE()
|
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
| H A D | vktSpvAsmSignedIntCompareTests.cpp | 38 void createSignedIntCompareTests (tcu::TestCaseGroup* tests, const char* data_dir) in createSignedIntCompareTests() argument 41 tcu::TestContext& testCtx = tests->getTestContext(); in createSignedIntCompareTests() 63 tests->addChild(testCase); in createSignedIntCompareTests() 66 DE_UNREF(tests); in createSignedIntCompareTests()
|
| H A D | vktSpvAsmSignedOpTests.cpp | 22 * \brief SPIR-V signed instruction tests 38 void createSignedOpTests (tcu::TestCaseGroup* tests, const char* data_dir) in createSignedOpTests() argument 41 tcu::TestContext& testCtx = tests->getTestContext(); in createSignedOpTests() 78 tests->addChild(testCase); in createSignedOpTests() 81 DE_UNREF(tests); in createSignedOpTests()
|
| /third_party/skia/third_party/externals/angle2/src/tests/ |
| H A D | run_perf_tests.py | 8 # Runs ANGLE perf tests using some statistical averaging. 104 def _filter_tests(tests, pattern): 105 return [test for test in tests if fnmatch.fnmatch(test, pattern)] 108 def _shard_tests(tests, shard_count, shard_index): 109 return [tests[index] for index in range(shard_index, len(tests), shard_count)] 114 m = re.search(r'Running (\d+) tests', output) 132 tests = [] 139 elif line == 'End tests list.': 142 tests [all...] |
| H A D | capture_replay_tests.py | 12 # 1. Build all tests in angle_end2end with frame capture enabled 20 # Run this script with Python to test capture replay on angle_end2end tests 46 REPLAY_SAMPLE_FOLDER = "src/tests/capture_replay_tests" # relative to angle folder 47 DEFAULT_BATCH_COUNT = 8 # number of tests batched together 248 cmd = GetRunCommand(args, test_path) + ["--list-tests", "--gtest_filter=%s" % filter] 256 tests = [] 263 elif l == 'End tests list.': 268 tests.append(l) 272 logger.info('Found %s tests and %d disabled tests [all...] |