Home | History | Annotate | Download | only in base

Lines Matching refs:Location

11 #include "base/location.h"
17 Location::Location(const char* function_name,
27 Location::Location()
34 Location::Location(const Location& other)
41 std::string Location::ToString() const {
46 void Location::Write(bool display_filename, bool display_function_name,
58 void Location::WriteFunctionName(std::string* output) const {
83 const tracked_objects::Location& location)
84 : file_name(location.file_name()),
85 function_name(location.function_name()),
86 line_number(location.line_number()) {