Lines Matching refs:string
34 #include <string>
44 using ::std::string;
48 LocalLogBuffer::FunctionLog::FunctionLog(string funcName) : mName(funcName) {
60 void LocalLogBuffer::FunctionLog::addArg(string kw, string arg) {
65 void LocalLogBuffer::FunctionLog::addArg(string kw, vector<string> args) {
76 void LocalLogBuffer::FunctionLog::addArg(string kw, uint64_t arg) {
89 void LocalLogBuffer::FunctionLog::setResult(bool success, string msg) {
108 string LocalLogBuffer::FunctionLog::toString() {
114 LocalLogBuffer::LocalLogBuffer(string name, int maxLogs) : mName(name),
131 string line = mName + " " + mLogs[i].toString();