Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp1985 StringRef s1StrRef = s1StrLiteral->getString(); in evalStrcmpCommon() local
1996 s1StrRef = s1StrRef.substr(0, (size_t)len->getZExtValue()); in evalStrcmpCommon()
2007 size_t s1Term = s1StrRef.find('\0'); in evalStrcmpCommon()
2009 s1StrRef = s1StrRef.substr(0, s1Term); in evalStrcmpCommon()
2016 int compareRes = ignoreCase ? s1StrRef.compare_lower(s2StrRef) in evalStrcmpCommon()
2017 : s1StrRef.compare(s2StrRef); in evalStrcmpCommon()