Lines Matching defs:v1

77 bool PredFunction1(T1 v1) {
78 return v1 > 0;
84 bool PredFunction1Int(int v1) {
85 return v1 > 0;
87 bool PredFunction1Bool(Bool v1) {
88 return v1 > 0;
94 bool operator()(const T1& v1) {
95 return v1 > 0;
102 const T1& v1) {
103 if (PredFunction1(v1))
109 << v1 << ".";
116 const T1& v1) const {
117 return PredFormatFunction1(e1, v1);
464 bool PredFunction2(T1 v1, T2 v2) {
465 return v1 + v2 > 0;
471 bool PredFunction2Int(int v1, int v2) {
472 return v1 + v2 > 0;
474 bool PredFunction2Bool(Bool v1, Bool v2) {
475 return v1 + v2 > 0;
481 bool operator()(const T1& v1,
483 return v1 + v2 > 0;
491 const T1& v1,
493 if (PredFunction2(v1, v2))
499 << v1 + v2 << ".";
507 const T1& v1,
509 return PredFormatFunction2(e1, e2, v1, v2);
893 bool PredFunction3(T1 v1, T2 v2, T3 v3) {
894 return v1 + v2 + v3 > 0;
900 bool PredFunction3Int(int v1, int v2, int v3) {
901 return v1 + v2 + v3 > 0;
903 bool PredFunction3Bool(Bool v1, Bool v2, Bool v3) {
904 return v1 + v2 + v3 > 0;
910 bool operator()(const T1& v1,
913 return v1 + v2 + v3 > 0;
922 const T1& v1,
925 if (PredFunction3(v1, v2, v3))
931 << v1 + v2 + v3 << ".";
940 const T1& v1,
943 return PredFormatFunction3(e1, e2, e3, v1, v2, v3);
1364 bool PredFunction4(T1 v1, T2 v2, T3 v3, T4 v4) {
1365 return v1 + v2 + v3 + v4 > 0;
1371 bool PredFunction4Int(int v1, int v2, int v3, int v4) {
1372 return v1 + v2 + v3 + v4 > 0;
1374 bool PredFunction4Bool(Bool v1, Bool v2, Bool v3, Bool v4) {
1375 return v1 + v2 + v3 + v4 > 0;
1381 bool operator()(const T1& v1,
1385 return v1 + v2 + v3 + v4 > 0;
1395 const T1& v1,
1399 if (PredFunction4(v1, v2, v3, v4))
1405 << v1 + v2 + v3 + v4 << ".";
1415 const T1& v1,
1419 return PredFormatFunction4(e1, e2, e3, e4, v1, v2, v3, v4);
1877 bool PredFunction5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) {
1878 return v1 + v2 + v3 + v4 + v5 > 0;
1884 bool PredFunction5Int(int v1, int v2, int v3, int v4, int v5) {
1885 return v1 + v2 + v3 + v4 + v5 > 0;
1887 bool PredFunction5Bool(Bool v1, Bool v2, Bool v3, Bool v4, Bool v5) {
1888 return v1 + v2 + v3 + v4 + v5 > 0;
1894 bool operator()(const T1& v1,
1899 return v1 + v2 + v3 + v4 + v5 > 0;
1910 const T1& v1,
1915 if (PredFunction5(v1, v2, v3, v4, v5))
1921 << v1 + v2 + v3 + v4 + v5 << ".";
1932 const T1& v1,
1937 return PredFormatFunction5(e1, e2, e3, e4, e5, v1, v2, v3, v4, v5);