Home
last modified time | relevance | path

Searched refs:Perform (Results 1 – 25 of 152) sorted by relevance

1234567

/external/google-breakpad/src/testing/test/
Dgmock-generated-actions_test.cc172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary))); in TEST()
178 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor()))); in TEST()
185 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5))); in TEST()
192 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor()))); in TEST()
199 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6))); in TEST()
206 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor()))); in TEST()
215 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7))); in TEST()
224 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8))); in TEST()
233 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9))); in TEST()
243 EXPECT_EQ("1234567890", a.Perform(make_tuple(&Concat10))); in TEST()
[all …]
Dgmock-more-actions_test.cc236 EXPECT_EQ(1, a.Perform(make_tuple())); in TEST()
242 EXPECT_FALSE(a.Perform(make_tuple(1))); in TEST()
243 EXPECT_TRUE(a.Perform(make_tuple(-1))); in TEST()
250 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2)))); in TEST()
256 EXPECT_EQ(6, a.Perform(make_tuple(1, '\2', Short(3)))); in TEST()
262 EXPECT_EQ(1234, a.Perform(make_tuple(1000, 200, 30, 4))); in TEST()
268 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5))); in TEST()
274 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6))); in TEST()
287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
[all …]
Dgmock-actions_test.cc330 virtual int Perform(const tuple<bool, int>& args) { in Perform() function in __anone2b888e50111::MyActionImpl
348 EXPECT_EQ(5, action.Perform(make_tuple(true, 5))); in TEST()
361 EXPECT_EQ(5, action.Perform(make_tuple(true, 5))); in TEST()
362 EXPECT_EQ(0, action.Perform(make_tuple(false, 1))); in TEST()
371 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5))); in TEST()
372 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1))); in TEST()
375 EXPECT_EQ(5, a2.Perform(make_tuple(true, 5))); in TEST()
376 EXPECT_EQ(0, a2.Perform(make_tuple(false, 1))); in TEST()
381 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5))); in TEST()
382 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1))); in TEST()
[all …]
/external/gmock/test/
Dgmock-generated-actions_test.cc172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary))); in TEST()
178 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor()))); in TEST()
185 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5))); in TEST()
192 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor()))); in TEST()
199 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6))); in TEST()
206 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor()))); in TEST()
215 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7))); in TEST()
224 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8))); in TEST()
233 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9))); in TEST()
243 EXPECT_EQ("1234567890", a.Perform(make_tuple(&Concat10))); in TEST()
[all …]
Dgmock-actions_test.cc330 virtual int Perform(const tuple<bool, int>& args) { in Perform() function in __anon09f6e02e0111::MyActionImpl
348 EXPECT_EQ(5, action.Perform(make_tuple(true, 5))); in TEST()
361 EXPECT_EQ(5, action.Perform(make_tuple(true, 5))); in TEST()
362 EXPECT_EQ(0, action.Perform(make_tuple(false, 1))); in TEST()
371 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5))); in TEST()
372 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1))); in TEST()
375 EXPECT_EQ(5, a2.Perform(make_tuple(true, 5))); in TEST()
376 EXPECT_EQ(0, a2.Perform(make_tuple(false, 1))); in TEST()
381 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5))); in TEST()
382 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1))); in TEST()
[all …]
Dgmock-more-actions_test.cc236 EXPECT_EQ(1, a.Perform(make_tuple())); in TEST()
242 EXPECT_FALSE(a.Perform(make_tuple(1))); in TEST()
243 EXPECT_TRUE(a.Perform(make_tuple(-1))); in TEST()
250 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2)))); in TEST()
256 EXPECT_EQ(6, a.Perform(make_tuple(1, '\2', Short(3)))); in TEST()
262 EXPECT_EQ(1234, a.Perform(make_tuple(1000, 200, 30, 4))); in TEST()
268 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5))); in TEST()
274 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6))); in TEST()
287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
[all …]
/external/webrtc/webrtc/modules/audio_coding/test/
DTester.cc40 webrtc::TestAllCodecs(ACM_TEST_MODE).Perform(); in TEST()
52 webrtc::EncodeDecodeTest(ACM_TEST_MODE).Perform();
65 webrtc::TestRedFec().Perform();
79 webrtc::ISACTest(ACM_TEST_MODE).Perform();
94 webrtc::TwoWayCommunication(ACM_TEST_MODE).Perform();
107 webrtc::TestStereo(ACM_TEST_MODE).Perform();
119 webrtc::TestWebRtcVadDtx().Perform();
127 webrtc::TestOpusDtx().Perform();
135 webrtc::OpusTest().Perform();
143 webrtc::PacketLossTest(1, 10, 10, 1).Perform();
[all …]
DTestVADDTX.h51 virtual void Perform() = 0;
82 void Perform() override;
97 void Perform() override;
DACMTest.h18 virtual void Perform() = 0;
DSpatialAudio.h30 void Perform();
DTestRedFec.h29 void Perform();
/external/google-breakpad/src/testing/include/gmock/
Dgmock-actions.h264 virtual Result Perform(const ArgumentTuple& args) = 0;
312 Result Perform(const ArgumentTuple& args) const { in Perform() function
320 return impl_->Perform(args); in Perform()
370 virtual Result Perform(const ArgumentTuple& args) { in Perform() function
371 return impl_.template Perform<Result>(args); in Perform()
416 virtual Result Perform(const ArgumentTuple& args) { in Perform() function
417 return impl_->Perform(args); in Perform()
495 virtual Result Perform(const ArgumentTuple&) { return value_; } in Perform() function
515 static Result Perform(const ArgumentTuple&) { in Perform() function
527 static void Perform(const ArgumentTuple&) { in Perform() function
[all …]
Dgmock-more-actions.h60 Result Perform(const ArgumentTuple& args) { in Perform() function
78 Result Perform(const ArgumentTuple& args) const { in Perform() function
Dgmock-generated-actions.h604 virtual Result Perform(const ArgumentTuple& args) { in Perform() function
605 return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4, in Perform()
641 static Result Perform(Impl* impl, const ::std::tr1::tuple<>& args) { in Perform() function
650 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0>& args) { in Perform() function
659 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1>& args) { in Perform() function
668 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2>& args) { in Perform() function
677 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, in Perform() function
687 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, in Perform() function
698 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4, in Perform() function
709 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4, in Perform() function
[all …]
/external/gmock/include/gmock/
Dgmock-actions.h264 virtual Result Perform(const ArgumentTuple& args) = 0;
312 Result Perform(const ArgumentTuple& args) const { in Perform() function
320 return impl_->Perform(args); in Perform()
370 virtual Result Perform(const ArgumentTuple& args) { in Perform() function
371 return impl_.template Perform<Result>(args); in Perform()
416 virtual Result Perform(const ArgumentTuple& args) { in Perform() function
417 return impl_->Perform(args); in Perform()
495 virtual Result Perform(const ArgumentTuple&) { return value_; } in Perform() function
515 static Result Perform(const ArgumentTuple&) { in Perform() function
527 static void Perform(const ArgumentTuple&) { in Perform() function
[all …]
Dgmock-more-actions.h60 Result Perform(const ArgumentTuple& args) { in Perform() function
78 Result Perform(const ArgumentTuple& args) const { in Perform() function
Dgmock-generated-actions.h604 virtual Result Perform(const ArgumentTuple& args) { in Perform() function
605 return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4, in Perform()
641 static Result Perform(Impl* impl, const ::std::tr1::tuple<>& args) { in Perform() function
650 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0>& args) { in Perform() function
659 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1>& args) { in Perform() function
668 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2>& args) { in Perform() function
677 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, in Perform() function
687 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, in Perform() function
698 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4, in Perform() function
709 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4, in Perform() function
[all …]
/external/libavc/common/arm/
Dih264_intra_pred_luma_4x4_a9q.s62 @* Perform Intra prediction for luma_4x4 mode:vertical
65 @* Perform Intra prediction for luma_4x4 mode:vertical ,described in sec 8.3.1.2.1
135 @* Perform Intra prediction for luma_4x4 mode:horizontal
138 @* Perform Intra prediction for luma_4x4 mode:horizontal ,described in sec 8.3.1.2.2
217 @* Perform Intra prediction for luma_4x4 mode:DC
220 @* Perform Intra prediction for luma_4x4 mode:DC ,described in sec 8.3.1.2.3
356 @* Perform Intra prediction for luma_4x4 mode:Diagonal_Down_Left
359 @* Perform Intra prediction for luma_4x4 mode:Diagonal_Down_Left ,described in sec 8.3.1.2.4
438 @* Perform Intra prediction for luma_4x4 mode:Diagonal_Down_Right
441 @* Perform Intra prediction for luma_4x4 mode:Diagonal_Down_Right ,described in sec 8.3.1.2.5
[all …]
Dih264_intra_pred_luma_8x8_a9q.s70 @* Perform Reference sample filtering process for Intra_8x8 sample prediction ,described in sec 8.…
152 @* Perform Intra prediction for luma_8x8 mode:vertical
155 @* Perform Intra prediction for luma_8x8 mode:vertical ,described in sec 8.3.2.2.2
225 @* Perform Intra prediction for luma_8x8 mode:horizontal
228 @* Perform Intra prediction for luma_8x8 mode:horizontal ,described in sec 8.3.2.2.2
305 @* Perform Intra prediction for luma_8x8 mode:DC
308 @* Perform Intra prediction for luma_8x8 mode:DC ,described in sec 8.3.2.2.3
416 @* Perform Intra prediction for luma_8x8 mode:Diagonal_Down_Left
419 @* Perform Intra prediction for luma_8x8 mode:Diagonal_Down_Left ,described in sec 8.3.2.2.4
509 @* Perform Intra prediction for luma_8x8 mode:Diagonal_Down_Right
[all …]
Dih264_intra_pred_luma_16x16_a9q.s66 @* Perform Intra prediction for luma_16x16 mode:vertical
69 @* Perform Intra prediction for luma_16x16 mode:Vertical ,described in sec 8.3.3.1
147 @* Perform Intra prediction for luma_16x16 mode:horizontal
150 @* Perform Intra prediction for luma_16x16 mode:horizontal ,described in sec 8.3.3.2
225 @* Perform Intra prediction for luma_16x16 mode:DC
228 @* Perform Intra prediction for luma_16x16 mode:DC ,described in sec 8.3.3.3
349 @* Perform Intra prediction for luma_16x16 mode:PLANE
352 @* Perform Intra prediction for luma_16x16 mode:PLANE ,described in sec 8.3.3.4
Dih264_intra_pred_chroma_a9q.s65 @* Perform Intra prediction for chroma_8x8 mode:DC
68 @* Perform Intra prediction for chroma_8x8 mode:DC ,described in sec 8.3.4.1
197 @* Perform Intra prediction for chroma_8x8 mode:Horizontal
200 @* Perform Intra prediction for chroma_8x8 mode:Horizontal ,described in sec 8.3.4.2
273 @* Perform Intra prediction for chroma_8x8 mode:vertical
276 @*Perform Intra prediction for chroma_8x8 mode:vertical ,described in sec 8.3.4.3
345 @* Perform Intra prediction for chroma_8x8 mode:PLANE
348 @* Perform Intra prediction for chroma_8x8 mode:PLANE ,described in sec 8.3.4.4
/external/curl/projects/
Dbuild-openssl.bat173 rem Perform the build
196 rem Perform the build
226 rem Perform the build
249 rem Perform the build
286 echo x86 - Perform a 32-bit build
287 echo x64 - Perform a 64-bit build
291 echo debug - Perform a debug build
292 echo release - Perform a release build
/external/libgdx/
DCC-LICENSE18 …10. "Publicly Perform" means to perform public recitations of the Work and to communicate to the p…
27 3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
28 4. to Distribute and Publicly Perform Adaptations.
40Perform the Work only under the terms of this License. You must include a copy of, or the Uniform …
41Perform an Adaptation only under the terms of: (i) this License; (ii) a later version of this Lice…
42 …3. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, un…
43 …se permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either b…
58 …1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to t…
59 …2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a …
/external/llvm/test/CodeGen/X86/
D2013-10-14-FastISel-incorrect-vreg.ll23 ; Perform the indirect call.
62 ; Perform the indirect call.
101 ; Perform the indirect call.
/external/opencv3/doc/tutorials/imgproc/pyramids/
Dpyramids.markdown57 - Perform a convolution with the same kernel shown above (multiplied by 4) to approximate the
103 - Perform an infinite loop waiting for user input.
127 - **Perform upsampling (after pressing 'u')**
138 - **Perform downsampling (after pressing 'd')**

1234567