/third_party/skia/platform_tools/android/apps/skottie/ |
D | skottie_metric.sql | 12 INNER JOIN thread_track ON (thread_track.id = slice.track_id) 16 -- limit test results starting from second frame to 7 seconds after that 23 INNER JOIN thread_track ON (thread_track.id = slice.track_id) 24 INNER JOIN thread ON (thread.utid = thread_track.utid) 28 -- increase the offset if want to start from more than second frame 34 test_start_ts.test_start - min(ts) as start_time, 37 INNER JOIN thread_track ON (thread_track.id = slice.track_id) 38 INNER JOIN thread ON (thread.utid = thread_track.utid) 39 INNER JOIN test_start_ts ON (test_start_ts.process_upid = thread.upid) 51 INNER JOIN thread_track ON (thread_track.id = slice.track_id) [all …]
|
/third_party/cef/tools/ |
D | make_distrib.py | 2 # reserved. Use of this source code is governed by a BSD-style license that 31 full_path = os.path.join(dir, f) 36 os.path.join(input_dir, os.pardir))) 59 # depend on the 7za version -- check the 7-zip documentation for details. 61 working_dir = os.path.abspath(os.path.join(input_dir, os.pardir)) 67 run('"%s" a -ttar -y %s %s' % (command, tar_file, input_dir), working_dir) 75 run('"%s" a -t%s -y %s %s' % (command, format, zip_file, zip_input), 84 output_dir = os.path.abspath(os.path.join(parent_dir, name)) 101 paths.append(os.path.join(script_dir, 'distrib', platform_cmp)) 104 paths.append(os.path.join(script_dir, 'distrib')) [all …]
|
/third_party/jerryscript/tools/ |
D | settings.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 20 PROJECT_DIR = path.normpath(path.join(TOOLS_DIR, '..')) 21 DEBUGGER_TESTS_DIR = path.join(PROJECT_DIR, 'tests/debugger') 22 JERRY_TESTS_DIR = path.join(PROJECT_DIR, 'tests/jerry') 23 JERRY_TEST_SUITE_DIR = path.join(PROJECT_DIR, 'tests/jerry-test-suite') 24 JERRY_TEST_SUITE_MINIMAL_LIST = path.join(PROJECT_DIR, 'tests/jerry-test-suite/minimal-profile-list… 25 TEST262_TEST_SUITE_DIR = path.join(PROJECT_DIR, 'tests/test262') 27 BUILD_SCRIPT = path.join(TOOLS_DIR, 'build.py') 28 CPPCHECK_SCRIPT = path.join(TOOLS_DIR, 'check-cppcheck.sh') 29 DEBUGGER_CLIENT_SCRIPT = path.join(PROJECT_DIR, 'jerry-debugger/jerry_client.py') [all …]
|
/third_party/jerryscript/tests/jerry/ |
D | array-prototype-join.js | 7 // http://www.apache.org/licenses/LICENSE-2.0 15 assert ([].join() === ""); 16 assert ([1].join() === "1"); 17 assert ([1, 2].join() === "1,2"); 20 assert ([].join('--') === ""); 21 assert ([1].join("--") === "1"); 22 assert ([1, 2].join('--') === "1--2"); 24 assert ([1,2,3].join({toString: function() { return "--"; }}) === "1--2--3"); 27 // Join should use 'length' to as the number of elements int the array. 30 assert (lst.join() === [1,2,3].join()); [all …]
|
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/test/ |
D | resolver_sync.js | 6 var dir = path.join(__dirname, 'resolver'); 10 path.join(dir, 'foo.js') 15 path.join(dir, 'foo.js') 19 resolve.sync('./foo.js', { basedir: dir, filename: path.join(dir, 'bar.js') }), 20 path.join(dir, 'foo.js') 30 resolve.sync('foo', { basedir: dir, filename: path.join(dir, 'bar.js') }); 34 message: "Cannot find module 'foo' from '" + path.join(dir, 'bar.js') + "'" 42 var dir = path.join(__dirname, 'resolver'); 45 resolve.sync('foo', { basedir: path.join(dir, 'bar') }), 46 path.join(dir, 'bar/node_modules/foo/index.js') [all …]
|
D | resolver.js | 7 var dir = path.join(__dirname, 'resolver'); 11 t.equal(res, path.join(dir, 'foo.js')); 17 t.equal(res, path.join(dir, 'foo.js')); 23 t.equal(res, path.join(dir, 'foo.js')); 29 t.equal(res, path.join(dir, 'foo.js')); 33 resolve('./foo', { basedir: dir, filename: path.join(dir, 'baz.js') }, function (err, res) { 35 t.equal(res, path.join(dir, 'foo.js')); 44 resolve('foo', { basedir: dir, filename: path.join(dir, 'baz.js') }, function (err) { 45 t.equal(err.message, "Cannot find module 'foo' from '" + path.join(dir, 'baz.js') + "'"); 51 var dir = path.join(__dirname, 'resolver'); [all …]
|
/third_party/skia/infra/bots/recipe_modules/build/ |
D | chromebook.py | 2 # Use of this source code is governed by a BSD-style license that can be 11 'gcr.io/skia-public/debian9@sha256:' 16 skia_dir = checkout_root.join('skia') 26 clang_linux = os.path.join(top_level, 'clang_linux') 27 # This is a pretty typical arm-linux-gnueabihf sysroot 28 sysroot_dir = os.path.join(top_level, 'armhf_sysroot') 31 'cc': "%s" % os.path.join(clang_linux, 'bin','clang'), 32 'cxx': "%s" % os.path.join(clang_linux, 'bin','clang++'), 46 gl_dir = os.path.join(top_level, 'chromebook_arm_gles') 47 env = {'LD_LIBRARY_PATH': os.path.join(sysroot_dir, 'lib')} [all …]
|
/third_party/node/deps/npm/node_modules/env-paths/ |
D | index.js | 10 const library = path.join(homedir, 'Library'); 13 data: path.join(library, 'Application Support', name), 14 config: path.join(library, 'Preferences', name), 15 cache: path.join(library, 'Caches', name), 16 log: path.join(library, 'Logs', name), 17 temp: path.join(tmpdir, name) 22 const appData = env.APPDATA || path.join(homedir, 'AppData', 'Roaming'); 23 const localAppData = env.LOCALAPPDATA || path.join(homedir, 'AppData', 'Local'); 27 data: path.join(localAppData, name, 'Data'), 28 config: path.join(appData, name, 'Config'), [all …]
|
/third_party/musl/ndk-test/script/ |
D | build.py | 11 'ndk-test', 13 'arm-neon', 18 target_dir = os.path.join(os.getcwd(),os.path.pardir,'target') 23 if os.path.isdir(os.path.join(target_dir,filename)): 24 shutil.rmtree(os.path.join(target_dir,filename)) 31 build_start = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') 33 comliler_dir = os.path.join(os.getcwd(),os.path.pardir) 36 file_path = os.path.join(comliler_dir,name) 44 return_dir = os.path.join(os.getcwd(),os.path.pardir,'script') 46 build_end = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') [all …]
|
/third_party/jerryscript/targets/curie_bsp/ |
D | setup.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 28 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'arc'), 32 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'include'), 36 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'quark'), 41 'link_name': os.path.join('quark', 'jerryscript') 46 src = os.path.join(jerry_path, link['src']) 47 link_name = os.path.join(project_path, link['link_name']) 50 print("Created symlink '{link_name}' -> '{src}'".format(src=src, link_name=link_name)) 58 src_dir = os.path.join(root_dir, sub_dir) 63 file_path = os.path.join(root, filename) [all …]
|
/third_party/python/Mac/BuildScript/ |
D | build-installer.py | 6 - support universal2 variant with arm64 and x86_64 archs 7 - enable clang optimizations when building on 10.15+ 10 - 2.7 end-of-life issues: 11 - Python 3 installs now update the Current version link 13 - fully support running under Python 3 as well as 2.7 14 - support building on newer macOS systems with SIP 15 - fully support building on macOS 10.9+ 16 - support 10.6+ on best effort 17 - support bypassing docs build by supplying a prebuilt 18 docs html tarball in the third-party source library, [all …]
|
/third_party/openssl/Configurations/ |
D | windows-makefile.tmpl | 4 ## {- join("\n## ", @autowarntext) -} 5 {- 9 our $sover_dirname = platform->shlib_version_as_filename(); 12 my $install_flavour = $build_scheme->[$#$build_scheme]; # last element 14 $install_flavour eq "VC-WOW" ? "ProgramFiles(x86)" 17 $install_flavour eq "VC-WOW" ? "CommonProgramFiles(x86)" 36 -} 38 PLATFORM={- $config{target} -} 39 SRCDIR={- $config{sourcedir} -} 40 BLDDIR={- $config{builddir} -} [all …]
|
/third_party/skia/infra/bots/assets/valgrind/ |
D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 24 INFRA_BOTS_DIR = os.path.realpath(os.path.join(FILE_DIR, os.pardir, os.pardir)) 29 VALGRIND = 'valgrind-3.15.0' 32 TEMP_DIR = os.path.join(tempfile.gettempdir(), 'skia-%s' % VALGRIND) 33 INSTALL_DIR = os.path.join(TEMP_DIR, 'valgrind_install') 58 if os.path.isfile(os.path.join(INSTALL_DIR, 'bin', 'valgrind')): 60 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 61 subprocess.check_call(['./configure', '--prefix=%s' % INSTALL_DIR]) 67 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 68 os.mkdir(os.path.join(target_dir, 'bin')) [all …]
|
/third_party/flutter/engine/flutter/tools/fuchsia/ |
D | build_fuchsia_artifacts.py | 4 # Use of this source code is governed by a BSD-style license that can be 21 _script_dir = os.path.abspath(os.path.join(os.path.realpath(__file__), '..')) 22 _src_root_dir = os.path.join(_script_dir, '..', '..', '..') 23 _out_dir = os.path.join(_src_root_dir, 'out') 24 _bucket_directory = os.path.join(_out_dir, 'fuchsia_bucket') 47 return os.path.join(_src_root_dir, 'fuchsia', 'sdk', host_os, 'tools', 'pm') 56 os.path.join('flutter', 'tools', 'gn'), 59 assert os.path.exists(os.path.join(_out_dir, variant_dir)) 63 assert os.path.exists(os.path.join(_out_dir, variant_dir)) 65 RunExecutable(['autoninja', '-C', [all …]
|
/third_party/flutter/engine/flutter/testing/ |
D | run_tests.py | 3 # Use of this source code is governed by a BSD-style license that can be 7 A top level harness to run all unit-tests in a specific engine build. 16 buildroot_dir = os.path.abspath(os.path.join(os.path.realpath(__file__), '..', '..', '..')) 17 out_dir = os.path.join(buildroot_dir, 'out') 18 golden_dir = os.path.join(buildroot_dir, 'flutter', 'testing', 'resources') 19 fonts_dir = os.path.join(buildroot_dir, 'flutter', 'third_party', 'txt', 'third_party', 'fonts') 20 roboto_font_path = os.path.join(fonts_dir, 'Roboto-Regular.ttf') 21 dart_tests_dir = os.path.join(buildroot_dir, 'flutter', 'testing', 'dart',) 23 fonts_dir_flag = '--font-directory=%s' % fonts_dir 24 time_sensitve_test_flag = '--gtest_filter="-*TimeSensitiveTest*"' [all …]
|
/third_party/jsoncpp/ |
D | amalgamate.py | 3 """Amalgamate json-cpp library sources into a single source and header file. 7 Example of invocation (must be invoked from json-cpp top directory): 35 f = open(os.path.join(self.top_dir, relative_input_path), "rt") 45 return "".join(self.blocks).replace("\r\n","\n") 52 f.write(str.encode(self.get_value(), 'UTF-8')) 60 source_top_dir: top-directory 66 header.add_text("/// Json-cpp amalgamated header (http://jsoncpp.sourceforge.net/).") 74 header.add_file(os.path.join(INCLUDE_PATH, "version.h")) 75 header.add_file(os.path.join(INCLUDE_PATH, "allocator.h")) 76 header.add_file(os.path.join(INCLUDE_PATH, "config.h")) [all …]
|
/third_party/skia/tools/skp/ |
D | webpages_playback.py | 3 # Use of this source code is governed by a BSD-style license that can be 11 python tools/skp/webpages_playback.py --data_store=gs://rmistry --record \ 12 --page_sets=all --skia_tools=/home/default/trunk/out/Debug/ \ 13 --browser_executable=/tmp/chromium/out/Release/chrome 17 To replay archived webpages and re-generate SKP files (should be run whenever 21 python tools/skp/webpages_playback.py --data_store=gs://rmistry \ 22 --page_sets=all --skia_tools=/home/default/trunk/out/Debug/ \ 23 --browser_executable=/tmp/chromium/out/Release/chrome 26 Specify the --page_sets flag (default value is 'all') to pick a list of which 29 --page_sets=tools/skp/page_sets/skia_yahooanswers_desktop.py,\ [all …]
|
/third_party/flutter/skia/tools/skp/ |
D | webpages_playback.py | 3 # Use of this source code is governed by a BSD-style license that can be 11 python tools/skp/webpages_playback.py --data_store=gs://rmistry --record \ 12 --page_sets=all --skia_tools=/home/default/trunk/out/Debug/ \ 13 --browser_executable=/tmp/chromium/out/Release/chrome 17 To replay archived webpages and re-generate SKP files (should be run whenever 21 python tools/skp/webpages_playback.py --data_store=gs://rmistry \ 22 --page_sets=all --skia_tools=/home/default/trunk/out/Debug/ \ 23 --browser_executable=/tmp/chromium/out/Release/chrome 26 Specify the --page_sets flag (default value is 'all') to pick a list of which 29 --page_sets=tools/skp/page_sets/skia_yahooanswers_desktop.py,\ [all …]
|
/third_party/flutter/skia/infra/bots/assets/valgrind/ |
D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 25 VALGRIND = 'valgrind-3.13.0' 28 TEMP_DIR = os.path.join(tempfile.gettempdir(), 'skia-%s' % VALGRIND) 29 INSTALL_DIR = os.path.join(TEMP_DIR, 'valgrind_install') 54 if os.path.isfile(os.path.join(INSTALL_DIR, 'bin', 'valgrind')): 56 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 57 subprocess.check_call(['./configure', '--prefix=%s' % INSTALL_DIR]) 63 with utils.chdir(os.path.join(TEMP_DIR, VALGRIND)): 64 os.mkdir(os.path.join(target_dir, 'bin')) 65 shutil.copy(os.path.join(INSTALL_DIR, 'bin', 'valgrind'), [all …]
|
/third_party/freetype/src/tools/ |
D | make_distribution_archives.py | 14 _TOP_DIR = os.path.abspath(os.path.join(__file__, "..", "..", "..")) 15 _SCRIPT_DIR = os.path.dirname(os.path.join(_TOP_DIR, "builds", "meson", "")) 24 return out.decode("utf-8").rstrip() 29 out = get_cmd_output(["git", "status", "--porcelain"], cwd=git_dir) 37 "--source_dir", default=_TOP_DIR, help="Source directory path." 41 "--version", 49 "--gnu-config-dir", 57 "--build-dir", 62 "--ignore-clean-check", 91 os.path.join(_SCRIPT_DIR, "extract_freetype_version.py"), [all …]
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
D | make_distribution_archives.py | 14 _TOP_DIR = os.path.abspath(os.path.join(__file__, "..", "..", "..")) 15 _SCRIPT_DIR = os.path.dirname(os.path.join(_TOP_DIR, "builds", "meson", "")) 24 return out.decode("utf-8").rstrip() 29 out = get_cmd_output(["git", "status", "--porcelain"], cwd=git_dir) 37 "--source_dir", default=_TOP_DIR, help="Source directory path." 41 "--version", 49 "--gnu-config-dir", 57 "--build-dir", 62 "--ignore-clean-check", 91 os.path.join(_SCRIPT_DIR, "extract_freetype_version.py"), [all …]
|
/third_party/flutter/flutter/dev/bots/ |
D | test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 27 final String flutter = path.join(flutterRoot, 'bin', Platform.isWindows ? 'flutter.bat' : 'flutter'… 28 final String dart = path.join(flutterRoot, 'bin', 'cache', 'dart-sdk', 'bin', Platform.isWindows ? … 29 final String pub = path.join(flutterRoot, 'bin', 'cache', 'dart-sdk', 'bin', Platform.isWindows ? '… 30 final String pubCache = path.join(flutterRoot, '.pub-cache'); 31 final String toolRoot = path.join(flutterRoot, 'packages', 'flutter_tools'); 54 /// script with the parameter --local-engine=host_debug_unopt to 60 /// SHARD=tool_tests bin/cache/dart-sdk/bin/dart dev/bots/test.dart 61 /// bin/cache/dart-sdk/bin/dart dev/bots/test.dart --local-engine=host_debug_unopt 69 print('The available shards are: ${_kShards.keys.join(", ")}'); [all …]
|
/third_party/node/test/wasi/ |
D | test-wasi-symlinks.js | 6 if (process.argv[2] === 'wasi-child') { 12 const wasmDir = path.join(__dirname, 'wasm'); 22 const modulePath = path.join(wasmDir, `${process.argv[3]}.wasm`); 41 const sandbox = path.join(tmpdir.path, 'sandbox'); 42 const sandboxedFile = path.join(sandbox, 'input.txt'); 43 const externalFile = path.join(tmpdir.path, 'outside.txt'); 44 const sandboxedDir = path.join(sandbox, 'subdir'); 45 const sandboxedSymlink = path.join(sandboxedDir, 'input_link.txt'); 46 const escapingSymlink = path.join(sandboxedDir, 'outside.txt'); 47 const loopSymlink1 = path.join(sandboxedDir, 'loop1'); [all …]
|
/third_party/unity/test/ |
D | rakefile_helper.rb | 2 # Unity Project - A Test Framework for C 70 "\"#{strings.join}\"" 100 [ File.join('..','src') ].each do |f| 106 …[ $extra_paths, 'src', File.join('tests'), File.join('testdata'), $cfg[:paths][:support] ].flatten… 117 i = $1.to_i - 1 138 out_file = File.join('build', File.basename(file, C_EXTENSION)) + $cfg[:extension][:object] 145 exe_name = File.join('build', File.basename(exe_name)) 151 bin_name = File.join('build', File.basename(bin_name)) 164 …"--style=allman --indent=spaces=4 --indent-switches --indent-preproc-define --indent-preproc-block… 165 "--pad-oper --pad-comma --unpad-paren --pad-header " \ [all …]
|
/third_party/vk-gl-cts/scripts/ |
D | check_build_sanity.py | 1 # -*- coding: utf-8 -*- 3 #------------------------------------------------------------------------- 5 # -------------------------------------- 13 # http://www.apache.org/licenses/LICENSE-2.0 21 #------------------------------------------------------------------------- 57 args = [pythonExecutable, os.path.join(env.srcDir, self.scriptPath)] 65 cflagsStr = " ".join(cflags) 66 return ["-DCMAKE_C_FLAGS=%s" % cflagsStr, "-DCMAKE_CXX_FLAGS=%s" % cflagsStr] 69 …return ["-DDEQP_TARGET=%s" % target, "-DCMAKE_C_COMPILER=%s" % cc, "-DCMAKE_CXX_COMPILER=%s" % cpp… 95 args = ["-DCMAKE_C_FLAGS=/WX -DCMAKE_CXX_FLAGS=/WX"] [all …]
|