/third_party/e2fsprogs/tests/f_h_reindex/ |
D | expect.1 | 4 Pass 2: Checking directory structure 5 Problem in HTREE directory inode 16001: block #1 has bad max hash 6 Problem in HTREE directory inode 16001: block #2 has bad min hash 7 Problem in HTREE directory inode 16001: block #2 has bad max hash 8 Problem in HTREE directory inode 16001: block #3 has bad min hash 9 Problem in HTREE directory inode 16001: block #3 has bad max hash 10 Problem in HTREE directory inode 16001: block #4 has bad min hash 11 Problem in HTREE directory inode 16001: block #4 has bad max hash 12 Problem in HTREE directory inode 16001: block #5 has bad min hash 13 Problem in HTREE directory inode 16001: block #5 has bad max hash [all …]
|
/third_party/flutter/skia/tools/ |
D | git-sync-deps | 76 def git_repository_sync_is_disabled(git, directory): argument 79 [git, 'config', 'sync-deps.disable'], cwd=directory) 85 def is_git_toplevel(git, directory): argument 96 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip() 97 return os.path.realpath(directory) == os.path.realpath(toplevel) 102 def status(directory, checkoutable): argument 106 directory = truncate(directory, dlen) 108 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable)) 111 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument 130 if not os.path.isdir(directory): [all …]
|
/third_party/skia/tools/ |
D | git-sync-deps | 76 def git_repository_sync_is_disabled(git, directory): argument 79 [git, 'config', 'sync-deps.disable'], cwd=directory) 85 def is_git_toplevel(git, directory): argument 96 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip() 97 return os.path.realpath(directory) == os.path.realpath(toplevel.decode()) 102 def status(directory, commithash, change): argument 109 directory = truncate_beginning(directory, dlen) 112 sys.stdout.write('%-*s %s %s\n' % (dlen, directory, symbol, commithash)) 115 def git_checkout_to_directory(git, repo, commithash, directory, verbose): argument 133 if not os.path.isdir(directory): [all …]
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
D | git-sync-deps | 100 def git_repository_sync_is_disabled(git, directory): argument 103 [git, 'config', 'sync-deps.disable'], cwd=directory) 109 def is_git_toplevel(git, directory): argument 120 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip() 121 return os.path.realpath(bytes(directory, 'utf8')) == os.path.realpath(toplevel) 126 def status(directory, checkoutable): argument 130 directory = truncate(directory, dlen) 132 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable)) 135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument 154 if not os.path.isdir(directory): [all …]
|
D | update_build_version.py | 42 def mkdir_p(directory): argument 46 if directory == "": 51 os.makedirs(directory) 53 if e.errno == errno.EEXIST and os.path.isdir(directory): 59 def command_output(cmd, directory): argument 67 cwd=directory, 72 raise RuntimeError('Failed to run %s in %s' % (cmd, directory)) 76 def deduce_software_version(directory): argument 88 changes_file = os.path.join(directory, 'CHANGES') 97 def describe(directory): argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
D | git-sync-deps | 100 def git_repository_sync_is_disabled(git, directory): argument 103 [git, 'config', 'sync-deps.disable'], cwd=directory) 109 def is_git_toplevel(git, directory): argument 120 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip() 121 return os.path.realpath(bytes(directory, 'utf8')) == os.path.realpath(toplevel) 126 def status(directory, checkoutable): argument 130 directory = truncate(directory, dlen) 132 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable)) 135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument 154 if not os.path.isdir(directory): [all …]
|
D | update_build_version.py | 42 def mkdir_p(directory): argument 46 if directory == "": 51 os.makedirs(directory) 53 if e.errno == errno.EEXIST and os.path.isdir(directory): 59 def command_output(cmd, directory): argument 67 cwd=directory, 72 raise RuntimeError('Failed to run %s in %s' % (cmd, directory)) 76 def deduce_software_version(directory): argument 88 changes_file = os.path.join(directory, 'CHANGES') 97 def describe(directory): argument [all …]
|
/third_party/spirv-tools/utils/ |
D | git-sync-deps | 100 def git_repository_sync_is_disabled(git, directory): argument 103 [git, 'config', 'sync-deps.disable'], cwd=directory) 109 def is_git_toplevel(git, directory): argument 120 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip() 121 return os.path.realpath(bytes(directory, 'utf8')) == os.path.realpath(toplevel) 126 def status(directory, checkoutable): argument 130 directory = truncate(directory, dlen) 132 sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable)) 135 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument 154 if not os.path.isdir(directory): [all …]
|
D | update_build_version.py | 42 def mkdir_p(directory): argument 46 if directory == "": 51 os.makedirs(directory) 53 if e.errno == errno.EEXIST and os.path.isdir(directory): 59 def command_output(cmd, directory): argument 67 cwd=directory, 72 raise RuntimeError('Failed to run %s in %s' % (cmd, directory)) 76 def deduce_software_version(directory): argument 88 changes_file = os.path.join(directory, 'CHANGES') 97 def describe(directory): argument [all …]
|
/third_party/gettext/gettext-tools/src/ |
D | dir-list.c | 32 static string_list_ty *directory /* = NULL */; variable 39 if (directory == NULL) in dir_list_append() 40 directory = string_list_alloc (); in dir_list_append() 41 string_list_append_unique (directory, s); in dir_list_append() 50 if (directory == NULL) in dir_list_nth() 53 if (n < 0 || n >= directory->nitems) in dir_list_nth() 55 return directory->item[n]; in dir_list_nth() 64 void *saved_value = directory; in dir_list_save_reset() 66 directory = NULL; in dir_list_save_reset() 77 if (directory != NULL) in dir_list_restore() [all …]
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ |
D | project_test.dart | 28 testInMemory('fails on null directory', () async { 36 final Directory directory = fs.directory('myproject'); 37 directory.childFile('pubspec.yaml') 42 () => FlutterProject.fromDirectory(directory), 48 final Directory directory = fs.directory('myproject'); 49 directory.childFile('pubspec.yaml') 54 () => FlutterProject.fromDirectory(directory), 60 final Directory directory = fs.directory('myproject'); 61 directory.childDirectory('example').childFile('pubspec.yaml') 66 () => FlutterProject.fromDirectory(directory), [all …]
|
/third_party/glslang/ |
D | build_info.py | 52 def mkdir_p(directory): argument 56 if directory == "": 61 os.makedirs(directory) 63 if e.errno == errno.EEXIST and os.path.isdir(directory): 69 def command_output(cmd, directory): argument 77 cwd=directory, 82 raise RuntimeError('Failed to run %s in %s' % (cmd, directory)) 86 def deduce_software_version(directory): argument 98 changes_file = os.path.join(directory, 'CHANGES.md') 117 def describe(directory): argument [all …]
|
/third_party/openh264/build/ |
D | mktargets.sh | 3 python build/mktargets.py --directory codec/decoder --library decoder 4 python build/mktargets.py --directory codec/encoder --library encoder --exclude DllEntry.cpp 5 python build/mktargets.py --directory codec/common --library common --exclude asm_inc.asm --exclude… 6 python build/mktargets.py --directory codec/processing --library processing 8 python build/mktargets.py --directory codec/console/dec --binary h264dec 9 python build/mktargets.py --directory codec/console/enc --binary h264enc 10 python build/mktargets.py --directory codec/console/common --library console_common 11 python build/mktargets.py --directory test/encoder --prefix encoder_unittest 12 python build/mktargets.py --directory test/decoder --prefix decoder_unittest 13 python build/mktargets.py --directory test/processing --prefix processing_unittest [all …]
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_preview.cpp | 53 dng_preview_tag_set (dng_tiff_directory &directory, 63 dng_preview_tag_set::dng_preview_tag_set (dng_tiff_directory &directory, in dng_preview_tag_set() argument 67 : dng_basic_tag_set (directory, ifd) in dng_preview_tag_set() 105 directory.Add (&fApplicationNameTag); in dng_preview_tag_set() 112 directory.Add (&fApplicationVersionTag); in dng_preview_tag_set() 119 directory.Add (&fSettingsNameTag); in dng_preview_tag_set() 126 directory.Add (&fSettingsDigestTag); in dng_preview_tag_set() 133 directory.Add (&fColorSpaceTag); in dng_preview_tag_set() 140 directory.Add (&fDateTimeTag); in dng_preview_tag_set() 147 directory.Add (&fRawToPreviewGainTag); in dng_preview_tag_set() [all …]
|
/third_party/node/deps/npm/node_modules/require-directory/ |
D | README.markdown | 1 # require-directory 3 Recursively iterates over specified directory, `require()`'ing each file, and returning a nested ha… 7 …![NPM](https://nodei.co/npm/require-directory.png?downloads=true&stars=true)](https://nodei.co/npm… 9 …cure.travis-ci.org/troygoode/node-require-directory.png)](http://travis-ci.org/troygoode/node-requ… 13 ### Installation (via [npm](https://npmjs.org/package/require-directory)) 16 $ npm install require-directory 21 …n index file which creates a hash of the files in its current directory. Given a directory structu… 32 `routes/index.js` uses `require-directory` to build the hash (rather than doing so manually) like s… 35 var requireDirectory = require('require-directory'); 39 …s` like any other module, but it now has a hash/tree of the exports from the `./routes/` directory: [all …]
|
/third_party/gettext/gettext-tools/examples/po/ |
D | xsmallpot.sh | 27 directory=$2 28 potfile=${3-$directory.pot} 33 rm -rf tmp-$directory 34 cp -p -r "$abs_srcdir"/../$directory tmp-$directory 35 chmod -R u+w tmp-$directory 36 cd tmp-$directory 37 case $directory in 42 AM_INIT_AUTOMAKE([$directory], 0) 76 s, \\([^ ]\\), $directory/\\1,g 80 rm -rf tmp-$directory
|
/third_party/e2fsprogs/tests/f_h_badroot/ |
D | expect.1 | 4 HTREE directory inode 13345 has an invalid root node. 7 HTREE directory inode 26689 has an unsupported hash version (240) 10 HTREE directory inode 40033 has an invalid root node. 13 HTREE directory inode 53377 has a tree depth (8) which is too big 16 HTREE directory inode 66721 uses an incompatible htree root node flag. 19 Pass 2: Checking directory structure 20 Problem in HTREE directory inode 80065: block #0 has an unordered hash table 23 Problem in HTREE directory inode 86737: block #0 has invalid limit (511) 26 Problem in HTREE directory inode 93409: block #0 has invalid count (234) 29 Problem in HTREE directory inode 73393: block #1 has bad min hash [all …]
|
/third_party/e2fsprogs/tests/f_baddotdir/ |
D | expect.1 | 4 Pass 2: Checking directory structure 5 Missing '.' in directory inode 12. 8 Missing '..' in directory inode 12. 11 First entry 'X' (inode=11) in directory inode 13 (/b) should be '.' 14 Missing '..' in directory inode 14. 17 Second entry 'XX' (inode=11) in directory inode 15 should be '..' 20 '.' directory entry in directory inode 17 is not NULL terminated 23 '..' directory entry in directory inode 17 is not NULL terminated 26 Missing '.' in directory inode 16. 29 Missing '..' in directory inode 16. [all …]
|
/third_party/flutter/skia/third_party/externals/spirv-tools/utils/ |
D | update_build_version.py | 44 def mkdir_p(directory): argument 48 if directory == "": 53 os.makedirs(directory) 55 if e.errno == errno.EEXIST and os.path.isdir(directory): 61 def command_output(cmd, directory): argument 69 cwd=directory, 74 raise RuntimeError('Failed to run %s in %s' % (cmd, directory)) 78 def deduce_software_version(directory): argument 90 changes_file = os.path.join(directory, 'CHANGES') 99 def describe(directory): argument [all …]
|
/third_party/typescript/src/server/ |
D | packageJsonCache.ts | 8 getInDirectory(directory: Path): PackageJsonInfo | undefined; 9 directoryHasPackageJson(directory: Path): Ternary; 10 searchDirectoryAndAncestors(directory: Path): void; 24 getInDirectory: directory => { 25 return packageJsons.get(combinePaths(directory, "package.json")) || undefined; 28 searchDirectoryAndAncestors: directory => { 29 forEachAncestorDirectory(directory, ancestor => { 50 function directoryHasPackageJson(directory: Path) { 51 return packageJsons.has(combinePaths(directory, "package.json")) ? Ternary.True : 52 directoriesWithoutPackageJson.has(directory) ? Ternary.False :
|
/third_party/skia/third_party/externals/dawn/generator/ |
D | remove_files.py | 19 def check_in_subdirectory(path, directory): argument 20 return path.startswith(directory) and not '/' in path[len(directory):] 25 check_in_subdirectory(path, directory) for directory in allowed_dirs) 30 for (directory, _, files) in os.walk(find_directory): 31 result += [os.path.join(directory, filename) for filename in files] 66 for directory in allowed_dirs: 67 if not directory.endswith('/'): 69 directory))
|
/third_party/flutter/engine/flutter/third_party/txt/tests/ |
D | txt_test_utils.cc | 56 HANDLE directory = FindFirstFileA(path.c_str(), &ffd); in RegisterFontsFromPath() local 57 if (directory == INVALID_HANDLE_VALUE) { in RegisterFontsFromPath() 73 } while (FindNextFileA(directory, &ffd) != 0); in RegisterFontsFromPath() 76 FindClose(directory); in RegisterFontsFromPath() 78 auto directory_closer = [](DIR* directory) { in RegisterFontsFromPath() 79 if (directory != nullptr) { in RegisterFontsFromPath() 80 ::closedir(directory); in RegisterFontsFromPath() 84 std::unique_ptr<DIR, decltype(directory_closer)> directory( in RegisterFontsFromPath() 87 if (directory == nullptr) { in RegisterFontsFromPath() 91 for (struct dirent* entry = ::readdir(directory.get()); entry != nullptr; in RegisterFontsFromPath() [all …]
|
/third_party/e2fsprogs/tests/f_resize_inode_meta_bg/ |
D | expect.1 | 7 Pass 2: Checking directory structure 8 First entry '' (inode=348) in directory inode 2 (???) should be '.' 11 Missing '..' in directory inode 2. 14 Directory inode 2, block #0, offset 860: directory corrupted 20 Directory inode 11, block #0, offset 0: directory corrupted 23 Missing '.' in directory inode 11. 26 Missing '..' in directory inode 11. 29 Directory inode 11, block #1, offset 0: directory corrupted 32 Directory inode 11, block #2, offset 0: directory corrupted 38 Directory inode 11, block #3, offset 864: directory corrupted [all …]
|
/third_party/e2fsprogs/tests/f_h_badnode/ |
D | expect.1 | 2 Pass 2: Checking directory structure 3 Problem in HTREE directory inode 12929: block #531 has bad max hash 4 Problem in HTREE directory inode 12929: block #993 referenced twice 5 Problem in HTREE directory inode 12929: block #1061 has bad min hash 6 Problem in HTREE directory inode 12929: block #1062 has invalid depth (2) 7 Problem in HTREE directory inode 12929: block #1062 has bad max hash 8 Problem in HTREE directory inode 12929: block #1062 not referenced 9 Invalid HTREE directory inode 12929 (/test2). Clear HTree index? yes 11 Pass 3: Checking directory connectivity
|
/third_party/e2fsprogs/tests/f_dir_bad_csum/ |
D | expect.1 | 2 Pass 2: Checking directory structure 3 Directory inode 12, block #0: directory passes checks but fails checksum. 6 Directory inode 13, block #0, offset 0: directory has no checksum. 9 Directory inode 14, block #0, offset 0: directory has no checksum. 12 Directory inode 15, block #0, offset 1000: directory corrupted 18 Directory inode 16, block #0, offset 12: directory corrupted 21 Directory inode 17, block #0, offset 0: directory corrupted 24 Missing '.' in directory inode 17. 27 Missing '..' in directory inode 17. 33 Pass 3: Checking directory connectivity
|