Lines Matching defs:location
56 bool operator==(const JSPtLocation &location) const
58 return methodId_ == location.methodId_ && bytecodeOffset_ == location.bytecodeOffset_ &&
59 jsPandaFile_ == location.jsPandaFile_;
64 std::stringstream location;
65 location << "[";
66 location << "methodId:" << methodId_ << ", ";
67 location << "bytecodeOffset:" << bytecodeOffset_ << ", ";
68 location << "sourceFile:" << "\""<< sourceFile_ << "\""<< ", ";
69 location << "jsPandaFile:" << "\"" << jsPandaFile_->GetJSPandaFileDesc() << "\"";
70 location << "]";
71 return location.str();