/third_party/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 194 EXPECT_EQ(1, a.Perform(std::make_tuple())); in TEST() 200 EXPECT_FALSE(a.Perform(std::make_tuple(1))); in TEST() 201 EXPECT_TRUE(a.Perform(std::make_tuple(-1))); in TEST() 208 EXPECT_EQ(p + 2, a.Perform(std::make_tuple(p, Short(2)))); in TEST() 214 EXPECT_EQ(6, a.Perform(std::make_tuple(1, '\2', Short(3)))); in TEST() 220 EXPECT_EQ(1234, a.Perform(std::make_tuple(1000, 200, 30, 4))); in TEST() 226 EXPECT_EQ(12345, a.Perform(std::make_tuple(10000, 2000, 300, 40, 5))); in TEST() 233 a.Perform(std::make_tuple(100000, 20000, 3000, 400, 50, 6))); in TEST() 246 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST() 257 a.Perform(st in TEST() [all...] |
H A D | gmock-actions_test.cc | 512 // Perform method. 518 int Perform(const std::tuple<bool, int>& args) override { 531 // When exercising the Perform() method of Action<F>, we must pass in TEST() 533 // types. For example, if F is int(), then Perform() takes a in TEST() 534 // 0-tuple; if F is void(bool, int), then Perform() takes a in TEST() 536 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST() 549 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST() 550 EXPECT_EQ(0, action.Perform(std::make_tuple(false, 1))); in TEST() 559 EXPECT_EQ(5, a1.Perform(std::make_tuple(true, 5))); in TEST() 560 EXPECT_EQ(0, a1.Perform(st in TEST() 604 Result Perform(const ArgumentTuple& args) { Perform() function in testing::__anon2997::ReturnSecondArgumentAction 621 Result Perform(const std::tuple<>&) const { Perform() function in testing::__anon2997::ReturnZeroFromNullaryFunctionAction [all...] |
/third_party/curl/projects/ |
H A D | build-openssl.bat | 276 rem Perform the build
279 rem Perform the install
285 rem Perform the build
288 rem Perform the install
296 rem Perform the build
299 rem Perform the install
305 rem Perform the build
308 rem Perform the install
323 rem Perform the build
326 rem Perform th [all...] |
H A D | build-wolfssl.bat | 203 rem Perform 64-bit Debug Build
214 rem Perform 64-bit Release Build
232 rem Perform 32-bit Debug Build
243 rem Perform 32-bit Release Build
360 echo x86 - Perform a 32-bit build
361 echo x64 - Perform a 64-bit build
368 echo debug - Perform a debug build
369 echo release - Perform a release build
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 712 virtual Result Perform(const ArgumentTuple& args) = 0; 741 return impl_->Perform( in operator ()() 789 Result Perform(ArgumentTuple args) const { in Perform() function in testing::Action 799 // Return a OnceAction-compatible callable that calls Perform with the in operator OnceAction() 806 return action.Perform( in operator OnceAction() 847 // implementation class that has a Perform() method template: 852 // Result Perform(const ArgumentTuple& args) const { 882 Result Perform(const ArgumentTuple& args) override { 883 return impl_.template Perform<Result>(args); 1014 // conversion automatically each time Perform i 1123 static Result Perform(const ArgumentTuple&) { Perform() function in testing::internal::ReturnNullAction 1133 static void Perform(const ArgumentTuple&) { Perform() function in testing::internal::ReturnVoidAction 1270 void Perform(const ArgumentTuple& /* args */) const { Perform() function in testing::internal::AssignAction 1289 Result Perform(const ArgumentTuple& /* args */) const { Perform() function in testing::internal::SetErrnoAndReturnAction [all...] |
H A D | gmock-spec-builders.h | 1463 return spec->GetAction().Perform(std::move(args)); 1704 return action.Perform(std::move(args)); 1717 // Perform the supplied action, printing the result to os. 1783 // Perform the action without printing the call information. 1792 // Perform the action, print the result, and then report the uninteresting 1824 // Perform the action without printing the call information. 1837 // Perform the action, print the result, and then fail or log in whatever way
|
/third_party/mesa3d/include/HaikuGL/ |
H A D | GLView.h | 71 virtual status_t Perform(perform_code d, void *arg); 153 virtual status_t Perform(perform_code code, void *arg);
|
/third_party/mesa3d/src/hgl/ |
H A D | GLView.cpp | 266 BGLView::Perform(perform_code d, void* arg) in Perform() function in BGLView 268 return BView::Perform(d, arg); in Perform() 535 BGLScreen::Perform(perform_code d, void* arg) 537 return BWindowScreen::Perform(d, arg);
|
/third_party/node/deps/v8/include/ |
H A D | v8-internal.h | 630 static void Perform(T* data); 635 void CastCheck<true>::Perform(T* data) { in Perform() function in v8::internal::CastCheck 641 void CastCheck<false>::Perform(T* data) {} in Perform() function in v8::internal::CastCheck 646 !std::is_same<Data, std::remove_cv_t<T>>::value>::Perform(data); in PerformCastCheck()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-internal.h | 881 static void Perform(T* data); 886 void CastCheck<true>::Perform(T* data) { 892 void CastCheck<false>::Perform(T* data) {} 897 !std::is_same<Data, std::remove_cv_t<T>>::value>::Perform(data);
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_area_task.h | 187 static void Perform (dng_area_task &task,
|
H A D | dng_area_task.cpp | 254 void dng_area_task::Perform (dng_area_task &task, in Perform() function in dng_area_task
|
H A D | dng_host.cpp | 238 dng_area_task::Perform (task, in PerformAreaTask()
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/ |
H A D | jfdctint-avx2.asm | 251 ; Perform the forward DCT on one block of samples.
|
H A D | jidctred-mmx.asm | 96 ; Perform dequantization and inverse DCT on one block of coefficients, 490 ; Perform dequantization and inverse DCT on one block of coefficients,
|
H A D | jidctred-sse2.asm | 96 ; Perform dequantization and inverse DCT on one block of coefficients, 411 ; Perform dequantization and inverse DCT on one block of coefficients,
|
H A D | jfdctflt-3dn.asm | 43 ; Perform the forward DCT on one block of samples.
|
H A D | jfdctflt-sse.asm | 53 ; Perform the forward DCT on one block of samples.
|
H A D | jfdctfst-mmx.asm | 68 ; Perform the forward DCT on one block of samples.
|
H A D | jfdctfst-sse2.asm | 68 ; Perform the forward DCT on one block of samples.
|
H A D | jidctflt-3dn.asm | 45 ; Perform dequantization and inverse DCT on one block of coefficients.
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/ |
H A D | jfdctint-avx2.asm | 251 ; Perform the forward DCT on one block of samples.
|
H A D | jidctred-sse2.asm | 97 ; Perform dequantization and inverse DCT on one block of coefficients, 400 ; Perform dequantization and inverse DCT on one block of coefficients,
|
H A D | jfdctflt-sse.asm | 53 ; Perform the forward DCT on one block of samples.
|
H A D | jidctint-avx2.asm | 269 ; Perform dequantization and inverse DCT on one block of coefficients.
|