HomeSort by relevance Sort by last modified time
    Searched refs:pc_offset_map_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/profiler/
profile-generator.h 28 bool empty() const { return pc_offset_map_.empty(); }
33 PcOffsetMap pc_offset_map_; member in class:v8::internal::JITLineInfoTable
profile-generator.cc 31 pc_offset_map_.insert(std::make_pair(pc_offset, line));
37 PcOffsetMap::const_iterator it = pc_offset_map_.lower_bound(pc_offset);
38 if (it == pc_offset_map_.end()) {
39 if (pc_offset_map_.empty()) return v8::CpuProfileNode::kNoLineNumberInfo;
40 return (--pc_offset_map_.end())->second;

Completed in 44 milliseconds