Searched refs:is_separator (Results 1 - 14 of 14) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Path.cpp | 36 using llvm::sys::path::is_separator; 77 if ((path.size() > 2) && is_separator(path[0], style) && in find_first_component() 78 path[0] == path[1] && !is_separator(path[2], style)) { in find_first_component() 85 if (is_separator(path[0], style)) in find_first_component() 96 if (str.size() > 0 && is_separator(str[str.size() - 1], style)) in filename_pos() 106 if (pos == StringRef::npos || (pos == 1 && is_separator(str[0], style))) in filename_pos() 117 if (str.size() > 2 && str[1] == ':' && is_separator(str[2], style)) in root_dir_start() 122 if (str.size() > 3 && is_separator(str[0], style) && str[0] == str[1] && in root_dir_start() 123 !is_separator(str[2], style)) { in root_dir_start() 128 if (str.size() > 0 && is_separator(st in root_dir_start() [all...] |
H A D | VirtualFileSystem.cpp | 1464 sys::path::is_separator(Trimmed.back(), path_style)) in parseEntry()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | Path.cpp | 36 using llvm::sys::path::is_separator; 65 is_separator(path[0]) && in find_first_component() 67 !is_separator(path[2])) { in find_first_component() 74 if (is_separator(path[0])) in find_first_component() 84 is_separator(str[0]) && in filename_pos() 88 if (str.size() > 0 && is_separator(str[str.size() - 1])) in filename_pos() 99 (pos == 1 && is_separator(str[0]))) in filename_pos() 110 is_separator(str[2])) in root_dir_start() 116 is_separator(str[0]) && in root_dir_start() 122 is_separator(st in root_dir_start() [all...] |
/third_party/protobuf/src/google/protobuf/io/ |
H A D | io_win32.cc | 120 bool is_separator(char_type c) { in is_separator() function 127 return has_drive_letter(path) && is_separator(path[2]); in is_path_absolute() 132 return has_drive_letter(path) && (path[2] == 0 || !is_separator(path[2])); in is_drive_relative() 144 if (is_separator(path1[path1.size() - 1])) { in join_paths() 145 return is_separator(path2[0]) ? (path1 + path2.substr(1)) in join_paths() 148 return is_separator(path2[0]) ? (path1 + path2) in join_paths() 166 if (!is_separator(p[i]) && p[i] != L'\0') { in normalize() 209 if (!path.empty() && is_separator(p[path.size() - 1])) { in normalize() 228 if (is_separator(path[0]) || is_drive_relative(path)) { in as_windows_path()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
H A D | DebugUtils.cpp | 26 sys::path::is_separator(this->DumpDir.back())) in DumpObjects()
|
/third_party/rust/crates/glob/src/ |
H A D | lib.rs | 240 pattern[cmp::min(root_len, pattern.len())..].split_terminator(path::is_separator); in glob_with() 254 let last_is_separator = pattern.chars().next_back().map(path::is_separator); in glob_with() 575 let is_valid = if i == 2 || path::is_separator(chars[i - count - 1]) { in new() 577 if i < chars.len() && path::is_separator(chars[i]) { in new() 748 follows_separator = path::is_separator(c); in matches_from() 775 let is_sep = path::is_separator(c); in matches_from() 961 if cfg!(windows) && path::is_separator(a) && path::is_separator(b) { in chars_eq()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Path.h | 323 bool is_separator(char value);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Path.h | 356 bool is_separator(char value, Style style = Style::native);
|
/third_party/curl/lib/vtls/ |
H A D | bearssl.c | 492 static bool is_separator(char c) in is_separator() function 524 while(is_separator(*cipher_start)) in bearssl_set_selected_ciphers() 529 while(*cipher_end && !is_separator(*cipher_end)) in bearssl_set_selected_ciphers()
|
H A D | sectransp.c | 1456 static bool is_separator(char c) in is_separator() function 1550 while(is_separator(*ciphers)) /* Skip initial separators. */ in sectransp_set_selected_ciphers() 1564 while(is_separator(*cipher_start)) in sectransp_set_selected_ciphers() 1571 while(*cipher_end != '\0' && !is_separator(*cipher_end)) { in sectransp_set_selected_ciphers()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCContext.cpp | 639 if (llvm::sys::path::is_separator(FileName.front())) in setGenDwarfRootFile()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
H A D | InstrProf.cpp | 230 if (llvm::sys::path::is_separator(CI)) { in stripDirPrefix()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_widgets.cpp | 2919 static bool is_separator(unsigned int c) { return ImCharIsBlankW(c) || c==',' || c==';' || c=='(' || c==')' || c=='{' || c=='}' || c=='[' || c==']' || c=='|'; } 2920 static int is_word_boundary_from_right(STB_TEXTEDIT_STRING* obj, int idx) { return idx > 0 ? (is_separator( obj->TextW[idx-1] ) && !is_separator( obj->TextW[idx] ) ) : 1; } 2923 static int is_word_boundary_from_left(STB_TEXTEDIT_STRING* obj, int idx) { return idx > 0 ? (!is_separator( obj->TextW[idx-1] ) && is_separator( obj->TextW[idx] ) ) : 1; }
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 3682 static bool is_separator(unsigned int c) { return ImCharIsBlankW(c) || c==',' || c==';' || c=='(' || c==')' || c=='{' || c=='}' || c=='[' || c==']' || c=='|'; } 3683 static int is_word_boundary_from_right(ImGuiInputTextState* obj, int idx) { if (obj->Flags & ImGuiInputTextFlags_Password) return 0; return idx > 0 ? (is_separator(obj->TextW[idx - 1]) && !is_separator(obj->TextW[idx]) ) : 1; } 3686 static int is_word_boundary_from_left(ImGuiInputTextState* obj, int idx) { if (obj->Flags & ImGuiInputTextFlags_Password) return 0; return idx > 0 ? (!is_separator(obj->TextW[idx - 1]) && is_separator(obj->TextW[idx]) ) : 1; } in is_word_boundary_from_left()
|
Completed in 39 milliseconds