Home
last modified time | relevance | path

Searched refs:normalized_path (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/uvwasi/src/
Dpath_resolver.c37 char* normalized_path, in uvwasi__normalize_path() argument
50 normalized_path[0] = '\0'; in uvwasi__normalize_path()
51 ptr = normalized_path; in uvwasi__normalize_path()
57 if (ptr == normalized_path && next != NULL && is_absolute) { in uvwasi__normalize_path()
68 while (!IS_SLASH(*last) && last != normalized_path) { in uvwasi__normalize_path()
74 if (ptr == normalized_path || in uvwasi__normalize_path()
78 if (ptr != normalized_path && *(ptr - 1) != '/') { in uvwasi__normalize_path()
90 if (last == normalized_path && *last == '/') in uvwasi__normalize_path()
98 if (ptr != normalized_path && *(ptr - 1) != '/') { in uvwasi__normalize_path()
113 if (ptr == normalized_path) { in uvwasi__normalize_path()
[all …]
Dpath_resolver.h9 char* normalized_path,
Dfd_table.h17 char* normalized_path; member
Dfd_table.c169 entry->normalized_path = np_copy; in uvwasi_fd_table_insert()
/third_party/node/deps/v8/third_party/zlib/google/
Dzip_reader.cc270 std::u16string normalized_path; in Normalize() local
272 normalized_path = u"ROOT"; in Normalize()
291 if (!normalized_path.empty()) in Normalize()
292 normalized_path += u'/'; in Normalize()
295 normalized_path += u"DOT"; in Normalize()
301 normalized_path += u"UP"; in Normalize()
312 normalized_path += IsValidFileNameCharacterOnWindows(c) ? c : 0xFFFD; in Normalize()
320 if (entry_.is_directory && !normalized_path.empty()) { in Normalize()
321 normalized_path += u'/'; in Normalize()
325 entry_.path = base::FilePath::FromUTF16Unsafe(normalized_path); in Normalize()
/third_party/node/deps/zlib/google/
Dzip_reader.cc276 std::u16string normalized_path; in Normalize() local
278 normalized_path = u"ROOT"; in Normalize()
297 if (!normalized_path.empty()) in Normalize()
298 normalized_path += u'/'; in Normalize()
301 normalized_path += u"DOT"; in Normalize()
307 normalized_path += u"UP"; in Normalize()
318 normalized_path += IsValidFileNameCharacterOnWindows(c) ? c : 0xFFFD; in Normalize()
326 if (entry_.is_directory && !normalized_path.empty()) { in Normalize()
327 normalized_path += u'/'; in Normalize()
331 entry_.path = base::FilePath::FromUTF16Unsafe(normalized_path); in Normalize()
/third_party/jerryscript/tools/
Dsrcmerger.py67 normalized_path = repr(os.path.normpath(filename))[1:-1]
68 line_info = '#line %d "%s"\n' % (line_number, normalized_path)
/third_party/gn/src/base/files/
Dfile_util_posix.cc463 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) { in NormalizeFilePath() argument
473 *normalized_path = real_path_result; in NormalizeFilePath()
/third_party/node/tools/
Dtest.py843 normalized_path = abspath(path)
844 super(TestRepository, self).__init__(basename(normalized_path))
845 self.path = normalized_path