Lines Matching refs:time
613 void V8ConsoleMessageStorage::time(int contextId, const String16& id) {
626 std::map<String16, double>& time = m_data[contextId].m_time;
627 auto it = time.find(id);
628 if (it == time.end()) return 0.0;
633 std::map<String16, double>& time = m_data[contextId].m_time;
634 auto it = time.find(id);
635 if (it == time.end()) return 0.0;
637 time.erase(it);
642 const std::map<String16, double>& time = m_data[contextId].m_time;
643 return time.find(id) != time.end();