Home
last modified time | relevance | path

Searched refs:GetMethod (Results 1 – 25 of 51) sorted by relevance

123

/third_party/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/
DTypeExtensionsTest.cs95 var method = TypeExtensions.GetMethod(type, name); in GetMethod_Success()
105 var method = TypeExtensions.GetMethod(type, name); in GetMethod_NoSuchMethod()
113 Assert.Throws<AmbiguousMatchException>(() => TypeExtensions.GetMethod(type, name)); in GetMethod_Ambiguous()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Compatibility/
DTypeExtensionsTest.cs95 var method = TypeExtensions.GetMethod(type, name); in GetMethod_Success()
105 var method = TypeExtensions.GetMethod(type, name); in GetMethod_NoSuchMethod()
113 Assert.Throws<AmbiguousMatchException>(() => TypeExtensions.GetMethod(type, name)); in GetMethod_Ambiguous()
/third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/
DTypeExtensions.cs69 …if (ret != null && ((ret.CanRead && ret.GetMethod.IsPublic) || (ret.CanWrite && ret.SetMethod.IsPu… in GetProperty()
89 internal static MethodInfo GetMethod(this Type target, string name) in GetMethod() method in Google.Protobuf.Compatibility.TypeExtensions
DPropertyInfoExtensions.cs53 var method = target.GetMethod; in GetGetMethod()
/third_party/node/deps/v8/src/builtins/
Dproxy-is-extensible.tq26 // 5. Let trap be ? GetMethod(handler, "isExtensible").
28 const trap: Callable = GetMethod(handler, kTrapName)
Dproxy-has-property.tq32 // 6. Let trap be ? GetMethod(handler, "has").
34 const trap: Callable = GetMethod(handler, 'has')
Dproxy-prevent-extensions.tq27 // 5. Let trap be ? GetMethod(handler, "preventExtensions").
29 const trap: Callable = GetMethod(handler, kTrapName)
Dproxy-get-prototype-of.tq26 // 5. Let trap be ? GetMethod(handler, "getPrototypeOf").
28 const trap: Callable = GetMethod(handler, kTrapName)
Dproxy-delete-property.tq33 // 6. Let trap be ? GetMethod(handler, "deleteProperty").
35 const trap: Callable = GetMethod(handler, kTrapName)
Dproxy-set-prototype-of.tq30 // 6. Let trap be ? GetMethod(handler, "setPrototypeOf").
32 const trap: Callable = GetMethod(handler, kTrapName)
Dproxy-get-property.tq40 // 6. Let trap be ? GetMethod(handler, "get").
43 const trap: Callable = GetMethod(handler, 'get')
Dstring-match-search.tq50 // a. Let fn be ? GetMethod(regexp, @@match/@@search).
52 const fn = GetMethod(regexp, functor.FnSymbol())
Dproxy-set-property.tq50 // 6. Let trap be ? GetMethod(handler, "set").
52 const trap: Callable = GetMethod(handler, 'set')
Dstring-replaceall.tq54 // c. Let replacer be ? GetMethod(searchValue, @@replace).
58 const replacer = GetMethod(searchValue, ReplaceSymbolConstant())
Darray-from.tq44 // 4. Let usingIterator be ? GetMethod(items, @@iterator).
47 const usingIterator = GetMethod(items, IteratorSymbolConstant())
Dtyped-array-from.tq54 // 5. Let usingIterator be ? GetMethod(source, @@iterator).
57 const usingIterator = GetMethod(source, IteratorSymbolConstant())
/third_party/lzma/CPP/7zip/Archive/
DLzmaHandler.cpp196 void GetMethod(NCOM::CPropVariant &prop);
221 case kpidMethod: GetMethod(prop); break; in GetArchiveProperty()
266 void CHandler::GetMethod(NCOM::CPropVariant &prop) in GetMethod() function in NArchive::NLzma::CHandler
300 case kpidMethod: GetMethod(prop); break; in GetProperty()
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DReflectionUtil.cs319 …var getFunc = (Func<T1, ExtensionSet<T1>>)prop.GetMethod.CreateDelegate(typeof(Func<T1, ExtensionS… in CreateIsInitializedCaller()
344 MethodInfo method = typeof(ReflectionUtil).GetMethod(nameof(SampleEnumMethod)); in CheckCanConvertEnumFuncToInt32Func()
DSingleFieldAccessor.cs90 … MethodInfo hasMethod = property.DeclaringType.GetRuntimeProperty("Has" + property.Name).GetMethod; in SingleFieldAccessor()
DOneofDescriptor.cs186 var clearMethod = containingType.ClrType.GetMethod("Clear" + clrName); in CreateAccessor()
/third_party/cef/libcef_dll/ctocpp/
Drequest_ctocpp.h39 CefString GetMethod() override;
/third_party/cef/include/
Dcef_request.h89 virtual CefString GetMethod() = 0;
/third_party/node/src/crypto/
Dcrypto_bio.h144 static const BIO_METHOD* GetMethod();
Dcrypto_bio.cc36 BIOPointer bio(BIO_new(GetMethod())); in New()
222 const BIO_METHOD* NodeBIO::GetMethod() { in GetMethod() function in node::crypto::NodeBIO
/third_party/cef/tests/ceftests/
Dtest_util.cc106 EXPECT_STREQ(request1->GetMethod().ToString().c_str(), in TestRequestEqual()
107 request2->GetMethod().ToString().c_str()); in TestRequestEqual()

123