Home
last modified time | relevance | path

Searched refs:PrefixEnd (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c1051 const char *Filename, *PrefixEnd; in __llvm_profile_get_path_prefix() local
1062 PrefixEnd = lprofFindLastDirSeparator(Filename); in __llvm_profile_get_path_prefix()
1063 if (!PrefixEnd) in __llvm_profile_get_path_prefix()
1066 Length = PrefixEnd - Filename + 1; in __llvm_profile_get_path_prefix()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp236 auto PrefixIt = path::begin(Prefix), PrefixEnd = path::end(Prefix); in isPathInStableDir() local
238 PrefixIt != PrefixEnd && PathIt != PathEnd; ++PrefixIt, ++PathIt) { in isPathInStableDir()
242 return PrefixIt == PrefixEnd; in isPathInStableDir()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp2298 const char *PrefixEnd = &CurPtr[PrefixLen]; in LexRawStringLiteral() local
2300 Diag(PrefixEnd, diag::err_raw_delim_too_long); in LexRawStringLiteral()
2301 } else if (*PrefixEnd == '\n') { in LexRawStringLiteral()
2302 Diag(PrefixEnd, diag::err_invalid_newline_raw_delim); in LexRawStringLiteral()
2304 Diag(PrefixEnd, diag::err_invalid_char_raw_delim) in LexRawStringLiteral()
2305 << StringRef(PrefixEnd, 1); in LexRawStringLiteral()