Home | History | Annotate | Download | only in Support

Lines Matching full:is_separator

35   using llvm::sys::path::is_separator;
65 is_separator(path[0]) &&
67 !is_separator(path[2])) {
74 if (is_separator(path[0]))
90 is_separator(str[0]) &&
94 if (str.size() > 0 && is_separator(str[str.size() - 1]))
105 (pos == 1 && is_separator(str[0])))
116 is_separator(str[2]))
122 is_separator(str[0]) &&
128 is_separator(str[0]) &&
130 !is_separator(str[2])) {
135 if (str.size() > 0 && is_separator(str[0]))
144 bool filename_was_sep = path.size() > 0 && is_separator(path[end_pos]);
151 is_separator(path[end_pos - 1]))
273 is_separator(Component[0]) &&
275 !is_separator(Component[2]);
278 if (is_separator(Path[Position])) {
292 is_separator(Path[Position])) {
317 is_separator(Path[Position - 1])) {
328 is_separator(Path[end_pos - 1]))
356 bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
365 if ((++pos != e) && is_separator((*pos)[0])) {
375 if (is_separator((*b)[0])) {
387 bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
410 bool has_net = b->size() > 2 && is_separator((*b)[0]) && (*b)[1] == (*b)[0];
420 (++pos != e) && is_separator((*pos)[0])) {
425 if (!has_net && is_separator((*b)[0])) {
457 bool path_has_sep = !path.empty() && is_separator(path[path.size() - 1]);
458 bool component_has_sep = !i->empty() && is_separator((*i)[0]);
564 bool is_separator(char value) {