Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DDisasm.cpp168 std::string VStr; in dump() local
169 llvm::raw_string_ostream SS(VStr); in dump()
172 for (unsigned I = 0; I != VStr.size(); ++I) { in dump()
173 if (VStr[I] == '\n') in dump()
174 VStr[I] = ' '; in dump()
176 VStr.pop_back(); // Remove the newline (or now space) at the end. in dump()
177 OS << VStr; in dump()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp194 const char *VStr = (char *)V + ItemSize; in RemoveKey() local
195 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); in RemoveKey()