Home | History | Annotate | Download | only in base

Lines Matching refs:location

18 // Location provides basic info where of an object was constructed, or was
20 class BASE_EXPORT Location {
25 Location(const char* function_name,
31 Location();
34 Location(const Location& other);
38 // identify this location.
39 bool operator==(const Location& other) const {
53 size_t operator()(const Location& location) const {
56 // identify this location.
60 // See the definition of FROM_HERE in location.h, and how it is used
62 return base::HashInts(reinterpret_cast<uintptr_t>(location.file_name()),
63 location.line_number());
84 // A "snapshotted" representation of the Location class that can safely be
89 explicit LocationSnapshot(const tracked_objects::Location& location);
99 // Define a macro to record the current source location.
103 ::tracked_objects::Location(function_name, \