Home
last modified time | relevance | path

Searched refs:CreateFromHere (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/base/
Dlocation.h71 static Location CreateFromHere(const char* file_name);
72 static Location CreateFromHere(const char* function_name,
91 ::base::Location::CreateFromHere(function_name, __FILE__, __LINE__)
96 #define FROM_HERE ::base::Location::CreateFromHere(__FILE__)
98 ::base::Location::CreateFromHere(function_name, __FILE__, -1)
Dlocation.cc61 NOINLINE Location Location::CreateFromHere(const char* file_name) { in CreateFromHere() function in base::Location
66 NOINLINE Location Location::CreateFromHere(const char* function_name, in CreateFromHere() function in base::Location
/external/openscreen/platform/base/
Dlocation.h48 static Location CreateFromHere();
56 #define CURRENT_LOCATION ::openscreen::Location::CreateFromHere()
Dlocation.cc41 OSP_NOINLINE Location Location::CreateFromHere() { in CreateFromHere() function in openscreen::Location
Dlocation_unittest.cc29 const Location loc_from_here = openscreen::Location::CreateFromHere(); in TEST()