Home
last modified time | relevance | path

Searched refs:PrintTo (Results 1 – 25 of 53) sorted by relevance

123

/external/google-breakpad/src/testing/gtest/include/gtest/
Dgtest-printers.h353 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/
Dgtest-printers.h353 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/
Dgtest-printers.h353 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/
Dgtest-printers.h353 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/
Doperator.h90 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
Dschedule.cc56 bounds.lower->PrintTo(os); in operator <<()
59 bounds.upper->PrintTo(os); in operator <<()
Dsimplified-operator.cc42 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
Dnode.cc45 OStream& operator<<(OStream& os, const Operator& op) { return op.PrintTo(os); } in operator <<()
Dgraph-visualizer.cc190 bounds.upper->PrintTo(upper); in AnnotateNode()
192 bounds.lower->PrintTo(lower); in AnnotateNode()
Djs-operator.h203 static OStream& PrintTo(OStream& os, ContextAccess val) { // NOLINT
219 static OStream& PrintTo(OStream& os, Runtime::FunctionId val) { // NOLINT
/external/gtest/src/
Dgtest-printers.cc237 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/
Dgtest-printers.cc237 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/
Dgtest-printers.cc245 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/
Dgtest-printers.cc245 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/
Dlithium-mips64.cc45 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/
Dlithium-mips.cc45 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/
Dlithium-ia32.cc62 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/
Dlithium-x87.cc73 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/
Dlithium-arm.cc43 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/
Dlithium-x64.cc46 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/
Dlithium-arm64.cc53 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/
Dlithium.cc41 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()
Dtypes.cc1039 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/
Dgtest_list_tests_unittest_.cc90 void PrintTo(const MyType& x, std::ostream* os) { in PrintTo() function
/external/llvm/unittests/ProfileData/
DCoverageMappingTest.cpp32 void PrintTo(const Counter &C, ::std::ostream *os) { in PrintTo() function
41 void PrintTo(const CoverageSegment &S, ::std::ostream *os) { in PrintTo() function

123