Lines Matching refs:t
213 tuple(const tuple& t) : f0_(t.f0_) {}
216 tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {}
218 tuple& operator=(const tuple& t) { return CopyFrom(t); }
221 tuple& operator=(const GTEST_1_TUPLE_(U)& t) {
222 return CopyFrom(t);
228 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) {
229 f0_ = t.f0_;
246 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {}
249 tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {}
253 tuple& operator=(const tuple& t) { return CopyFrom(t); }
256 tuple& operator=(const GTEST_2_TUPLE_(U)& t) {
257 return CopyFrom(t);
269 tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) {
270 f0_ = t.f0_;
271 f1_ = t.f1_;
289 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {}
292 tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {}
294 tuple& operator=(const tuple& t) { return CopyFrom(t); }
297 tuple& operator=(const GTEST_3_TUPLE_(U)& t) {
298 return CopyFrom(t);
304 tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) {
305 f0_ = t.f0_;
306 f1_ = t.f1_;
307 f2_ = t.f2_;
327 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {}
330 tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
331 f3_(t.f3_) {}
333 tuple& operator=(const tuple& t) { return CopyFrom(t); }
336 tuple& operator=(const GTEST_4_TUPLE_(U)& t) {
337 return CopyFrom(t);
343 tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) {
344 f0_ = t.f0_;
345 f1_ = t.f1_;
346 f2_ = t.f2_;
347 f3_ = t.f3_;
368 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
369 f4_(t.f4_) {}
372 tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
373 f3_(t.f3_), f4_(t.f4_) {}
375 tuple& operator=(const tuple& t) { return CopyFrom(t); }
378 tuple& operator=(const GTEST_5_TUPLE_(U)& t) {
379 return CopyFrom(t);
385 tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) {
386 f0_ = t.f0_;
387 f1_ = t.f1_;
388 f2_ = t.f2_;
389 f3_ = t.f3_;
390 f4_ = t.f4_;
413 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
414 f4_(t.f4_), f5_(t.f5_) {}
417 tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
418 f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {}
420 tuple& operator=(const tuple& t) { return CopyFrom(t); }
423 tuple& operator=(const GTEST_6_TUPLE_(U)& t) {
424 return CopyFrom(t);
430 tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) {
431 f0_ = t.f0_;
432 f1_ = t.f1_;
433 f2_ = t.f2_;
434 f3_ = t.f3_;
435 f4_ = t.f4_;
436 f5_ = t.f5_;
460 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
461 f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {}
464 tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
465 f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {}
467 tuple& operator=(const tuple& t) { return CopyFrom(t); }
470 tuple& operator=(const GTEST_7_TUPLE_(U)& t) {
471 return CopyFrom(t);
477 tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) {
478 f0_ = t.f0_;
479 f1_ = t.f1_;
480 f2_ = t.f2_;
481 f3_ = t.f3_;
482 f4_ = t.f4_;
483 f5_ = t.f5_;
484 f6_ = t.f6_;
510 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
511 f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {}
514 tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
515 f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {}
517 tuple& operator=(const tuple& t) { return CopyFrom(t); }
520 tuple& operator=(const GTEST_8_TUPLE_(U)& t) {
521 return CopyFrom(t);
527 tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) {
528 f0_ = t.f0_;
529 f1_ = t.f1_;
530 f2_ = t.f2_;
531 f3_ = t.f3_;
532 f4_ = t.f4_;
533 f5_ = t.f5_;
534 f6_ = t.f6_;
535 f7_ = t.f7_;
562 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
563 f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {}
566 tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
567 f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {}
569 tuple& operator=(const tuple& t) { return CopyFrom(t); }
572 tuple& operator=(const GTEST_9_TUPLE_(U)& t) {
573 return CopyFrom(t);
579 tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) {
580 f0_ = t.f0_;
581 f1_ = t.f1_;
582 f2_ = t.f2_;
583 f3_ = t.f3_;
584 f4_ = t.f4_;
585 f5_ = t.f5_;
586 f6_ = t.f6_;
587 f7_ = t.f7_;
588 f8_ = t.f8_;
617 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_),
618 f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {}
621 tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_),
622 f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_),
623 f9_(t.f9_) {}
625 tuple& operator=(const tuple& t) { return CopyFrom(t); }
628 tuple& operator=(const GTEST_10_TUPLE_(U)& t) {
629 return CopyFrom(t);
635 tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) {
636 f0_ = t.f0_;
637 f1_ = t.f1_;
638 f2_ = t.f2_;
639 f3_ = t.f3_;
640 f4_ = t.f4_;
641 f5_ = t.f5_;
642 f6_ = t.f6_;
643 f7_ = t.f7_;
644 f8_ = t.f8_;
645 f9_ = t.f9_;
804 Field(Tuple& t) { return t.f0_; } // NOLINT
808 ConstField(const Tuple& t) { return t.f0_; }
816 Field(Tuple& t) { return t.f1_; } // NOLINT
820 ConstField(const Tuple& t) { return t.f1_; }
828 Field(Tuple& t) { return t.f2_; } // NOLINT
832 ConstField(const Tuple& t) { return t.f2_; }
840 Field(Tuple& t) { return t.f3_; } // NOLINT
844 ConstField(const Tuple& t) { return t.f3_; }
852 Field(Tuple& t) { return t.f4_; } // NOLINT
856 ConstField(const Tuple& t) { return t.f4_; }
864 Field(Tuple& t) { return t.f5_; } // NOLINT
868 ConstField(const Tuple& t) { return t.f5_; }
876 Field(Tuple& t) { return t.f6_; } // NOLINT
880 ConstField(const Tuple& t) { return t.f6_; }
888 Field(Tuple& t) { return t.f7_; } // NOLINT
892 ConstField(const Tuple& t) { return t.f7_; }
900 Field(Tuple& t) { return t.f8_; } // NOLINT
904 ConstField(const Tuple& t) { return t.f8_; }
912 Field(Tuple& t) { return t.f9_; } // NOLINT
916 ConstField(const Tuple& t) { return t.f9_; }
923 get(GTEST_10_TUPLE_(T)& t) {
924 return gtest_internal::Get<k>::Field(t);
929 get(const GTEST_10_TUPLE_(T)& t) {
930 return gtest_internal::Get<k>::ConstField(t);
966 inline bool operator==(const GTEST_10_TUPLE_(T)& t,
970 tuple_size<GTEST_10_TUPLE_(U) >::value>::Eq(t, u);
974 inline bool operator!=(const GTEST_10_TUPLE_(T)& t,
975 const GTEST_10_TUPLE_(U)& u) { return !(t == u); }