HomeSort by relevance Sort by last modified time
    Searched refs:Perform (Results 1 - 25 of 237) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webrtc/webrtc/modules/audio_coding/test/
ACMTest.h 18 virtual void Perform() = 0;
Tester.cc 40 webrtc::TestAllCodecs(ACM_TEST_MODE).Perform();
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...]
TestVADDTX.h 41 // TestVadDtx is to verify that VAD/DTX perform as they should. It runs through
43 // expectation. TestVadDtx needs its derived class to implement the Perform()
51 virtual void Perform() = 0;
77 // TestWebRtcVadDtx is to verify that the WebRTC VAD/DTX perform as they should.
82 void Perform() override;
97 void Perform() override;
SpatialAudio.h 30 void Perform();
TestRedFec.h 29 void Perform();
TwoWayCommunication.h 28 void Perform();
opus_test.h 31 void Perform();
PacketLossTest.h 53 void Perform();
iSACTest.h 43 void Perform();
  /external/google-breakpad/src/testing/test/
gmock-generated-actions_test.cc 172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary)));
178 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor())));
185 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5)));
192 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor())));
199 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6)));
206 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor())));
215 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7)));
224 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8)));
233 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9)));
243 EXPECT_EQ("1234567890", a.Perform(make_tuple(&Concat10)))
    [all...]
gmock-actions_test.cc 324 // Perform method.
330 virtual int Perform(const tuple<bool, int>& args) {
343 // When exercising the Perform() method of Action<F>, we must pass
345 // types. For example, if F is int(), then Perform() takes a
346 // 0-tuple; if F is void(bool, int), then Perform() takes a
348 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
361 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
362 EXPECT_EQ(0, action.Perform(make_tuple(false, 1)));
371 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5)));
372 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1)))
    [all...]
gmock-more-actions_test.cc 236 EXPECT_EQ(1, a.Perform(make_tuple()));
242 EXPECT_FALSE(a.Perform(make_tuple(1)));
243 EXPECT_TRUE(a.Perform(make_tuple(-1)));
250 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2))));
256 EXPECT_EQ(6, a.Perform(make_tuple(1, '\2', Short(3))));
262 EXPECT_EQ(1234, a.Perform(make_tuple(1000, 200, 30, 4)));
268 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5)));
274 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6)));
287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3")
    [all...]
  /external/googletest/googlemock/test/
gmock-generated-actions_test.cc 172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary)));
178 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor())));
185 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5)));
192 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor())));
199 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6)));
206 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor())));
215 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7)));
224 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8)));
233 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9)));
242 EXPECT_EQ("1234567890", a.Perform(make_tuple(&Concat10)))
    [all...]
gmock-actions_test.cc 370 // Perform method.
376 virtual int Perform(const tuple<bool, int>& args) {
389 // When exercising the Perform() method of Action<F>, we must pass
391 // types. For example, if F is int(), then Perform() takes a
392 // 0-tuple; if F is void(bool, int), then Perform() takes a
394 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
407 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
408 EXPECT_EQ(0, action.Perform(make_tuple(false, 1)));
417 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5)));
418 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1)))
    [all...]
gmock-more-actions_test.cc 236 EXPECT_EQ(1, a.Perform(make_tuple()));
242 EXPECT_FALSE(a.Perform(make_tuple(1)));
243 EXPECT_TRUE(a.Perform(make_tuple(-1)));
250 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2))));
256 EXPECT_EQ(6, a.Perform(make_tuple(1, '\2', Short(3))));
262 EXPECT_EQ(1234, a.Perform(make_tuple(1000, 200, 30, 4)));
268 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5)));
274 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6)));
287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3")
    [all...]
  /external/v8/testing/gmock/test/
gmock-generated-actions_test.cc 172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary)));
178 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor())));
185 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5)));
192 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor())));
199 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6)));
206 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor())));
215 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7)));
224 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8)));
233 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9)));
243 EXPECT_EQ("1234567890", a.Perform(make_tuple(&Concat10)))
    [all...]
gmock-actions_test.cc 370 // Perform method.
376 virtual int Perform(const tuple<bool, int>& args) {
389 // When exercising the Perform() method of Action<F>, we must pass
391 // types. For example, if F is int(), then Perform() takes a
392 // 0-tuple; if F is void(bool, int), then Perform() takes a
394 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
407 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
408 EXPECT_EQ(0, action.Perform(make_tuple(false, 1)));
417 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5)));
418 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1)))
    [all...]
gmock-more-actions_test.cc 236 EXPECT_EQ(1, a.Perform(make_tuple()));
242 EXPECT_FALSE(a.Perform(make_tuple(1)));
243 EXPECT_TRUE(a.Perform(make_tuple(-1)));
250 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2))));
256 EXPECT_EQ(6, a.Perform(make_tuple(1, '\2', Short(3))));
262 EXPECT_EQ(1234, a.Perform(make_tuple(1000, 200, 30, 4)));
268 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5)));
274 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6)));
287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3")
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 264 virtual Result Perform(const ArgumentTuple& args) = 0;
312 Result Perform(const ArgumentTuple& args) const {
320 return impl_->Perform(args);
335 // implementation class that has a Perform() method template:
340 // Result Perform(const ArgumentTuple& args) const {
370 virtual Result Perform(const ArgumentTuple& args) {
371 return impl_.template Perform<Result>(args);
416 virtual Result Perform(const ArgumentTuple& args) {
417 return impl_->Perform(args);
495 virtual Result Perform(const ArgumentTuple&) { return value_;
    [all...]
  /external/dng_sdk/source/
dng_area_task.h 182 /// \param task The task to perform.
187 static void Perform (dng_area_task &task,
  /hardware/qcom/display/msm8909/sdm/libs/hwc/
hwc_display_external.h 43 virtual int Perform(uint32_t operation, ...);
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/
hwc_display_external.h 43 virtual int Perform(uint32_t operation, ...);
  /external/curl/docs/cmdline-opts/
interface.d 7 Perform an operation using a specified interface. You can enter interface
  /external/googletest/googlemock/include/gmock/
gmock-actions.h 339 virtual Result Perform(const ArgumentTuple& args) = 0;
387 Result Perform(const ArgumentTuple& args) const {
395 return impl_->Perform(args);
410 // implementation class that has a Perform() method template:
415 // Result Perform(const ArgumentTuple& args) const {
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_;
    [all...]
  /external/v8/testing/gmock/include/gmock/
gmock-actions.h 339 virtual Result Perform(const ArgumentTuple& args) = 0;
387 Result Perform(const ArgumentTuple& args) const {
395 return impl_->Perform(args);
410 // implementation class that has a Perform() method template:
415 // Result Perform(const ArgumentTuple& args) const {
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_;
    [all...]

Completed in 274 milliseconds

1 2 3 4 5 6 7 8 910