Home
last modified time | relevance | path

Searched refs:isSeparator (Results 1 – 4 of 4) sorted by relevance

/freebsd-head/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
HDflags_parser.cpp51 static bool isSeparator(char C) { in isSeparator() function
56 static bool isSeparatorOrNull(char C) { return !C || isSeparator(C); } in isSeparatorOrNull()
59 while (isSeparator(Buffer[Pos])) in skipWhitespace()
/freebsd-head/contrib/llvm-project/libcxx/src/filesystem/
HDpath_parser.h22 inline bool isSeparator(path::value_type C) { in isSeparator() function
260 if (P == nullptr || P == End || !isSeparator(*P)) in consumeAllSeparators()
264 while (P != End && isSeparator(*P)) in consumeAllSeparators()
286 if (P == nullptr || P == End || isSeparator(*P)) in consumeName()
290 while (P != End && !isSeparator(*P)) in consumeName()
HDpath.cpp66 if (NextCh && isSeparator(*NextCh)) { in __root_path_raw()
/freebsd-head/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
HDoptions_parser.cpp73 bool isSeparator(char C) { in isSeparator() function
78 bool isSeparatorOrNull(char C) { return !C || isSeparator(C); } in isSeparatorOrNull()
81 while (isSeparator(Buffer[Pos])) in skipWhitespace()