Home | History | Annotate | Download | only in base

Lines Matching refs:Location

16 Location::Location(const char* function_name, const char* file_name,
23 Location::Location()
29 void Location::Write(bool display_filename, bool display_function_name,
41 void Location::WriteFunctionName(std::string* output) const {
67 void Tracked::SetBirthPlace(const Location& from_here) {}
68 const Location Tracked::GetBirthPlace() const {
69 static Location kNone("NoFunctionName", "NeedToSetBirthPlace", -1);
82 SetBirthPlace(Location("NoFunctionName", "NeedToSetBirthPlace", -1));
92 void Tracked::SetBirthPlace(const Location& from_here) {
103 const Location Tracked::GetBirthPlace() const {
104 return tracked_births_->location();
112 return -1 == tracked_births_->location().line_number();