Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp2214 StringRef RightStrRef = RightStrLiteral->getString(); in evalStrcmpCommon() local
2225 RightStrRef = RightStrRef.substr(0, (size_t)len->getZExtValue()); in evalStrcmpCommon()
2239 size_t s2Term = RightStrRef.find('\0'); in evalStrcmpCommon()
2241 RightStrRef = RightStrRef.substr(0, s2Term); in evalStrcmpCommon()
2244 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
2245 : LeftStrRef.compare(RightStrRef); in evalStrcmpCommon()