Home
last modified time | relevance | path

Searched refs:Invoke (Results 1 - 25 of 79) sorted by relevance

1234

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
H A 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(ExpectDefaultConstructWithMoveAssig in operator ()()
[all...]
H A Dconformance_testing_helpers.h347 // A template with a nested "Invoke" static-member-function that executes a
358 static void Invoke(const Fun& /*fun*/, P&&... /*args*/) {} in Invoke() function
364 static void Invoke(const Fun& fun, P&&... args) { in Invoke() function
/third_party/gn/src/base/strings/
H A Dstring_number_conversions.cc109 static bool Invoke(char c) { in Invoke() function in base::__anon2852::WhitespaceHelper
117 static bool Invoke(char16_t c) { return 0 != iswspace(c); } in Invoke() function in base::__anon2852::WhitespaceHelper
122 return WhitespaceHelper<CHAR>::Invoke(c); in LocalIsWhitespace()
140 static bool Invoke(const_iterator begin, in Invoke() function in base::__anon2852::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::__anon2852::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/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dinvoke.h53 // clause is applicable; static function template Invoke(f, args...) does the
57 // Invoke() does exactly what the standard says.
82 Invoke(MemFun&& mem_fun, Obj&& obj, Args&&... args) { in Invoke() function
103 Invoke(MemFun&& mem_fun, Ptr&& ptr, Args&&... args) { in Invoke() function
122 static decltype(std::declval<Ref>().*std::declval<DataMem>()) Invoke( in Invoke() function
140 static decltype((*std::declval<Ptr>()).*std::declval<DataMem>()) Invoke( in Invoke() function
151 static decltype(std::declval<F>()(std::declval<Args>()...)) Invoke( in Invoke() function
171 // The result type of Invoke<F, Args...>.
173 using invoke_result_t = decltype(Invoker<F, Args...>::type::Invoke(
176 // Invoke(
[all...]
/third_party/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc57 using testing::Invoke;
71 // Sample functions and functors for testing Invoke() and etc.
191 // Tests using Invoke() with a nullary function.
193 Action<int()> a = Invoke(Nullary); // NOLINT in TEST()
197 // Tests using Invoke() with a unary function.
199 Action<bool(int)> a = Invoke(Unary); // NOLINT in TEST()
204 // Tests using Invoke() with a binary function.
206 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT in TEST()
211 // Tests using Invoke() with a ternary function.
213 Action<int(int, char, short)> a = Invoke(Ternar in TEST()
[all...]
H A Dgmock_link_test.h48 // Invoke(function)
49 // Invoke(object, method)
149 using testing::Invoke;
323 // Tests the linkage of the Invoke(function) and Invoke(object, method) actions.
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()
H A Dgmock-nice-strict_test.cc168 ON_CALL(*raw_foo, DoThis()).WillByDefault(Invoke(raw_foo, &MockFoo::Delete)); in TEST()
216 .WillByDefault(Invoke(nice_foo, &MockFoo::Delete)); in TEST()
354 .WillByDefault(Invoke(naggy_foo, &MockFoo::Delete)); in TEST()
477 .WillByDefault(Invoke(strict_foo, &MockFoo::Delete)); in TEST()
H A Dgmock-actions_test.cc1033 .WillRepeatedly(DoAll(Invoke(VoidFunc), DoDefault())); in TEST()
1185 // Sample functions and functors for testing Invoke() and etc.
1284 Action<void()> a = IgnoreResult(Invoke(ReturnOne)); in TEST()
1299 IgnoreResult(Invoke(ReturnMyNonDefaultConstructible)); // NOLINT in TEST()
1481 Action<bool(double x, int n)> a = WithArgs<1>(Invoke(Unary)); // NOLINT in TEST()
1489 WithArgs<0, 2>(Invoke(Binary)); in TEST()
1505 WithArgs<0, 1, 2, 3, 2, 1, 0, 1, 2, 3>(Invoke(ConcatAll{})); in TEST()
1511 // Tests using WithArgs with an action that is not Invoke().
1530 WithArgs<0, 1, 2>(Invoke(Ternary)); in TEST()
1537 WithArgs<1, 1, 1, 1>(Invoke(SumOf in TEST()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A 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()
174 &SplitEdge(Invoke->getParent(), Invoke->getNormalDest())->front(); in createRetBitCast()
294 // Invoke instructions are terminating, so we don't need the terminator in versionCallSite()
H A DInlineFunction.cpp298 if (auto *Invoke = dyn_cast<InvokeInst>(U)) { in getUnwindDestTokenHelper()
299 ChildUnwindDestToken = Invoke->getUnwindDest()->getFirstNonPHI(); in getUnwindDestTokenHelper()
593 LandingPadInliningInfo Invoke(II); in HandleInlinedLandingPad()
604 LandingPadInst *OuterLPad = Invoke.getLandingPadInst(); in HandleInlinedLandingPad()
618 &*BB, Invoke.getOuterResumeDest())) in HandleInlinedLandingPad()
621 Invoke.addIncomingPHIValuesFor(NewBB); in HandleInlinedLandingPad()
625 Invoke.forwardResume(RI, InlinedLPads); in HandleInlinedLandingPad()
2271 // Since we are now done with the Call/Invoke, we can delete it. in InlineFunction()
2403 // Since we are now done with the Call/Invoke, we can delete it. in InlineFunction()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/
H A 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/node/deps/v8/include/cppgc/
H A Dallocation.h74 static void* Invoke(AllocationHandle& handle, size_t size) { in Invoke() function
93 static void* Invoke(AllocationHandle& handle, size_t size) { in Invoke() function
102 static void* Invoke(AllocationHandle& handle, size_t size) { in Invoke() function
114 static void* Invoke(AllocationHandle& handle, size_t size) { in Invoke() function
183 typename SpaceTrait<T>::Space, kWantedAlignment>::Invoke(handle, size); in Allocate()
/third_party/node/deps/v8/include/v8-include/cppgc/
H A Dallocation.h74 static void* Invoke(AllocationHandle& handle, size_t size) { in Invoke() function
93 static void* Invoke(AllocationHandle& handle, size_t size) { in Invoke() function
102 static void* Invoke(AllocationHandle& handle, size_t size) { in Invoke() function
114 static void* Invoke(AllocationHandle& handle, size_t size) { in Invoke() function
183 typename SpaceTrait<T>::Space, kWantedAlignment>::Invoke(handle, size); in Allocate()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
H A DMessageParsingHelpers.cs93 additionalAssert?.Invoke(parsedBuffer);
98 additionalAssert?.Invoke(parsedBuffer);
103 additionalAssert?.Invoke(parsedStream);
/third_party/skia/third_party/externals/abseil-cpp/absl/cleanup/
H A Dcleanup_test.cc229 TYPED_TEST(CleanupTest, Invoke) { in TYPED_TEST()
237 std::move(cleanup).Invoke(); in TYPED_TEST()
238 EXPECT_TRUE(called); // Invoke should invoke the callback in TYPED_TEST()
304 std::move(cleanup).Invoke(); in TYPED_TEST()
305 EXPECT_EQ(DestructionCount, 1); // Invoke destroys in TYPED_TEST()
H A Dcleanup.h59 // `std::move(cleanup).Invoke()` will execute the callback early, before
98 void Invoke() && { in Invoke() function in absl::final
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DCustomOptions.cs279 value = (T)typeInfo.GetDeclaredMethod(nameof(ExtensionValue<T>.GetValue)).Invoke(extensionValue, EmptyParameters); in TryGetPrimitiveValue()
289 var values = (IList)typeInfo.GetDeclaredMethod(nameof(RepeatedExtensionValue<T>.GetValue)).Invoke(extensionValue, EmptyParameters); in TryGetPrimitiveValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp1 //===- SjLjEHPrepare.cpp - Eliminate Invoke & Unwind instructions ---------===//
309 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/node/deps/v8/src/execution/
H A Dexecution.cc278 V8_WARN_UNUSED_RESULT MaybeHandle<Object> Invoke(Isolate* isolate, in Invoke() function
486 maybe_result = Invoke(isolate, params); in InvokeWithTryCatch()
523 return Invoke(isolate, InvokeParams::SetUpForCall(isolate, callable, receiver, in Call()
534 return Invoke( in CallScript()
545 return Invoke(isolate, InvokeParams::SetUpForCall(isolate, builtin, receiver, in CallBuiltin()
559 return Invoke(isolate, InvokeParams::SetUpForNew(isolate, constructor, in New()
/third_party/gn/src/gn/
H A Dtemplate.h35 // Invoke the template. The values correspond to the state of the code
39 Value Invoke(Scope* scope,
H A Dtemplate.cc28 Value Template::Invoke(Scope* scope, in Invoke() function in Template
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/winrt/
H A DCoreWindowNativeWindow.h71 IFACEMETHOD(Invoke) in Invoke() function in rx::CoreWindowSizeChangedHandler
H A DSwapChainPanelNativeWindow.h65 IFACEMETHOD(Invoke) in Invoke() function in rx::SwapChainPanelSizeChangedHandler
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DMultipleDeviceTests.cpp54 .WillOnce(WithArg<1>(Invoke( in TEST_F()
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/
H A Dhash.h635 // HashSelect::type<T>::Invoke(state, value)
637 // valid `Invoke` function. Types that are not hashable will have a ::value of
649 static auto Invoke(H state, const T& value)
657 static auto Invoke(H state, const T& value) -> absl::enable_if_t<
668 static auto Invoke(H state, const T& value) -> absl::enable_if_t<
682 static auto Invoke(H state, const T& value)
691 template <typename H, typename = decltype(H::Invoke(
998 return H::combine(hash_internal::HashSelect::template Apply<T>::Invoke( in combine()

Completed in 23 milliseconds

1234