Searched refs:dest_path (Results 1 – 8 of 8) sorted by relevance
/third_party/icu/tools/unicode/c/genprops/misc/ |
D | ucdcopy.py | 179 dest_path = os.path.join(dest_root, dest_folder) 180 if not os.path.exists(dest_path): os.makedirs(dest_path) 181 dest_file = os.path.join(dest_path, basename)
|
/third_party/flutter/engine/flutter/sky/tools/roll/ |
D | roll.py | 115 dest_path = os.path.join(dest_dir, f) 116 system(["mkdir", "-p", os.path.dirname(dest_path)], cwd=source_dir) 117 system(["cp", source_path, dest_path], cwd=source_dir)
|
/third_party/skia/third_party/externals/freetype/tests/scripts/ |
D | download-test-fonts.py | 112 def install_file(content: bytes, dest_path: str): 119 parent_path = os.path.dirname(dest_path) 123 with open(dest_path, "wb") as f:
|
/third_party/icu/tools/unicode/py/ |
D | preparseucd.py | 1440 dest_path = os.path.dirname(t) 1441 t = os.path.join(dest_path, "uts46.txt") 1684 dest_path = folder_to_path[dest_folder] 1685 if not os.path.exists(dest_path): os.makedirs(dest_path) 1690 dest_file = os.path.join(dest_path, dest_basename)
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
D | make.py | 2400 dest_path = os.path.dirname(makefile_path) 2401 gyp.common.CopyTool(flavor, dest_path)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
D | make.py | 2166 dest_path = os.path.dirname(makefile_path) 2167 gyp.common.CopyTool(flavor, dest_path)
|
/third_party/protobuf/src/google/protobuf/ |
D | descriptor.cc | 6538 std::vector<int> dest_path = options_path; in InterpretSingleOption() local 6608 dest_path.push_back(field->number()); in InterpretSingleOption() 6691 int index = repeated_option_counts_[dest_path]++; in InterpretSingleOption() 6692 dest_path.push_back(index); in InterpretSingleOption() 6694 interpreted_paths_[src_path] = dest_path; in InterpretSingleOption()
|
/third_party/python/Modules/ |
D | posixmodule.c | 8688 _joinW(WCHAR *dest_path, const WCHAR *root, const WCHAR *rest) in _joinW() argument 8691 return wcscpy_s(dest_path, MAX_PATH, rest); in _joinW() 8694 if (wcscpy_s(dest_path, MAX_PATH, root)) { in _joinW() 8698 if (dest_path[0] && wcscat_s(dest_path, MAX_PATH, L"\\")) { in _joinW() 8702 return wcscat_s(dest_path, MAX_PATH, rest); in _joinW()
|