Home
last modified time | relevance | path

Searched refs:Invoke (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Dconformance_testing.h258 If<PropertiesOfT<Prof>::is_equality_comparable>::Invoke( in ExpectOneWayEquality()
261 If<PropertiesOfT<Prof>::is_inequality_comparable>::Invoke( in ExpectOneWayEquality()
264 If<PropertiesOfT<Prof>::is_less_than_comparable>::Invoke( in ExpectOneWayEquality()
267 If<PropertiesOfT<Prof>::is_less_equal_comparable>::Invoke( in ExpectOneWayEquality()
270 If<PropertiesOfT<Prof>::is_greater_equal_comparable>::Invoke( in ExpectOneWayEquality()
273 If<PropertiesOfT<Prof>::is_greater_than_comparable>::Invoke( in ExpectOneWayEquality()
276 If<PropertiesOfT<Prof>::is_hashable>::Invoke( in ExpectOneWayEquality()
507 If<PropertiesOfT<Prof>::is_move_constructible>::Invoke( in operator()
510 If<PropertiesOfT<Prof>::is_copy_constructible>::Invoke( in operator()
515 Invoke(ExpectDefaultConstructWithMoveAssign<T, Prof>{errors}, in operator()
[all …]
/third_party/abseil-cpp/absl/types/internal/
Dconformance_testing.h258 If<PropertiesOfT<Prof>::is_equality_comparable>::Invoke( in ExpectOneWayEquality()
261 If<PropertiesOfT<Prof>::is_inequality_comparable>::Invoke( in ExpectOneWayEquality()
264 If<PropertiesOfT<Prof>::is_less_than_comparable>::Invoke( in ExpectOneWayEquality()
267 If<PropertiesOfT<Prof>::is_less_equal_comparable>::Invoke( in ExpectOneWayEquality()
270 If<PropertiesOfT<Prof>::is_greater_equal_comparable>::Invoke( in ExpectOneWayEquality()
273 If<PropertiesOfT<Prof>::is_greater_than_comparable>::Invoke( in ExpectOneWayEquality()
276 If<PropertiesOfT<Prof>::is_hashable>::Invoke( in ExpectOneWayEquality()
507 If<PropertiesOfT<Prof>::is_move_constructible>::Invoke( in operator()
510 If<PropertiesOfT<Prof>::is_copy_constructible>::Invoke( in operator()
515 Invoke(ExpectDefaultConstructWithMoveAssign<T, Prof>{errors}, in operator()
[all …]
/third_party/googletest/docs/reference/
Dactions.md43 | `f` | Invoke f with the arguments passed to the mock function, where f is a callable. |
44 | `Invoke(f)` | Invoke `f` with the arguments passed to the mock function, where `f` can be a globa…
45 | `Invoke(object_pointer, &class::method)` | Invoke the method on the object with the arguments pas…
46 | `InvokeWithoutArgs(f)` | Invoke `f`, which can be a global/static function or a functor. `f` must…
47 | `InvokeWithoutArgs(object_pointer, &class::method)` | Invoke the method on the object, which take…
48 | `InvokeArgument<N>(arg1, arg2, ..., argk)` | Invoke the mock function's `N`-th (0-based) argument…
53 When defining a callable to be used with `Invoke*()`, you can declare any unused
57 using ::testing::Invoke;
60 EXPECT_CALL(mock, Foo("Hi", _, _)).WillOnce(Invoke(Distance));
63 `Invoke(callback)` and `InvokeWithoutArgs(callback)` take ownership of
[all …]
/third_party/gn/src/base/strings/
Dstring_number_conversions.cc109 static bool Invoke(char c) { in Invoke() function in base::__anon78a40ccb0111::WhitespaceHelper
117 static bool Invoke(char16_t c) { return 0 != iswspace(c); } in Invoke() function in base::__anon78a40ccb0111::WhitespaceHelper
122 return WhitespaceHelper<CHAR>::Invoke(c); in LocalIsWhitespace()
140 static bool Invoke(const_iterator begin, in Invoke() function in base::__anon78a40ccb0111::IteratorRangeToNumber
154 } else if (!Negative::Invoke(begin + 1, end, output)) { in Invoke()
161 if (!Positive::Invoke(begin, end, output)) { in Invoke()
178 static bool Invoke(const_iterator begin, in Invoke() function in base::__anon78a40ccb0111::IteratorRangeToNumber::Base
293 return IteratorRangeToNumber<StringPieceToNumberTraits<VALUE, 10>>::Invoke( in StringToIntImpl()
305 return IteratorRangeToNumber<StringPiece16ToNumberTraits<VALUE, 10>>::Invoke( in String16ToIntImpl()
422 return IteratorRangeToNumber<HexIteratorRangeToIntTraits>::Invoke( in HexStringToInt()
[all …]
/third_party/abseil-cpp/absl/base/internal/
Dinvoke.h82 Invoke(MemFun&& mem_fun, Obj&& obj, Args&&... args) {
103 Invoke(MemFun&& mem_fun, Ptr&& ptr, Args&&... args) {
122 static decltype(std::declval<Ref>().*std::declval<DataMem>()) Invoke(
140 static decltype((*std::declval<Ptr>()).*std::declval<DataMem>()) Invoke(
151 static decltype(std::declval<F>()(std::declval<Args>()...)) Invoke(
173 using invoke_result_t = decltype(Invoker<F, Args...>::type::Invoke(
180 return Invoker<F, Args...>::type::Invoke(std::forward<F>(f),
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dinvoke.h82 Invoke(MemFun&& mem_fun, Obj&& obj, Args&&... args) {
103 Invoke(MemFun&& mem_fun, Ptr&& ptr, Args&&... args) {
122 static decltype(std::declval<Ref>().*std::declval<DataMem>()) Invoke(
140 static decltype((*std::declval<Ptr>()).*std::declval<DataMem>()) Invoke(
151 static decltype(std::declval<F>()(std::declval<Args>()...)) Invoke(
173 using invoke_result_t = decltype(Invoker<F, Args...>::type::Invoke(
180 return Invoker<F, Args...>::type::Invoke(std::forward<F>(f),
/third_party/typescript/tests/baselines/reference/
DfunctionCalls.types2 // Invoke function call on value of type 'any' with no type arguments
16 // Invoke function call on value of type 'any' with type arguments
33 // Invoke function call on value of a subtype of Function with no call signatures with no type argu…
56 // Invoke function call on value of a subtype of Function with no call signatures with type argumen…
72 // Invoke function call on value of type Function with no call signatures with type arguments
DfunctionCalls.symbols2 // Invoke function call on value of type 'any' with no type arguments
12 // Invoke function call on value of type 'any' with type arguments
26 // Invoke function call on value of a subtype of Function with no call signatures with no type argu…
48 // Invoke function call on value of a subtype of Function with no call signatures with type argumen…
59 // Invoke function call on value of type Function with no call signatures with type arguments
DfunctionCalls.errors.txt13 // Invoke function call on value of type 'any' with no type arguments
18 // Invoke function call on value of type 'any' with type arguments
31 …// Invoke function call on value of a subtype of Function with no call signatures with no type arg…
41 …// Invoke function call on value of a subtype of Function with no call signatures with type argume…
53 // Invoke function call on value of type Function with no call signatures with type arguments
/third_party/gettext/gettext-tools/
DChangeLog.0195 * configure.ac: Invoke gl_PROG_ANSI_CXX instead of gt_PROG_ANSI_CXX.
230 * configure.ac: Invoke grgl_EARLY and grgl_INIT. Don't invoke
277 * configure.ac: Invoke LT_LANG also for C++.
286 * configure.ac: Invoke gl_INIT_PACKAGE. Use the preferred form of
303 * configure.ac: Invoke LT_LANG for 'Windows Resource'.
397 * configure.ac: Invoke gt_LOCALE_JA.
461 (gl_EARLY): Invoke.
463 (gl_INIT): Invoke.
493 * configure.ac: Invoke gt_OPENMP.
497 * configure.ac: Invoke gl_LOCK and gl_TLS.
[all …]
/third_party/googletest/googlemock/test/
Dgmock-more-actions_test.cc57 using testing::Invoke;
193 Action<int()> a = Invoke(Nullary); // NOLINT in TEST()
199 Action<bool(int)> a = Invoke(Unary); // NOLINT in TEST()
206 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT in TEST()
213 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT in TEST()
219 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT in TEST()
225 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT in TEST()
231 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT in TEST()
244 a = Invoke(Concat7); in TEST()
255 a = Invoke(Concat8); in TEST()
[all …]
Dgmock-actions_test.cc69 using ::testing::Invoke;
785 .WillRepeatedly(DoAll(Invoke(VoidFunc), in TEST()
1041 Action<void()> a = IgnoreResult(Invoke(ReturnOne)); in TEST()
1056 IgnoreResult(Invoke(ReturnMyNonDefaultConstructible)); // NOLINT in TEST()
1085 Action<bool(double x, int n)> a = WithArgs<1>(Invoke(Unary)); // NOLINT in TEST()
1093 WithArgs<0, 2>(Invoke(Binary)); in TEST()
1109 WithArgs<0, 1, 2, 3, 2, 1, 0, 1, 2, 3>(Invoke(ConcatAll{})); in TEST()
1134 WithArgs<0, 1, 2>(Invoke(Ternary)); in TEST()
1141 WithArgs<1, 1, 1, 1>(Invoke(SumOf4)); in TEST()
1148 WithArgs<1, 0>(Invoke(Binary)); in TEST()
[all …]
Dgmock-nice-strict_test.cc166 .WillByDefault(Invoke(raw_foo, &MockFoo::Delete)); in TEST()
214 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete)); in TEST()
352 .WillByDefault(Invoke(naggy_foo, &MockFoo::Delete)); in TEST()
475 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete)); in TEST()
Dgmock_link_test.h150 using testing::Invoke;
329 .WillOnce(Invoke(&InvokeHelper::StaticVoidFromString)) in TEST()
330 .WillOnce(Invoke(&test_invoke_helper, &InvokeHelper::VoidFromString)); in TEST()
362 .WillOnce(WithArg<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
371 .WillOnce(WithArgs<0>(Invoke(&InvokeHelper::StaticVoidFromString))); in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCallPromotionUtils.cpp47 static void fixupPHINodeForNormalDest(InvokeInst *Invoke, BasicBlock *OrigBlock, in fixupPHINodeForNormalDest() argument
49 for (PHINode &Phi : Invoke->getNormalDest()->phis()) { in fixupPHINodeForNormalDest()
78 static void fixupPHINodeForUnwindDest(InvokeInst *Invoke, BasicBlock *OrigBlock, in fixupPHINodeForUnwindDest() argument
81 for (PHINode &Phi : Invoke->getUnwindDest()->phis()) { in fixupPHINodeForUnwindDest()
172 if (auto *Invoke = dyn_cast<InvokeInst>(CS.getInstruction())) in createRetBitCast() local
174 &SplitEdge(Invoke->getParent(), Invoke->getNormalDest())->front(); in createRetBitCast()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/
DWireExtensionTests.cpp47 .WillOnce(Invoke([&](Unused, in TEST_F()
85 .WillOnce(Invoke([&](Unused, in TEST_F()
109 .WillOnce(Invoke([&](Unused, in TEST_F()
146 .WillOnce(Invoke( in TEST_F()
174 .WillOnce(Invoke( in TEST_F()
208 .WillOnce(Invoke([&](Unused, in TEST_F()
228 .WillOnce(Invoke([&](Unused, in TEST_F()
/third_party/gettext/gettext-runtime/
DChangeLog.054 * configure.ac: Invoke AM_PROG_CC_C_O so that the system stdbool.h
121 * configure.ac: Invoke gl_PROG_ANSI_CXX instead of gt_PROG_ANSI_CXX.
147 * configure.ac: Invoke gl_INIT_PACKAGE. Use the preferred form of
159 * configure.ac: Invoke LT_LANG for 'Windows Resource'.
225 (gl_EARLY): Invoke.
227 (gl_INIT): Invoke.
307 * configure.ac: Invoke gl_WOE32_DLL.
338 * configure.ac: Invoke gt_JAVA_CHOICE.
419 * configure.ac: Invoke gl_FUNC_STRTOUL instead of
432 * configure.ac: Invoke gl_ERROR instead of gt_FUNC_ERROR_AT_LINE.
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DMessageParsingHelpers.cs93 additionalAssert?.Invoke(parsedBuffer);
98 additionalAssert?.Invoke(parsedBuffer);
103 additionalAssert?.Invoke(parsedStream);
/third_party/cef/include/base/internal/
Dcef_bind_internal.h413 static ExtractReturnType<RunType> Invoke(RunFunctor&& functor,
428 static R Invoke(Function&& function, RunArgs&&... args) {
444 static R Invoke(R(__stdcall* function)(Args...), RunArgs&&... args) {
458 static R Invoke(R(__fastcall* function)(Args...), RunArgs&&... args) {
488 static R Invoke(BlockType&& block, RunArgs&&... args) {
510 static R Invoke(BlockType&& block, RunArgs&&... args) {
531 static R Invoke(Method method,
547 static R Invoke(Method method,
565 static R Invoke(Method method,
581 static R Invoke(Method method,
[all …]
/third_party/libffi/src/vax/
Delfbsd.S100 # Invoke the function
147 # Invoke the closure function
189 # Invoke the closure function
/third_party/skia/third_party/externals/abseil-cpp/absl/cleanup/
Dcleanup_test.cc229 TYPED_TEST(CleanupTest, Invoke) { in TYPED_TEST() argument
237 std::move(cleanup).Invoke(); in TYPED_TEST()
304 std::move(cleanup).Invoke(); in TYPED_TEST()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/winrt/
Dgstwinrtdevicewatcher.cpp81 IFACEMETHOD(Invoke) in IFACEMETHOD() argument
107 IFACEMETHOD(Invoke) in IFACEMETHOD() argument
133 IFACEMETHOD(Invoke) in IFACEMETHOD() argument
159 IFACEMETHOD(Invoke) in IFACEMETHOD() argument
185 IFACEMETHOD(Invoke) in IFACEMETHOD() argument
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DCustomOptions.cs279 …alue = (T)typeInfo.GetDeclaredMethod(nameof(ExtensionValue<T>.GetValue)).Invoke(extensionValue, Em… in TryGetPrimitiveValue()
289 …t)typeInfo.GetDeclaredMethod(nameof(RepeatedExtensionValue<T>.GetValue)).Invoke(extensionValue, Em… in TryGetPrimitiveValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSjLjEHPrepare.cpp309 for (InvokeInst *Invoke : Invokes) { in lowerAcrossUnwindEdges()
310 BasicBlock *UnwindBlock = Invoke->getUnwindDest(); in lowerAcrossUnwindEdges()
331 for (InvokeInst *Invoke : Invokes) { in lowerAcrossUnwindEdges()
332 BasicBlock *UnwindBlock = Invoke->getUnwindDest(); in lowerAcrossUnwindEdges()
/third_party/gn/src/gn/
Dtemplate.h39 Value Invoke(Scope* scope,

12345678910>>...14