/third_party/cef/libcef/browser/extensions/ |
D | component_extension_resource_manager.cc | 44 base::FilePath relative_path; in IsComponentExtensionResource() local 46 !resources_dir.AppendRelativePath(directory_path, &relative_path)) { in IsComponentExtensionResource() 49 relative_path = relative_path.Append(resource_path); in IsComponentExtensionResource() 50 relative_path = relative_path.NormalizePathSeparators(); in IsComponentExtensionResource() 52 auto entry = path_to_resource_info_.find(relative_path); in IsComponentExtensionResource()
|
/third_party/skia/build/fuchsia/skqp/ |
D | append_assets_to_manifest | 40 relative_path = os.path.relpath(args.manifest, root_build_dir) variable 41 deps_file.write('%s: ' % relative_path) 54 relative_path = os.path.relpath(base_line_rhs, root_build_dir) variable 55 deps_file.write(relative_path + " ") 69 relative_path = os.path.relpath(source, root_build_dir) variable 70 deps_file.write(relative_path + " ")
|
/third_party/googletest/googletest/scripts/ |
D | fuse_gtest_files.py | 89 def VerifyFileExists(directory, relative_path): argument 95 if not os.path.isfile(os.path.join(directory, relative_path)): 96 print('ERROR: Cannot find %s in directory %s.' % (relative_path, 113 def VerifyOutputFile(output_dir, relative_path): argument 120 output_file = os.path.join(output_dir, relative_path) 126 (relative_path, output_dir))
|
/third_party/cef/tests/shared/browser/ |
D | resource_util_win.cc | 57 std::string relative_path = url.substr(url_path_.length()); in OnRequest() local 58 if (!relative_path.empty()) { in OnRequest() 60 relative_path = resource_path_prefix_ + relative_path; in OnRequest() 63 GetBinaryResourceReader(relative_path.data()); in OnRequest()
|
/third_party/flutter/skia/third_party/externals/zlib/google/ |
D | zip_writer.cc | 172 const base::FilePath& relative_path = relative_paths[i]; in FlushEntriesIfNeeded() local 176 if (!AddFileEntryToZip(zip_file_, relative_path, std::move(file))) { in FlushEntriesIfNeeded() 177 LOG(ERROR) << "Failed to write file " << relative_path.value() in FlushEntriesIfNeeded() 186 LOG(ERROR) << "Failed to write entry " << relative_path.value() in FlushEntriesIfNeeded() 191 if (!AddDirectoryEntryToZip(zip_file_, relative_path, last_modified)) { in FlushEntriesIfNeeded() 192 LOG(ERROR) << "Failed to write directory " << relative_path.value() in FlushEntriesIfNeeded()
|
D | zip.cc | 141 base::FilePath relative_path; in Zip() local 143 params.src_dir().AppendRelativePath(entry_path, &relative_path); in Zip() 145 all_files.push_back(relative_path); in Zip()
|
/third_party/skia/third_party/externals/zlib/google/ |
D | zip_writer.cc | 173 const base::FilePath& relative_path = relative_paths[i]; in FlushEntriesIfNeeded() local 177 if (!AddFileEntryToZip(zip_file_, relative_path, std::move(file))) { in FlushEntriesIfNeeded() 178 LOG(ERROR) << "Failed to write file " << relative_path.value() in FlushEntriesIfNeeded() 187 LOG(ERROR) << "Failed to write entry " << relative_path.value() in FlushEntriesIfNeeded() 192 if (!AddDirectoryEntryToZip(zip_file_, relative_path, last_modified)) { in FlushEntriesIfNeeded() 193 LOG(ERROR) << "Failed to write directory " << relative_path.value() in FlushEntriesIfNeeded()
|
D | zip.cc | 141 base::FilePath relative_path; in Zip() local 143 params.src_dir().AppendRelativePath(entry_path, &relative_path); in Zip() 145 all_files.push_back(relative_path); in Zip()
|
/third_party/node/deps/zlib/google/ |
D | zip_writer.cc | 172 const base::FilePath& relative_path = relative_paths[i]; in FlushEntriesIfNeeded() local 176 if (!AddFileEntryToZip(zip_file_, relative_path, std::move(file))) { in FlushEntriesIfNeeded() 177 LOG(ERROR) << "Failed to write file " << relative_path.value() in FlushEntriesIfNeeded() 186 LOG(ERROR) << "Failed to write entry " << relative_path.value() in FlushEntriesIfNeeded() 191 if (!AddDirectoryEntryToZip(zip_file_, relative_path, last_modified)) { in FlushEntriesIfNeeded() 192 LOG(ERROR) << "Failed to write directory " << relative_path.value() in FlushEntriesIfNeeded()
|
D | zip.cc | 141 base::FilePath relative_path; in Zip() local 143 params.src_dir().AppendRelativePath(entry_path, &relative_path); in Zip() 145 all_files.push_back(relative_path); in Zip()
|
/third_party/musl/scripts/ |
D | search_source_files.py | 96 def get_libc_srcs(target_srcs, relative_path): argument 99 clean_path_src = src.replace(relative_path, "") 104 def get_ldso_srcs(target_srcs, relative_path): argument 107 clean_path_src = src.replace(relative_path, "") 112 def get_crt_srcs(target_srcs, relative_path): argument 115 clean_path_src = src.replace(relative_path, "")
|
/third_party/node/benchmark/fs/ |
D | bench-realpathSync.js | 9 const relative_path = path.relative(__dirname, '../../lib/'); constant 18 const path = pathType === 'relative' ? relative_path : resolved_path;
|
D | bench-realpath.js | 7 const relative_path = path.relative(__dirname, '../../lib/'); constant 27 fs.realpath(relative_path, () => {
|
/third_party/mesa3d/src/gtest/src/ |
D | gtest-filepath.cc | 196 const FilePath& relative_path) { in ConcatPaths() argument 198 return relative_path; in ConcatPaths() 200 return FilePath(dir.string() + kPathSeparator + relative_path.string()); in ConcatPaths()
|
/third_party/googletest/googletest/src/ |
D | gtest-filepath.cc | 197 const FilePath& relative_path) { in ConcatPaths() argument 199 return relative_path; in ConcatPaths() 201 return FilePath(dir.string() + kPathSeparator + relative_path.string()); in ConcatPaths()
|
/third_party/googletest/googletest/test/ |
D | googletest-options-test.cc | 57 FilePath GetAbsolutePathOf(const FilePath& relative_path) { in GetAbsolutePathOf() argument 58 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path); in GetAbsolutePathOf()
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | xcodeproj_file.py | 2119 relative_path = path_tree_match.group(3) 2120 if relative_path is None: 2121 relative_path = "" 2156 relative_path = path_tree_match.group(6) 2161 if relative_path is None: 2162 relative_path = "" 2165 relative_path = ( 2168 + relative_path 2174 relative_path = path_tree_match.group(3) 2181 relative_path = path [all …]
|
D | MSVSNew.py | 268 relative_path = gyp.common.RelativePath(e.path, sln_root) 271 folder_name = relative_path.replace("/", "\\") or "."
|
D | xcode_ninja.py | 276 relative_path = os.path.dirname(main_gyp) 278 os.path.relpath(os.path.join(base, file), relative_path) for file in files
|
/third_party/jerryscript/targets/curie_bsp/ |
D | setup.py | 64 relative_path = os.path.relpath(file_path, root_dir) 65 matches.append(relative_path)
|
/third_party/flutter/skia/third_party/externals/angle2/scripts/ |
D | run_code_generation.py | 37 def rebase_script_path(script_path, relative_path): argument 38 return os.path.relpath(os.path.join(os.path.dirname(script_path), relative_path), root_dir)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | xcode_ninja.py | 242 relative_path = os.path.dirname(main_gyp) 243 sources += [ os.path.relpath(os.path.join(base, file), relative_path)
|
D | MSVSNew.py | 247 relative_path = gyp.common.RelativePath(e.path, sln_root) 250 folder_name = relative_path.replace('/', '\\') or '.'
|
/third_party/skia/third_party/externals/angle2/scripts/ |
D | run_code_generation.py | 37 def rebase_script_path(script_path, relative_path): argument 38 return os.path.relpath(os.path.join(os.path.dirname(script_path), relative_path), root_dir)
|
/third_party/ltp/testcases/kernel/mce-test/lib/ |
D | functions.sh | 21 relative_path() function
|