Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp2011 StringRef LeftStrRef = LeftStrLiteral->getString(); in evalStrcmpCommon() local
2022 LeftStrRef = LeftStrRef.substr(0, (size_t)len->getZExtValue()); in evalStrcmpCommon()
2033 size_t s1Term = LeftStrRef.find('\0'); in evalStrcmpCommon()
2035 LeftStrRef = LeftStrRef.substr(0, s1Term); in evalStrcmpCommon()
2042 int compareRes = IgnoreCase ? LeftStrRef.compare_lower(RightStrRef) in evalStrcmpCommon()
2043 : LeftStrRef.compare(RightStrRef); in evalStrcmpCommon()