/external/google-breakpad/src/testing/gtest/include/gtest/ |
D | gtest-printers.h | 353 void PrintTo(const T& value, ::std::ostream* os) { in PrintTo() function 384 GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); 385 GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); 386 inline void PrintTo(char c, ::std::ostream* os) { in PrintTo() function 390 PrintTo(static_cast<unsigned char>(c), os); in PrintTo() 394 inline void PrintTo(bool x, ::std::ostream* os) { in PrintTo() function 405 GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); 408 GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); 409 inline void PrintTo(char* s, ::std::ostream* os) { in PrintTo() function 410 PrintTo(ImplicitCast_<const char*>(s), os); in PrintTo() [all …]
|
/external/mesa3d/src/gtest/include/gtest/ |
D | gtest-printers.h | 353 void PrintTo(const T& value, ::std::ostream* os) { in PrintTo() function 384 GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); 385 GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); 386 inline void PrintTo(char c, ::std::ostream* os) { in PrintTo() function 390 PrintTo(static_cast<unsigned char>(c), os); in PrintTo() 394 inline void PrintTo(bool x, ::std::ostream* os) { in PrintTo() function 405 GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); 408 GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); 409 inline void PrintTo(char* s, ::std::ostream* os) { in PrintTo() function 410 PrintTo(ImplicitCast_<const char*>(s), os); in PrintTo() [all …]
|
/external/llvm/utils/unittest/googletest/include/gtest/ |
D | gtest-printers.h | 353 void PrintTo(const T& value, ::std::ostream* os) { in PrintTo() function 384 GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); 385 GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); 386 inline void PrintTo(char c, ::std::ostream* os) { in PrintTo() function 390 PrintTo(static_cast<unsigned char>(c), os); in PrintTo() 394 inline void PrintTo(bool x, ::std::ostream* os) { in PrintTo() function 405 GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); 408 GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); 409 inline void PrintTo(char* s, ::std::ostream* os) { in PrintTo() function 410 PrintTo(ImplicitCast_<const char*>(s), os); in PrintTo() [all …]
|
/external/gtest/include/gtest/ |
D | gtest-printers.h | 353 void PrintTo(const T& value, ::std::ostream* os) { in PrintTo() function 384 GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); 385 GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); 386 inline void PrintTo(char c, ::std::ostream* os) { in PrintTo() function 390 PrintTo(static_cast<unsigned char>(c), os); in PrintTo() 394 inline void PrintTo(bool x, ::std::ostream* os) { in PrintTo() function 405 GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); 408 GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); 409 inline void PrintTo(char* s, ::std::ostream* os) { in PrintTo() function 410 PrintTo(ImplicitCast_<const char*>(s), os); in PrintTo() [all …]
|
/external/v8/src/compiler/ |
D | operator.h | 90 virtual OStream& PrintTo(OStream& os) const = 0; // NOLINT 122 virtual OStream& PrintTo(OStream& os) const FINAL { // NOLINT in PrintTo() function 136 static OStream& PrintTo(OStream& os, T val) { // NOLINT in PrintTo() function 148 static OStream& PrintTo(OStream& os, int val) { // NOLINT 158 static OStream& PrintTo(OStream& os, double val) { // NOLINT 172 static OStream& PrintTo(OStream& os, Unique<Object> val) { // NOLINT 184 static OStream& PrintTo(OStream& os, Unique<Name> val) { // NOLINT 196 static OStream& PrintTo(OStream& os, Handle<Object> val) { // NOLINT 237 return StaticParameterTraits<T>::PrintTo(os << "[", parameter_) << "]"; 241 virtual OStream& PrintTo(OStream& os) const FINAL { // NOLINT
|
D | schedule.cc | 56 bounds.lower->PrintTo(os); in operator <<() 59 bounds.upper->PrintTo(os); in operator <<()
|
D | simplified-operator.cc | 42 access.type->PrintTo(os); in operator <<() 67 static OStream& PrintTo(OStream& os, const FieldAccess& val) { in PrintTo() function 84 static OStream& PrintTo(OStream& os, const ElementAccess& access) { in PrintTo() function
|
D | node.cc | 45 OStream& operator<<(OStream& os, const Operator& op) { return op.PrintTo(os); } in operator <<()
|
D | graph-visualizer.cc | 190 bounds.upper->PrintTo(upper); in AnnotateNode() 192 bounds.lower->PrintTo(lower); in AnnotateNode()
|
D | js-operator.h | 203 static OStream& PrintTo(OStream& os, ContextAccess val) { // NOLINT 219 static OStream& PrintTo(OStream& os, Runtime::FunctionId val) { // NOLINT
|
/external/gtest/src/ |
D | gtest-printers.cc | 237 void PrintTo(unsigned char c, ::std::ostream* os) { in PrintTo() function 240 void PrintTo(signed char c, ::std::ostream* os) { in PrintTo() function 246 void PrintTo(wchar_t wc, ostream* os) { in PrintTo() function 310 void PrintTo(const char* s, ostream* os) { in PrintTo() function 327 void PrintTo(const wchar_t* s, ostream* os) { in PrintTo() function
|
/external/google-breakpad/src/testing/gtest/src/ |
D | gtest-printers.cc | 237 void PrintTo(unsigned char c, ::std::ostream* os) { in PrintTo() function 240 void PrintTo(signed char c, ::std::ostream* os) { in PrintTo() function 246 void PrintTo(wchar_t wc, ostream* os) { in PrintTo() function 295 void PrintTo(const char* s, ostream* os) { in PrintTo() function 312 void PrintTo(const wchar_t* s, ostream* os) { in PrintTo() function
|
/external/mesa3d/src/gtest/src/ |
D | gtest-printers.cc | 245 void PrintTo(unsigned char c, ::std::ostream* os) { in PrintTo() function 248 void PrintTo(signed char c, ::std::ostream* os) { in PrintTo() function 254 void PrintTo(wchar_t wc, ostream* os) { in PrintTo() function 303 void PrintTo(const char* s, ostream* os) { in PrintTo() function 320 void PrintTo(const wchar_t* s, ostream* os) { in PrintTo() function
|
/external/llvm/utils/unittest/googletest/src/ |
D | gtest-printers.cc | 245 void PrintTo(unsigned char c, ::std::ostream* os) { in PrintTo() function 248 void PrintTo(signed char c, ::std::ostream* os) { in PrintTo() function 254 void PrintTo(wchar_t wc, ostream* os) { in PrintTo() function 303 void PrintTo(const char* s, ostream* os) { in PrintTo() function 320 void PrintTo(const wchar_t* s, ostream* os) { in PrintTo() function
|
/external/v8/src/mips64/ |
D | lithium-mips64.cc | 45 void LInstruction::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LInstruction 54 environment()->PrintTo(stream); in PrintTo() 59 pointer_map()->PrintTo(stream); in PrintTo() 71 InputAt(i)->PrintTo(stream); in PrintDataTo() 78 if (HasResult()) result()->PrintTo(stream); in PrintOutputOperandTo() 160 value()->PrintTo(stream); in PrintDataTo() 171 left()->PrintTo(stream); in PrintDataTo() 173 right()->PrintTo(stream); in PrintDataTo() 180 value()->PrintTo(stream); in PrintDataTo() 187 value()->PrintTo(stream); in PrintDataTo() [all …]
|
/external/v8/src/mips/ |
D | lithium-mips.cc | 45 void LInstruction::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LInstruction 54 environment()->PrintTo(stream); in PrintTo() 59 pointer_map()->PrintTo(stream); in PrintTo() 71 InputAt(i)->PrintTo(stream); in PrintDataTo() 78 if (HasResult()) result()->PrintTo(stream); in PrintOutputOperandTo() 160 value()->PrintTo(stream); in PrintDataTo() 171 left()->PrintTo(stream); in PrintDataTo() 173 right()->PrintTo(stream); in PrintDataTo() 180 value()->PrintTo(stream); in PrintDataTo() 187 value()->PrintTo(stream); in PrintDataTo() [all …]
|
/external/v8/src/ia32/ |
D | lithium-ia32.cc | 62 void LInstruction::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LInstruction 71 environment()->PrintTo(stream); in PrintTo() 76 pointer_map()->PrintTo(stream); in PrintTo() 88 InputAt(i)->PrintTo(stream); in PrintDataTo() 95 if (HasResult()) result()->PrintTo(stream); in PrintOutputOperandTo() 177 value()->PrintTo(stream); in PrintDataTo() 183 left()->PrintTo(stream); in PrintDataTo() 185 right()->PrintTo(stream); in PrintDataTo() 192 value()->PrintTo(stream); in PrintDataTo() 199 value()->PrintTo(stream); in PrintDataTo() [all …]
|
/external/v8/src/x87/ |
D | lithium-x87.cc | 73 void LInstruction::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LInstruction 82 environment()->PrintTo(stream); in PrintTo() 87 pointer_map()->PrintTo(stream); in PrintTo() 99 InputAt(i)->PrintTo(stream); in PrintDataTo() 106 if (HasResult()) result()->PrintTo(stream); in PrintOutputOperandTo() 188 value()->PrintTo(stream); in PrintDataTo() 194 left()->PrintTo(stream); in PrintDataTo() 196 right()->PrintTo(stream); in PrintDataTo() 203 value()->PrintTo(stream); in PrintDataTo() 210 value()->PrintTo(stream); in PrintDataTo() [all …]
|
/external/v8/src/arm/ |
D | lithium-arm.cc | 43 void LInstruction::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LInstruction 52 environment()->PrintTo(stream); in PrintTo() 57 pointer_map()->PrintTo(stream); in PrintTo() 69 InputAt(i)->PrintTo(stream); in PrintDataTo() 76 if (HasResult()) result()->PrintTo(stream); in PrintOutputOperandTo() 158 value()->PrintTo(stream); in PrintDataTo() 164 left()->PrintTo(stream); in PrintDataTo() 166 right()->PrintTo(stream); in PrintDataTo() 173 value()->PrintTo(stream); in PrintDataTo() 180 value()->PrintTo(stream); in PrintDataTo() [all …]
|
/external/v8/src/x64/ |
D | lithium-x64.cc | 46 void LInstruction::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LInstruction 55 environment()->PrintTo(stream); in PrintTo() 60 pointer_map()->PrintTo(stream); in PrintTo() 72 InputAt(i)->PrintTo(stream); in PrintDataTo() 79 if (HasResult()) result()->PrintTo(stream); in PrintOutputOperandTo() 171 value()->PrintTo(stream); in PrintDataTo() 177 left()->PrintTo(stream); in PrintDataTo() 179 right()->PrintTo(stream); in PrintDataTo() 186 value()->PrintTo(stream); in PrintDataTo() 193 value()->PrintTo(stream); in PrintDataTo() [all …]
|
/external/v8/src/arm64/ |
D | lithium-arm64.cc | 53 arguments()->PrintTo(stream); in PrintDataTo() 55 length()->PrintTo(stream); in PrintDataTo() 57 index()->PrintTo(stream); in PrintDataTo() 63 value()->PrintTo(stream); in PrintDataTo() 69 function()->PrintTo(stream); in PrintDataTo() 76 InputAt(i)->PrintTo(stream); in PrintDataTo() 85 constructor()->PrintTo(stream); in PrintDataTo() 92 constructor()->PrintTo(stream); in PrintDataTo() 101 value()->PrintTo(stream); in PrintDataTo() 111 left()->PrintTo(stream); in PrintDataTo() [all …]
|
/external/v8/src/ |
D | lithium.cc | 41 void LOperand::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LOperand 184 destination->PrintTo(stream); in PrintDataTo() 186 destination->PrintTo(stream); in PrintDataTo() 188 source->PrintTo(stream); in PrintDataTo() 196 void LEnvironment::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LEnvironment 208 values_[i]->PrintTo(stream); in PrintTo() 244 void LPointerMap::PrintTo(StringStream* stream) { in PrintTo() function in v8::internal::LPointerMap 248 pointer_operands_[i]->PrintTo(stream); in PrintTo()
|
D | types.cc | 1039 void TypeImpl<Config>::PrintTo(OStream& os, PrintDimension dim) { // NOLINT in PrintTo() function in v8::internal::TypeImpl 1046 BitsetType::New(BitsetType::Lub(this))->PrintTo(os, dim); in PrintTo() 1056 this->AsContext()->Outer()->PrintTo(os, dim); in PrintTo() 1064 type_i->PrintTo(os, dim); in PrintTo() 1069 AsArray()->Element()->PrintTo(os, dim); in PrintTo() 1073 this->AsFunction()->Receiver()->PrintTo(os, dim); in PrintTo() 1079 this->AsFunction()->Parameter(i)->PrintTo(os, dim); in PrintTo() 1082 this->AsFunction()->Result()->PrintTo(os, dim); in PrintTo() 1098 PrintTo(os); in Print()
|
/external/gtest/test/ |
D | gtest_list_tests_unittest_.cc | 90 void PrintTo(const MyType& x, std::ostream* os) { in PrintTo() function
|
/external/llvm/unittests/ProfileData/ |
D | CoverageMappingTest.cpp | 32 void PrintTo(const Counter &C, ::std::ostream *os) { in PrintTo() function 41 void PrintTo(const CoverageSegment &S, ::std::ostream *os) { in PrintTo() function
|