/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
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(str[0]) && in root_dir_start() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
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(str[0], style)) in root_dir_start() [all …]
|
D | VirtualFileSystem.cpp | 1464 sys::path::is_separator(Trimmed.back(), path_style)) in parseEntry()
|
/third_party/protobuf/src/google/protobuf/io/ |
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/boost/libs/regex/src/ |
D | c_regex_traits.cpp | 176 … (std::isspace)(static_cast<unsigned char>(c)) && !::boost::BOOST_REGEX_DETAIL_NS::is_separator(c)) in isctype() 178 …|| ((mask & char_class_vertical) && (::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) || (c == '\v'… in isctype() 179 …e)(static_cast<unsigned char>(c)) && !::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) && (c != '\v… in isctype()
|
D | wc_regex_traits.cpp | 216 …mask & char_class_blank) && (std::iswspace)(c) && !::boost::BOOST_REGEX_DETAIL_NS::is_separator(c)) in isctype() 219 …|| ((mask & char_class_vertical) && (::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) || (c == L'\v… in isctype() 220 …horizontal) && (std::iswspace)(c) && !::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) && (c != L'\… in isctype()
|
D | icu.cpp | 502 …if(((f & mask_vertical) != 0) && (::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) || (c == static_… in isctype() 504 …if(((f & mask_horizontal) != 0) && !::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) && u_isspace(c… in isctype()
|
/third_party/boost/boost/regex/v4/ |
D | perl_matcher_common.hpp | 420 …if(is_separator(*t) && !((*t == static_cast<char_type>('\r')) && (*position == static_cast<char_ty… in match_start_line() 426 else if(is_separator(*t)) in match_start_line() 442 if(is_separator(*position)) in match_end_line() 471 if(is_separator(*position) && ((match_any_mask & static_cast<const re_dot*>(pstate)->mask) == 0)) in match_wild() 707 while((p != last) && is_separator(traits_inst.translate(*p, icase)))++p; in match_soft_buffer_end() 913 while((position != last) && !is_separator(*position)) in find_restart_line()
|
D | regex_traits_defaults.hpp | 122 inline bool is_separator(charT c) in is_separator() function 133 inline bool is_separator<char>(char c) in is_separator() function
|
D | cpp_regex_traits.hpp | 893 …is->m_pctype->is(std::ctype<charT>::space, c)) && !::boost::BOOST_REGEX_DETAIL_NS::is_separator(c)) in isctype() 896 …|| ((mask & ::boost::BOOST_REGEX_DETAIL_NS::char_class_vertical_space) && (is_separator(c) || (c =… in isctype() 897 …zontal_space) && this->m_pctype->is(std::ctype<charT>::space, c) && !(is_separator(c) || (c == '\v… in isctype() 1005 && !BOOST_REGEX_DETAIL_NS::is_separator(c)) in isctype() 1008 && (::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) || (c == '\v'))) in isctype()
|
D | w32_regex_traits.hpp | 638 && (::boost::BOOST_REGEX_DETAIL_NS::is_separator(c) || (c == '\v'))) in isctype()
|
D | basic_regex_parser.hpp | 411 while((m_position != m_end) && !is_separator(*m_position++)){} in parse_extended()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | DebugUtils.cpp | 26 sys::path::is_separator(this->DumpDir.back())) in DumpObjects()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Path.h | 323 bool is_separator(char value);
|
/third_party/curl/lib/vtls/ |
D | gskit.c | 165 static bool is_separator(char c) in is_separator() function 326 while(is_separator(*cipherlist)) /* Skip initial separators. */ in set_ciphers() 351 for(clp = cipherlist; *cipherlist && !is_separator(*cipherlist);) in set_ciphers() 376 while(is_separator(*cipherlist)) in set_ciphers()
|
D | sectransp.c | 1476 static bool is_separator(char c) in is_separator() function 1570 while(is_separator(*ciphers)) /* Skip initial separators. */ in sectransp_set_selected_ciphers() 1583 while(is_separator(*cipher_start)) in sectransp_set_selected_ciphers() 1590 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/include/llvm/Support/ |
D | Path.h | 356 bool is_separator(char value, Style style = Style::native);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 52 static bool is_separator(const wchar_t value) { 106 if (I->size() == 1 && is_separator((*I)[0])) 954 !is_separator(PathUTF16[Path.size() - 1]) && 1297 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 50 static bool is_separator(const wchar_t value) { 627 !is_separator(path_utf16[path.size() - 1]) &&
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
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/ |
D | InstrProf.cpp | 230 if (llvm::sys::path::is_separator(CI)) { in stripDirPrefix()
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui_widgets.cpp | 2919 static bool is_separator(unsigned int c) { return ImCharIsBl… in is_separator() function 2920 …DIT_STRING* obj, int idx) { return idx > 0 ? (is_separator( obj->TextW[idx-1] ) && !is_separa… in is_word_boundary_from_right() 2923 …IT_STRING* obj, int idx) { return idx > 0 ? (!is_separator( obj->TextW[idx-1] ) && is_separa… in is_word_boundary_from_left()
|
/third_party/mesa3d/src/imgui/ |
D | imgui_widgets.cpp | 2919 static bool is_separator(unsigned int c) { return ImCharIsBl… in is_separator() function 2920 …DIT_STRING* obj, int idx) { return idx > 0 ? (is_separator( obj->TextW[idx-1] ) && !is_separa… in is_word_boundary_from_right() 2923 …IT_STRING* obj, int idx) { return idx > 0 ? (!is_separator( obj->TextW[idx-1] ) && is_separa… in is_word_boundary_from_left()
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_widgets.cpp | 3682 static bool is_separator(unsigned int c) { return ImCharIsBl… in is_separator() function 3683 …putTextFlags_Password) return 0; return idx > 0 ? (is_separator(obj->TextW[idx - 1]) && !is_separa… in is_word_boundary_from_right() 3686 …putTextFlags_Password) return 0; return idx > 0 ? (!is_separator(obj->TextW[idx - 1]) && is_separa… in is_word_boundary_from_left()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
D | Path.inc | 623 PathStr.take_until([](char c) { return path::is_separator(c); });
|