Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp2361 StringRef LeftStrRef = LeftStrLiteral->getString(); in evalStrcmpCommon() local
2372 LeftStrRef = LeftStrRef.substr(0, (size_t)len->getZExtValue()); in evalStrcmpCommon()
2383 size_t s1Term = LeftStrRef.find('\0'); in evalStrcmpCommon()
2385 LeftStrRef = LeftStrRef.substr(0, s1Term); in evalStrcmpCommon()
2392 int compareRes = IgnoreCase ? LeftStrRef.compare_insensitive(RightStrRef) in evalStrcmpCommon()
2393 : LeftStrRef.compare(RightStrRef); in evalStrcmpCommon()