Home
last modified time | relevance | path

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

1234567891011

/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 __anon4e31d9990111::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/googletest/googlemock/test/
Dgmock-generated-actions_test.cc143 EXPECT_EQ(1, a.Perform(std::make_tuple(2, &Nullary))); in TEST()
149 EXPECT_EQ(1, a.Perform(std::make_tuple(UnaryFunctor()))); in TEST()
156 EXPECT_EQ(12345, a.Perform(std::make_tuple(&SumOf5))); in TEST()
163 EXPECT_EQ(12345, a.Perform(std::make_tuple(SumOf5Functor()))); in TEST()
170 EXPECT_EQ(123456, a.Perform(std::make_tuple(&SumOf6))); in TEST()
177 EXPECT_EQ(123456, a.Perform(std::make_tuple(SumOf6Functor()))); in TEST()
186 EXPECT_EQ("1234567", a.Perform(std::make_tuple(&Concat7))); in TEST()
195 EXPECT_EQ("12345678", a.Perform(std::make_tuple(&Concat8))); in TEST()
204 EXPECT_EQ("123456789", a.Perform(std::make_tuple(&Concat9))); in TEST()
213 EXPECT_EQ("1234567890", a.Perform(std::make_tuple(&Concat10))); in TEST()
[all …]
Dgmock-more-actions_test.cc230 EXPECT_EQ(1, a.Perform(std::make_tuple())); in TEST()
236 EXPECT_FALSE(a.Perform(std::make_tuple(1))); in TEST()
237 EXPECT_TRUE(a.Perform(std::make_tuple(-1))); in TEST()
244 EXPECT_EQ(p + 2, a.Perform(std::make_tuple(p, Short(2)))); in TEST()
250 EXPECT_EQ(6, a.Perform(std::make_tuple(1, '\2', Short(3)))); in TEST()
256 EXPECT_EQ(1234, a.Perform(std::make_tuple(1000, 200, 30, 4))); in TEST()
262 EXPECT_EQ(12345, a.Perform(std::make_tuple(10000, 2000, 300, 40, 5))); in TEST()
269 a.Perform(std::make_tuple(100000, 20000, 3000, 400, 50, 6))); in TEST()
282 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
293 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
[all …]
Dgmock-actions_test.cc379 int Perform(const std::tuple<bool, int>& args) override { in Perform() function in __anon5facf5e40111::MyActionImpl
397 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
410 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
411 EXPECT_EQ(0, action.Perform(std::make_tuple(false, 1))); in TEST()
420 EXPECT_EQ(5, a1.Perform(std::make_tuple(true, 5))); in TEST()
421 EXPECT_EQ(0, a1.Perform(std::make_tuple(false, 1))); in TEST()
424 EXPECT_EQ(5, a2.Perform(std::make_tuple(true, 5))); in TEST()
425 EXPECT_EQ(0, a2.Perform(std::make_tuple(false, 1))); in TEST()
430 EXPECT_EQ(5, a1.Perform(std::make_tuple(true, 5))); in TEST()
431 EXPECT_EQ(0, a1.Perform(std::make_tuple(false, 1))); 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;
/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-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/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-actions.h339 virtual Result Perform(const ArgumentTuple& args) = 0;
387 Result Perform(const ArgumentTuple& args) const {
395 return impl_->Perform(args);
445 virtual Result Perform(const ArgumentTuple& args) {
446 return impl_.template Perform<Result>(args);
491 virtual Result Perform(const ArgumentTuple& args) {
492 return impl_->Perform(args);
579 virtual Result Perform(const ArgumentTuple&) { return value_; }
603 virtual Result Perform(const ArgumentTuple&) {
629 static Result Perform(const ArgumentTuple&) {
[all …]
Dgmock-generated-actions.h477 virtual Result Perform(const ArgumentTuple& args) { in Perform() function
478 return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4, in Perform()
514 static Result Perform(Impl* impl, const ::testing::tuple<>& args) { in Perform() function
522 static Result Perform(Impl* impl, const ::testing::tuple<A0>& args) { in Perform() function
530 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1>& args) { in Perform() function
538 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2>& args) { in Perform() function
546 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, in Perform() function
555 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, in Perform() function
565 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4, in Perform() function
575 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4, in Perform() function
[all …]
/external/googletest/googlemock/include/gmock/
Dgmock-actions.h327 virtual Result Perform(const ArgumentTuple& args) = 0;
350 return impl_->Perform(
390 Result Perform(ArgumentTuple args) const {
445 Result Perform(const ArgumentTuple& args) override {
446 return impl_.template Perform<Result>(args);
564 Result Perform(const ArgumentTuple&) override { return value_; }
588 Result Perform(const ArgumentTuple&) override {
614 static Result Perform(const ArgumentTuple&) {
624 static void Perform(const ArgumentTuple&) {
661 Result Perform(const ArgumentTuple&) override { return ref_; }
[all …]
Dgmock-generated-actions.h73 static Result Perform(Impl* impl, const ::std::tuple<>& args) { in Perform() function
81 static Result Perform(Impl* impl, const ::std::tuple<A0>& args) { in Perform() function
89 static Result Perform(Impl* impl, const ::std::tuple<A0, A1>& args) { in Perform() function
97 static Result Perform(Impl* impl, const ::std::tuple<A0, A1, A2>& args) { in Perform() function
105 static Result Perform(Impl* impl, const ::std::tuple<A0, A1, A2, A3>& args) { in Perform() function
113 static Result Perform(Impl* impl, const ::std::tuple<A0, A1, A2, A3, in Perform() function
123 static Result Perform(Impl* impl, const ::std::tuple<A0, A1, A2, A3, A4, in Perform() function
133 static Result Perform(Impl* impl, const ::std::tuple<A0, A1, A2, A3, A4, A5, in Perform() function
143 static Result Perform(Impl* impl, const ::std::tuple<A0, A1, A2, A3, A4, A5, in Perform() function
153 static Result Perform(Impl* impl, const ::std::tuple<A0, A1, A2, A3, A4, A5, 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/v8/src/builtins/
Darray-reverse.tq118 // i. Perform ? Set(O, lowerP, upperValue, true).
121 // ii. Perform ? Set(O, upperP, lowerValue, true).
124 // i. Perform ? Set(O, lowerP, upperValue, true).
127 // ii. Perform ? DeletePropertyOrThrow(O, upperP).
130 // i. Perform ? DeletePropertyOrThrow(O, lowerP).
133 // ii. Perform ? Set(O, upperP, lowerValue, true).
Darray.tq199 // ii. Perform ? CreateDataPropertyOrThrow(A, ! ToString(k), fromValue).
207 // 12. Perform ? Set(A, "length", actualDeleteCount, true).
237 // 2. Perform ? Set(O, to, fromValue, true).
242 // 1. Perform ? DeletePropertyOrThrow(O, to).
253 // i. Perform ? DeletePropertyOrThrow(O, ! ToString(k - 1)).
280 // 2. Perform ? Set(O, to, fromValue, true).
285 // 1. Perform ? DeletePropertyOrThrow(O, to).
302 // b. Perform ? Set(O, ! ToString(k), E, true).
310 // 19. Perform ? Set(O, "length", len - actualDeleteCount + itemCount,
/external/curl/projects/
Dbuild-wolfssl.bat161 rem Perform 64-bit Debug Build
172 rem Perform 64-bit Release Build
190 rem Perform 32-bit Debug Build
201 rem Perform 32-bit Release Build
314 echo x86 - Perform a 32-bit build
315 echo x64 - Perform a 64-bit build
319 echo debug - Perform a debug build
320 echo release - Perform a release build
Dbuild-openssl.bat241 rem Perform the build
274 rem Perform the build
314 rem Perform the build
347 rem Perform the build
396 echo x86 - Perform a 32-bit build
397 echo x64 - Perform a 64-bit build
401 echo debug - Perform a debug build
402 echo release - Perform a release build
/external/mesa3d/src/hgl/
DGLView.cpp276 BGLView::Perform(perform_code d, void* arg) in Perform() function in BGLView
278 return BView::Perform(d, arg); in Perform()
543 BGLScreen::Perform(perform_code d, void* arg)
545 return BWindowScreen::Perform(d, arg);
/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/swiftshader/third_party/llvm-7.0/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.

1234567891011