Lines Matching defs:tmp
80 auto tmp = std::chrono::duration_cast<std::chrono::milliseconds>(timeNow.time_since_epoch());
81 return tmp.count();
116 size_t tmp = 0;
118 tmp = str.find(item);
119 if (str.npos != tmp) {
120 pos = (std::min)(pos, tmp);
445 std::string tmp;
446 while (std::getline(cfgFile, tmp)) {
447 RemoveSpace(tmp);
448 size_t pos = tmp.find('#');
449 if (pos != tmp.npos && pos != COMMENT_SUBSCRIPT) {
454 if (tmp.empty() || tmp.front() == '#') {
457 pos = tmp.find('=');
458 if ((pos == std::string::npos) || (tmp.back() == '=')) {
463 std::string configItem = tmp.substr(0, pos);
464 std::string value = tmp.substr(pos + 1);