/third_party/googletest/googletest/include/gtest/ |
H A D | gtest-message.h | 105 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() 106 *ss_ << msg.GetString(); in Message() 110 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() 111 *ss_ << str; in Message() 132 *ss_ << val; in operator <<() 152 *ss_ << "(null)"; in operator <<() 154 *ss_ << pointer; in operator <<() 166 *ss_ << val; in operator <<() 192 const std::unique_ptr< ::std::stringstream> ss_; member in testing::Message
|
/third_party/mesa3d/src/gtest/include/gtest/ |
H A D | gtest-message.h | 101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() 102 *ss_ << msg.GetString(); in Message() 106 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() 107 *ss_ << str; in Message() 128 *ss_ << val; in operator <<() 148 *ss_ << "(null)"; in operator <<() 150 *ss_ << pointer; in operator <<() 162 *ss_ << val; in operator <<() 190 const std::unique_ptr< ::std::stringstream> ss_; member in testing::Message
|
/third_party/node/deps/googletest/include/gtest/ |
H A D | gtest-message.h | 112 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() 113 *ss_ << msg.GetString(); in Message() 117 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() 118 *ss_ << str; in Message() 148 *ss_ << val; in operator <<() 162 *ss_ << absl::StrCat(val); in operator <<() 183 *ss_ << "(null)"; in operator <<() 185 *ss_ << pointer; in operator <<() 197 *ss_ << val; in operator <<() 223 const std::unique_ptr< ::std::stringstream> ss_; member in testing::Message [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/ |
H A D | intel_gt_mcr.h | 55 #define _HAS_SS(ss_, gt_, group_, instance_) ( \ 57 intel_sseu_has_subslice(&(gt_)->info.sseu, 0, ss_) : \ 64 #define for_each_ss_steering(ss_, gt_, group_, instance_) \ 65 for (ss_ = 0, intel_gt_mcr_get_ss_steering(gt_, 0, &group_, &instance_); \ 66 ss_ < I915_MAX_SS_FUSE_BITS; \ 67 ss_++, intel_gt_mcr_get_ss_steering(gt_, ss_, &group_, &instance_)) \ 68 for_each_if(_HAS_SS(ss_, gt_, group_, instance_))
|
/third_party/gn/src/util/test/ |
H A D | test.h | 56 ~Message() { printf("%s\n\n", ss_.str().c_str()); } in ~Message() 60 ss_ << val; in operator <<() 65 std::stringstream ss_; member in testing::Message
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | symbol.c | 1777 struct symsrc ss_[2]; in dso__load() local 1853 struct symsrc *ss = &ss_[ss_pos]; in dso__load() 1942 symsrc__destroy(&ss_[ss_pos - 1]); in dso__load()
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | symbol.c | 1881 struct symsrc ss_[2]; in dso__load() local 1957 struct symsrc *ss = &ss_[ss_pos]; in dso__load() 2055 symsrc__destroy(&ss_[ss_pos - 1]); in dso__load()
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 306 StringMatchResultListener() : MatchResultListener(&ss_) {} in StringMatchResultListener() 309 std::string str() const { return ss_.str(); } in str() 312 void Clear() { ss_.str(""); } in Clear() 315 ::std::stringstream ss_; member in testing::StringMatchResultListener
|
/third_party/googletest/googletest/src/ |
H A D | gtest.cc | 1258 Message::Message() : ss_(new ::std::stringstream) { 1261 *ss_ << std::setprecision(std::numeric_limits<double>::digits10 + 2); 1285 return internal::StringStreamToString(ss_.get());
|
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest.cc | 964 Message::Message() : ss_(new ::std::stringstream) { in Message() 967 *ss_ << std::setprecision(std::numeric_limits<double>::digits10 + 2); in Message() 991 return internal::StringStreamToString(ss_.get()); in GetString()
|
/third_party/node/deps/googletest/src/ |
H A D | gtest.cc | 1275 Message::Message() : ss_(new ::std::stringstream) { 1278 *ss_ << std::setprecision(std::numeric_limits<double>::digits10 + 2); 1302 return internal::StringStreamToString(ss_.get());
|
/third_party/ffmpeg/libavcodec/ |
H A D | vp9block.c | 1326 if (s->ss_##dir2) { \ in ff_vp9_decode_block()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |