/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 83 my %directories = (); 85 # The environment variables that gave us the contents in %directories. These 86 # get modified whenever we change directories, so that subprocesses can use 156 note "The results of this test will end up in $directories{RESULTS}" 159 __cwd($directories{RESULTS}); 549 LIST is a list of directories that make up a path from the top of the OpenSSL 561 # a very distinct syntax for directories. 568 LIST is a list of directories that make up a path from the top of the OpenSSL 586 LIST is a list of directories that make up a path from the top of the OpenSSL 598 # a very distinct syntax for directories [all...] |
H A D | fallback.pm | 10 OpenSSL::fallback - push directories to the end of @INC at compile time 28 This small simple module simplifies the addition of fallback directories 31 It is used to add extra directories at the end of perl's search path so 56 sub-directories relative to the location of that F<MODULES.txt> file. 57 All these sub-directories will be appended to @INC. 96 # We must be real careful not to convert the directories
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 83 my %directories = (); 85 # The environment variables that gave us the contents in %directories. These 86 # get modified whenever we change directories, so that subprocesses can use 156 note "The results of this test will end up in $directories{RESULTS}" 159 __cwd($directories{RESULTS}); 549 LIST is a list of directories that make up a path from the top of the OpenSSL 561 # a very distinct syntax for directories. 568 LIST is a list of directories that make up a path from the top of the OpenSSL 586 LIST is a list of directories that make up a path from the top of the OpenSSL 598 # a very distinct syntax for directories [all...] |
H A D | fallback.pm | 10 OpenSSL::fallback - push directories to the end of @INC at compile time 28 This small simple module simplifies the addition of fallback directories 31 It is used to add extra directories at the end of perl's search path so 56 sub-directories relative to the location of that F<MODULES.txt> file. 57 All these sub-directories will be appended to @INC. 96 # We must be real careful not to convert the directories
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | process_angle_perf_results.py | 130 for benchmark_name, directories in benchmark_directory_map.items(): 131 for directory in directories: 180 for benchmark_name, directories in benchmark_directory_map.items(): 181 for directory in directories: 231 # Now create a map of benchmark name to the list of directories 366 def _merge_perf_results(benchmark_name, results_filename, directories, build_properties): 369 for directory in directories: 398 def _upload_individual(benchmark_name, directories, configuration_name, build_properties, 406 if len(directories) > 1: 411 _merge_perf_results(benchmark_name, results_filename, directories, build_propertie [all...] |
H A D | gen_vk_gl_cts_build.py | 77 for root, directories, filenames in os.walk(deqpSrcDir): 86 # List of directories containing data files 88 # List of directories to exclude from the copy 100 # List of unique relative directories for the copy() command outputs 139 for root, directories, filenames in os.walk(dataPath): 142 # Skip any excluded directories 148 # Record the relative directories and full paths to each data file
|
/third_party/typescript/tests/baselines/reference/ |
H A D | importCallExpressionReturnPromiseOfAny.js | 28 function * loadModule(directories: string[]) { 29 for (const directory of directories) { 58 function* loadModule(directories) {
60 for (const directory of directories) {
|
/third_party/jerryscript/targets/mbedos5/tools/ |
H A D | generate_pins.py | 57 def find_file(root_dir, directories, name): 62 Filter out directories that are not in directories, or do not start with 65 Since this looks in (essentially )the same directories as the compiler would 71 dirs[:] = [directory for directory in dirs if directory in directories or not directory.startswith('TARGET_')] 77 def enumerate_includes(root_dir, directories): 80 valid include directories. 85 if dir_label in directories
|
/third_party/python/Tools/msi/ |
H A D | csv_to_wxs.py | 11 This is necessary to handle structures where some directories only 12 contain other directories. MSBuild is not able to generate the 49 directories = defaultdict(set) 62 directories[parent].add(dirname.name) 68 for dir_parent in sorted(directories): 70 for dir_name in sorted(directories[dir_parent]):
|
/third_party/mbedtls/tests/scripts/ |
H A D | check-doxy-blocks.pl | 18 # C/header files in the following directories will be checked 19 my @directories = qw(include/mbedtls library doxygen/input); 57 for my $dir (@directories) {
|
H A D | check_test_cases.py | 132 """Get the relative path for the TLS and Crypto test directories.""" 139 directories = [tests_dir] 140 return directories
|
/third_party/rust/crates/clang-sys/build/ |
H A D | common.rs | 171 // system-wide directories. 225 /// Finds the files in a directory (and any relevant sibling directories) that 233 // keep things consistent with other platforms, only LLVM `lib` directories in search_directories() 265 // Search the `bin` and `lib` directories in the directory returned by in search_libclang_directories() 284 // Search the directories in the `LD_LIBRARY_PATH` environment variable. in search_libclang_directories() 292 let directories = if cfg!(target_os = "haiku") { in search_libclang_directories() 306 // Search the directories provided by the `libclang` directory patterns. in search_libclang_directories() 310 for directory in directories.iter().rev() { in search_libclang_directories() 311 if let Ok(directories) = glob::glob_with(directory, options) { in search_libclang_directories() 312 for directory in directories in search_libclang_directories() [all...] |
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | zip_writer.cc | 116 progress_.directories++; in AddDirectoryEntry() 183 std::vector<const base::FilePath*> directories; in AddMixedEntries() local 189 // directories, and we want to avoid making a call to file_accessor_ for each in AddMixedEntries() 191 // descriptors for directories, and we'll process these directories in the in AddMixedEntries() 214 directories.push_back(&relative_path); in AddMixedEntries() 219 // Second pass for directories discovered during the first pass. in AddMixedEntries() 220 for (const base::FilePath* const path : directories) { in AddMixedEntries()
|
H A D | zip_unittest.cc | 1165 EXPECT_GE(progress.directories, last_progress.directories); in TEST_F() 1178 EXPECT_EQ(last_progress.directories, 2); in TEST_F() 1202 EXPECT_GE(progress.directories, last_progress.directories); in TEST_F() 1217 EXPECT_EQ(last_progress.directories, 2); in TEST_F()
|
/third_party/node/deps/zlib/google/ |
H A D | zip_writer.cc | 116 progress_.directories++; in AddDirectoryEntry() 183 std::vector<const base::FilePath*> directories; in AddMixedEntries() local 189 // directories, and we want to avoid making a call to file_accessor_ for each in AddMixedEntries() 191 // descriptors for directories, and we'll process these directories in the in AddMixedEntries() 214 directories.push_back(&relative_path); in AddMixedEntries() 219 // Second pass for directories discovered during the first pass. in AddMixedEntries() 220 for (const base::FilePath* const path : directories) { in AddMixedEntries()
|
H A D | zip_unittest.cc | 1165 EXPECT_GE(progress.directories, last_progress.directories); in TEST_F() 1178 EXPECT_EQ(last_progress.directories, 2); in TEST_F() 1202 EXPECT_GE(progress.directories, last_progress.directories); in TEST_F() 1217 EXPECT_EQ(last_progress.directories, 2); in TEST_F()
|
/third_party/gn/src/base/files/ |
H A D | file_util_posix.cc | 186 stack<std::string> directories; in DeleteFile() local 187 directories.push(path.value()); in DeleteFile() 194 directories.push(current.value()); in DeleteFile() 199 while (!directories.empty()) { in DeleteFile() 200 FilePath dir = FilePath(directories.top()); in DeleteFile() 201 directories.pop(); in DeleteFile() 448 // Collect a list of all parent directories. in CreateDirectoryAndGetError()
|
/third_party/node/deps/npm/node_modules/read-package-json/lib/ |
H A D | read-json.js | 288 // don't accept directories. 331 let cwd = data.directories && data.directories.man 350 var m = data.directories && data.directories.bin 362 var m = (data.directories && data.directories.bin) || '.'
|
/third_party/node/deps/npm/node_modules/read-package-json-fast/lib/ |
H A D | index.js | 13 // load the directories.bin folder as a 'bin' object 19 const m = data.directories && data.directories.bin 24 // cut off any monkey business, like setting directories.bin
|
/third_party/lzma/C/ |
H A D | warn_clang_mac.mak | 1 CFLAGS_WARN = -Weverything -Wfatal-errors -Wno-poison-system-directories
|
/third_party/node/deps/npm/node_modules/@npmcli/package-json/lib/ |
H A D | normalize.js | 281 // don't accept directories. 305 // expand directories.man 306 if (steps.includes('mans') && !data.man && data.directories?.man) { 307 const manDir = data.directories.man 319 // expand "directories.bin" 320 if (steps.includes('binDir') && data.directories?.bin && !data.bin) { 321 const binsDir = path.resolve(pkg.path, path.join('.', path.join('/', data.directories.bin))) 326 acc[binName] = path.join(data.directories.bin, binFile)
|
/third_party/lzma/CPP/7zip/ |
H A D | warn_clang_mac.mak | 1 CFLAGS_WARN = -Weverything -Wfatal-errors -Wno-poison-system-directories
|
/third_party/curl/projects/ |
H A D | build-openssl.bat | 505 rem Move the output directories
516 rem Remove the intermediate directories
529 rem Remove the intermediate directories
536 rem Move the output directories
547 rem Remove the intermediate directories
560 rem Remove the intermediate directories
574 rem Move the output directories
641 rem Remove the output directories
|
/third_party/gn/src/gn/ |
H A D | variables.cc | 441 only be used to add defines and include directories necessary to compile a 494 settings, flags, and include directories are the same between both targets 1046 Lists files or directories required to run the given target. These are 1047 typically data files or directories of data files. The paths are interpreted 1062 By convention, directories are listed with a trailing slash: 1302 "framework_dirs: [directory list] Additional framework search directories."; 1304 R"(framework_dirs: [directory list] Additional framework search directories. 1306 A list of source directories. 1308 The directories in this list will be added to the framework search path for 1336 "include_dirs: [directory list] Additional include directories [all...] |
/third_party/curl/tests/ |
H A D | directories.pm | 25 package directories; package
|