Home
last modified time | relevance | path

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

12

/third_party/node/deps/npm/node_modules/es-to-primitive/
Des2015.js31 var GetMethod = function GetMethod(O, P) { class
59 exoticToPrim = GetMethod(input, Symbol.toPrimitive);
/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.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/npm/node_modules/es-abstract/
Des2015.js283 GetMethod: function GetMethod(O, P) {
461 actualMethod = this.GetMethod(obj, $Symbol.iterator);
513 var iteratorReturn = this.GetMethod(iterator, 'return');
/third_party/grpc/src/core/lib/security/authorization/
Devaluate_args.h40 absl::string_view GetMethod() const;
Devaluate_args.cc50 absl::string_view EvaluateArgs::GetMethod() const { in GetMethod() function in grpc_core::EvaluateArgs
Dauthorization_engine.cc110 absl::string_view method(args.GetMethod()); in CreateActivation()
/third_party/node/deps/npm/node_modules/es-abstract/operations/
D2015.js45 GetMethod: 'https://ecma-international.org/ecma-262/6.0/#sec-getmethod', property
D2016.js46 GetMethod: 'https://ecma-international.org/ecma-262/7.0/#sec-getmethod', property
D2017.js47 GetMethod: 'https://ecma-international.org/ecma-262/8.0/#sec-getmethod', property
/third_party/cef/libcef_dll/ctocpp/
Drequest_ctocpp.h39 CefString GetMethod() override;
/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/grpc/src/cpp/ext/filters/census/
Dcontext.h125 inline absl::string_view GetMethod(const grpc_slice* path) { in GetMethod() function
Dserver_filter.cc96 calld->method_ = GetMethod(&calld->path_); in OnDoneRecvInitialMetadataCb()
Dclient_filter.cc145 method_ = GetMethod(&path_); in Init()
/third_party/cef/include/
Dcef_request.h89 virtual CefString GetMethod() = 0;
/third_party/node/src/
Dnode_crypto_bio.h145 static const BIO_METHOD* GetMethod();
Dnode_crypto_bio.cc35 BIOPointer bio(BIO_new(GetMethod())); in New()
224 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()
Drequest_unittest.cc87 EXPECT_EQ(method, request->GetMethod()); in TEST()
117 EXPECT_EQ(method, request->GetMethod()); in TEST()
/third_party/node/deps/npm/node_modules/es-abstract/test/
Dtests.js572 …t['throws'](function () { return ES.GetMethod({ 7: 7 }, 7); }, TypeError, 'Throws a TypeError if `…
573 t.equal(ES.GetMethod({}, 'a'), undefined, 'returns undefined in property is undefined');
574 t.equal(ES.GetMethod({ a: null }, 'a'), undefined, 'returns undefined if property is null');
575 …t.equal(ES.GetMethod({ a: undefined }, 'a'), undefined, 'returns undefined if property is undefine…
577 …t['throws'](function () { ES.GetMethod({ a: 'b' }, 'a'); }, TypeError, 'throws TypeError if proper…
578 t.equal(ES.GetMethod(obj, 'a'), obj.a, 'returns property if it is callable');

12