Searched defs:DumpObjectType (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dinspector.cc41 void Inspector::DumpObjectType(FILE* out, Object* obj, bool print_more) { function in class:v8::internal::Inspector
H A Dinspector.h44 static void DumpObjectType(FILE* out, Object* obj, bool print_more);
45 static void DumpObjectType(FILE* out, Object* obj) { function in class:v8::internal::Inspector
46 DumpObjectType(out, obj, false);
48 static void DumpObjectType(Object* obj, bool print_more) { function in class:v8::internal::Inspector
49 DumpObjectType(stdout, obj, print_more);
51 static void DumpObjectType(Object* obj) { function in class:v8::internal::Inspector
52 DumpObjectType(stdout, obj, false);

Completed in 68 milliseconds