Searched defs:m5 (Results 1 - 25 of 27) sorted by relevance

12

/external/eigen/test/
H A Dinverse.cpp74 Matrix<Scalar, MatrixType::RowsAtCompileTime+1, MatrixType::RowsAtCompileTime+1, MatrixType::Options> m5; local
75 m5.setRandom();
76 m5.topLeftCorner(rows,rows) = m1;
77 m2 = m5.template topLeftCorner<MatrixType::RowsAtCompileTime,MatrixType::ColsAtCompileTime>().inverse();
78 VERIFY_IS_APPROX( (m5.template topLeftCorner<MatrixType::RowsAtCompileTime,MatrixType::ColsAtCompileTime>()), m2.inverse() );
H A Dhouseholder.cpp93 MatrixType m5 = m2; local
94 m5.block(shift,0,brows,cols).template triangularView<StrictlyLower>().setZero();
95 VERIFY_IS_APPROX(hseq * m5, m1); // test applying hseq directly
97 VERIFY_IS_APPROX(m3 * m5, m1); // test evaluating hseq to a dense matrix, then applying
121 VERIFY_IS_APPROX(rhseq * m5, m1); // test applying rhseq directly
123 VERIFY_IS_APPROX(m3 * m5, m1); // test evaluating rhseq to a dense matrix, then applying
/external/testng/src/test/java/test/thread/
H A DTrueParallelSampleTest.java38 public void m5() { method in class:TrueParallelSampleTest
39 log("m5");
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/
H A DTarget01.java63 m5();
64 m5();
65 m5();
66 m5();
71 public void m5() { method in class:Target01
/external/clang/test/Headers/
H A Dstddefneeds.cpp52 max_align_t m5; variable
/external/eigen/unsupported/test/
H A Dmatrix_power.cpp73 MatrixType m1, m2, m3, m4, m5; local
86 m5.noalias() = m2 * m3;
87 VERIFY(m4.isApprox(m5, tol));
90 m5 = m2.pow(y);
91 VERIFY(m4.isApprox(m5, tol));
94 m5 = std::pow(std::abs(x), y) * m3;
95 VERIFY(m4.isApprox(m5, tol));
/external/mesa3d/src/mesa/math/
H A Dm_norm_tmp.h55 GLfloat m1 = m[1], m5 = m[5], m9 = m[9]; local
65 ty = ux * m4 + uy * m5 + uz * m6;
85 m1 *= scale, m5 *= scale, m9 *= scale;
94 ty = ux * m4 + uy * m5 + uz * m6;
122 GLfloat m5 = m[5]; local
132 ty = uy * m5 ;
151 m5 *= scale;
159 ty = uy * m5 ;
187 const GLfloat m5 = scale*m[5]; local
196 out[i][1] = uy * m5;
219 const GLfloat m1 = scale*m[1], m5 = scale*m[5], m9 = scale*m[9]; local
248 const GLfloat m5 = m[5]; local
278 const GLfloat m1 = m[1], m5 = m[5], m9 = m[9]; local
[all...]
H A Dm_xform_tmp.h249 const GLfloat m1 = m[1], m5 = m[5], m13 = m[13]; local
256 to[i][1] = m1 * ox + m5 * oy + m13;
295 const GLfloat m0 = m[0], m1 = m[1], m4 = m[4], m5 = m[5]; local
301 to[i][1] = m1 * ox + m5 * oy + m13;
317 const GLfloat m0 = m[0], m5 = m[5], m12 = m[12], m13 = m[13]; local
322 to[i][1] = m5 * oy + m13;
338 const GLfloat m0 = m[0], m1 = m[1], m2 = m[2], m4 = m[4], m5 = m[5]; local
344 to[i][1] = m1 * ox + m5 * oy + m13;
365 const GLfloat m0 = m[0], m5 = m[5]; local
371 to[i][1] = m5 * o
394 const GLfloat m0 = m[0], m5 = m[5], m14 = m[14]; local
420 const GLfloat m1 = m[1], m5 = m[5], m9 = m[9], m13 = m[13]; local
467 const GLfloat m0 = m[0], m1 = m[1], m4 = m[4], m5 = m[5]; local
490 const GLfloat m0 = m[0], m5 = m[5], m12 = m[12], m13 = m[13]; local
512 const GLfloat m0 = m[0], m1 = m[1], m2 = m[2], m4 = m[4], m5 = m[5]; local
538 const GLfloat m0 = m[0], m5 = m[5]; local
561 const GLfloat m0 = m[0], m5 = m[5], m8 = m[8], m9 = m[9]; local
588 const GLfloat m1 = m[1], m5 = m[5], m9 = m[9], m13 = m[13]; local
636 const GLfloat m0 = m[0], m1 = m[1], m4 = m[4], m5 = m[5]; local
660 const GLfloat m0 = m[0], m5 = m[5], m12 = m[12], m13 = m[13]; local
683 const GLfloat m0 = m[0], m1 = m[1], m2 = m[2], m4 = m[4], m5 = m[5]; local
708 const GLfloat m0 = m[0], m5 = m[5]; local
732 const GLfloat m0 = m[0], m5 = m[5], m8 = m[8], m9 = m[9]; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java236 private static final int m5 = 0x3f3f3f3f; field in class:AESEngine
245 int t0 = (x & m5) << 2;
H A DAESFastEngine.java563 private static final int m5 = 0x3f3f3f3f; field in class:AESFastEngine
572 int t0 = (x & m5) << 2;
/external/clang/test/CXX/class/class.union/
H A Dp1.cpp68 } m5; // expected-error {{union member 'm5' has a non-trivial copy assignment operator}} member in union:U2
89 } m5; // expected-error {{union member 'm5' has a non-trivial copy assignment operator}} member in union:U3
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkGlslToSpirV.cpp86 struct LimitsSizeHelper_s { bool m0, m1, m2, m3, m4, m5, m6, m7, m8; }; member in struct:vk::__anon3708::LimitsSizeHelper_s
/external/libvpx/libvpx/vpx_dsp/mips/
H A Didct32x32_msa.c15 v8i16 m0, m1, m2, m3, m4, m5, m6, m7, n0, n1, n2, n3, n4, n5, n6, n7; local
19 LD_SH8((input + 8), 32, m4, n4, m5, n5, m6, n6, m7, n7);
22 TRANSPOSE8x8_SH_SH(m4, n4, m5, n5, m6, n6, m7, n7, m4, n4, m5, n5, m6, n6, m7,
25 ST_SH4(m4, n4, m5, n5, (tmp_buf + 8 * 8), 8);
30 LD_SH8((input + 24), 32, m4, n4, m5, n5, m6, n6, m7, n7);
33 TRANSPOSE8x8_SH_SH(m4, n4, m5, n5, m6, n6, m7, n7, m4, n4, m5, n5, m6, n6, m7,
37 ST_SH4(m4, n4, m5, n5, (tmp_buf + 24 * 8), 8);
243 v8i16 m0, m1, m2, m3, m4, m5, m local
542 v8i16 m0, m1, m2, m3, m4, m5, m6, m7, n0, n1, n2, n3, n4, n5, n6, n7; local
[all...]
/external/googletest/googlemock/include/gmock/
H A Dgmock-generated-matchers.h1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { argument
1029 ::testing::AllOf(m3, m4, m5));
1035 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { argument
1038 ::testing::AllOf(m4, m5, m6));
1044 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { argument
1047 ::testing::AllOf(m4, m5, m6, m7));
1053 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { argument
1056 ::testing::AllOf(m5, m6, m7, m8));
1062 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { argument
1066 ::testing::AllOf(m5, m
1073 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) argument
1109 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) argument
1118 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) argument
1127 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) argument
1136 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) argument
1145 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) argument
1156 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) argument
[all...]
H A Dgmock-generated-function-mockers.h179 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) {
180 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5));
202 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
204 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
227 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
229 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
252 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
254 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
277 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
280 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
178 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) argument
201 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6) argument
226 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7) argument
251 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8) argument
276 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8, const Matcher<A9>& m9) argument
303 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8, const Matcher<A9>& m9, const Matcher<A10>& m10) argument
[all...]
/external/v8/testing/gmock/include/gmock/
H A Dgmock-generated-matchers.h1026 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { argument
1029 ::testing::AllOf(m3, m4, m5));
1035 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { argument
1038 ::testing::AllOf(m4, m5, m6));
1044 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { argument
1047 ::testing::AllOf(m4, m5, m6, m7));
1053 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { argument
1056 ::testing::AllOf(m5, m6, m7, m8));
1062 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { argument
1066 ::testing::AllOf(m5, m
1073 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) argument
1109 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) argument
1118 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) argument
1127 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) argument
1136 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) argument
1145 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) argument
1156 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) argument
[all...]
H A Dgmock-generated-function-mockers.h179 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) {
180 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5));
202 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
204 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
227 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
229 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
252 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
254 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
277 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
280 this->current_spec().SetMatchers(::testing::make_tuple(m1, m2, m3, m4, m5,
178 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) argument
201 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6) argument
226 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7) argument
251 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8) argument
276 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8, const Matcher<A9>& m9) argument
303 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8, const Matcher<A9>& m9, const Matcher<A10>& m10) argument
[all...]
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-generated-function-mockers.h175 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) {
177 m5));
199 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
201 this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
224 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
226 this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
249 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
251 this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
274 const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5,
277 this->current_spec().SetMatchers(::std::tr1::make_tuple(m1, m2, m3, m4, m5,
174 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5) argument
198 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6) argument
223 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7) argument
248 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8) argument
273 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8, const Matcher<A9>& m9) argument
300 With(const Matcher<A1>& m1, const Matcher<A2>& m2, const Matcher<A3>& m3, const Matcher<A4>& m4, const Matcher<A5>& m5, const Matcher<A6>& m6, const Matcher<A7>& m7, const Matcher<A8>& m8, const Matcher<A9>& m9, const Matcher<A10>& m10) argument
[all...]
H A Dgmock-generated-matchers.h1057 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) { argument
1060 ::testing::AllOf(m3, m4, m5));
1066 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) { argument
1069 ::testing::AllOf(m4, m5, m6));
1075 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) { argument
1078 ::testing::AllOf(m4, m5, m6, m7));
1084 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) { argument
1087 ::testing::AllOf(m5, m6, m7, m8));
1093 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) { argument
1097 ::testing::AllOf(m5, m
1104 AllOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) argument
1140 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5) argument
1149 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6) argument
1158 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7) argument
1167 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8) argument
1176 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9) argument
1187 AnyOf(M1 m1, M2 m2, M3 m3, M4 m4, M5 m5, M6 m6, M7 m7, M8 m8, M9 m9, M10 m10) argument
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DJSR166TestCase.java619 public static final Integer m5 = new Integer(-5); field in class:JSR166TestCase
/external/skia/tests/
H A DMatrix44Test.cpp32 T m4, T m5, T m6, T m7,
41 REPORTER_ASSERT(reporter, data[5] == m5);
30 assert16(skiatest::Reporter* reporter, const T data[], T m0, T m1, T m2, T m3, T m4, T m5, T m6, T m7, T m8, T m9, T m10, T m11, T m12, T m13, T m14, T m15) argument
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTVector.h1004 @param[in] m5 m5 matrix value
1010 VERTTYPE m3,VERTTYPE m4,VERTTYPE m5,
1014 f[3]=m3;f[4]=m4;f[5]=m5;
1398 @param[in] m5 m5 matrix value
1411 VERTTYPE m4,VERTTYPE m5,VERTTYPE m6,VERTTYPE m7,
1416 f[4]=m4;f[5]=m5;f[6]=m6;f[7]=m7;
1009 PVRTMat3(VERTTYPE m0,VERTTYPE m1,VERTTYPE m2, VERTTYPE m3,VERTTYPE m4,VERTTYPE m5, VERTTYPE m6,VERTTYPE m7,VERTTYPE m8) argument
1410 PVRTMat4(VERTTYPE m0,VERTTYPE m1,VERTTYPE m2,VERTTYPE m3, VERTTYPE m4,VERTTYPE m5,VERTTYPE m6,VERTTYPE m7, VERTTYPE m8,VERTTYPE m9,VERTTYPE m10,VERTTYPE m11, VERTTYPE m12,VERTTYPE m13,VERTTYPE m14,VERTTYPE m15) argument
/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc1235 Matcher<pair<const std::string, int> > m5 = Pair("25", 42); local
1439 Matcher<const ::std::wstring&> m5 = StrEq(str); local
1440 EXPECT_TRUE(m5.Matches(str));
1457 Matcher<const ::std::wstring&> m5 = StrEq(str); local
1458 EXPECT_EQ("is equal to L\"\\012\\045\\0\\08\\0\\0\"", Describe(m5));
1630 Matcher<const ::wstring&> m5 = StrEq(str); local
1631 EXPECT_TRUE(m5.Matches(str));
1648 Matcher<const ::wstring&> m5 = StrEq(str); local
1649 EXPECT_EQ("is equal to L\"\\012\\045\\0\\08\\0\\0\"", Describe(m5));
2047 Matcher<int&> m5 local
2214 Matcher<int&> m5 = AnyOf(greater_than_5, less_than_10, less_than_10); local
2605 Matcher<RawType> m5 = matcher_maker(infinity_); local
[all...]
/external/googletest/googlemock/test/
H A Dgmock-matchers_test.cc1359 Matcher<pair<const std::string, int> > m5 = Pair("25", 42); local
1563 Matcher<const ::std::wstring&> m5 = StrEq(str); local
1564 EXPECT_TRUE(m5.Matches(str));
1581 Matcher<const ::std::wstring&> m5 = StrEq(str); local
1582 EXPECT_EQ("is equal to L\"\\012\\045\\0\\08\\0\\0\"", Describe(m5));
1754 Matcher<const ::wstring&> m5 = StrEq(str); local
1755 EXPECT_TRUE(m5.Matches(str));
1772 Matcher<const ::wstring&> m5 = StrEq(str); local
1773 EXPECT_EQ("is equal to L\"\\012\\045\\0\\08\\0\\0\"", Describe(m5));
2193 Matcher<int&> m5 local
2378 Matcher<int&> m5 = AnyOf(greater_than_5, less_than_10, less_than_10); local
2752 Matcher<RawType> m5 = matcher_maker(infinity_); local
2850 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_); local
[all...]
/external/v8/testing/gmock/test/
H A Dgmock-matchers_test.cc1359 Matcher<pair<const std::string, int> > m5 = Pair("25", 42); local
1563 Matcher<const ::std::wstring&> m5 = StrEq(str); local
1564 EXPECT_TRUE(m5.Matches(str));
1581 Matcher<const ::std::wstring&> m5 = StrEq(str); local
1582 EXPECT_EQ("is equal to L\"\\012\\045\\0\\08\\0\\0\"", Describe(m5));
1754 Matcher<const ::wstring&> m5 = StrEq(str); local
1755 EXPECT_TRUE(m5.Matches(str));
1772 Matcher<const ::wstring&> m5 = StrEq(str); local
1773 EXPECT_EQ("is equal to L\"\\012\\045\\0\\08\\0\\0\"", Describe(m5));
2193 Matcher<int&> m5 local
2378 Matcher<int&> m5 = AnyOf(greater_than_5, less_than_10, less_than_10); local
2756 Matcher<RawType> m5 = matcher_maker(infinity_); local
2848 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_); local
[all...]

Completed in 602 milliseconds

12