Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp2213 StringRef LeftStrRef = LeftStrLiteral->getString(); in evalStrcmpCommon() local
2224 LeftStrRef = LeftStrRef.substr(0, (size_t)len->getZExtValue()); in evalStrcmpCommon()
2235 size_t s1Term = LeftStrRef.find('\0'); in evalStrcmpCommon()
2237 LeftStrRef = LeftStrRef.substr(0, s1Term); in evalStrcmpCommon()
2244 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
2245 : LeftStrRef.compare(RightStrRef); in evalStrcmpCommon()