/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Compatibility/ |
H A D | TypeExtensionsTest.cs | 95 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/ |
H A D | TypeExtensionsTest.cs | 95 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/ |
H A D | TypeExtensions.cs | 69 if (ret != null && ((ret.CanRead && ret.GetMethod.IsPublic) || (ret.CanWrite && ret.SetMethod.IsPublic))) in GetProperty() 83 /// This has a few differences compared with Type.GetMethod in the desktop framework. It will throw 89 internal static MethodInfo GetMethod(this Type target, string name) in GetMethod() method in Google.Protobuf.Compatibility.TypeExtensions
|
H A D | PropertyInfoExtensions.cs | 53 var method = target.GetMethod; in GetGetMethod()
|
/third_party/lzma/CPP/7zip/Archive/ |
H A D | LzmaHandler.cpp | 193 void GetMethod(NCOM::CPropVariant &prop);
211 case kpidMethod: GetMethod(prop); break;
in GetArchiveProperty() 256 void CHandler::GetMethod(NCOM::CPropVariant &prop)
in GetMethod() function in NArchive::CHandler 290 case kpidMethod: GetMethod(prop); break;
in GetProperty()
|
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
H A D | SingleFieldAccessor.cs | 90 MethodInfo hasMethod = property.DeclaringType.GetRuntimeProperty("Has" + property.Name).GetMethod; in SingleFieldAccessor()
|
H A D | ReflectionUtil.cs | 319 var getFunc = (Func<T1, ExtensionSet<T1>>)prop.GetMethod.CreateDelegate(typeof(Func<T1, ExtensionSet<T1>>)); in CreateIsInitializedCaller() 344 MethodInfo method = typeof(ReflectionUtil).GetMethod(nameof(SampleEnumMethod)); in CheckCanConvertEnumFuncToInt32Func()
|
H A D | OneofDescriptor.cs | 186 var clearMethod = containingType.ClrType.GetMethod("Clear" + clrName); in CreateAccessor()
|
/third_party/node/src/crypto/ |
H A D | crypto_bio.h | 144 static const BIO_METHOD* GetMethod();
|
H A D | crypto_bio.cc | 36 BIOPointer bio(BIO_new(GetMethod())); in New() 222 const BIO_METHOD* NodeBIO::GetMethod() { in GetMethod() function in node::crypto::NodeBIO
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-proxy-gen.cc | 115 // 5. Let trap be ? GetMethod(handler, "apply"). in TF_BUILTIN() 118 TNode<Object> trap = GetMethod(context, handler, trap_name, &trap_undefined); in TF_BUILTIN() 169 // 5. Let trap be ? GetMethod(handler, "construct"). in TF_BUILTIN() 172 TNode<Object> trap = GetMethod(context, handler, trap_name, &trap_undefined); in TF_BUILTIN()
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
H A D | ast.py | 993 def GetMethod(self, modifiers, templated_types): member in AstBuilder 1336 return self.GetMethod(FUNCTION_VIRTUAL + FUNCTION_DTOR, None) 1482 return self.GetMethod(FUNCTION_NONE, templated_types) 1567 return self.GetMethod(FUNCTION_NONE, None) 1638 return self.GetMethod(FUNCTION_CTOR, None)
|
/third_party/node/deps/v8/src/objects/ |
H A D | objects.cc | 972 Object::GetMethod(Handle<JSReceiver>::cast(callable), in InstanceOf() 1001 MaybeHandle<Object> Object::GetMethod(Handle<JSReceiver> receiver, in GetMethod() function in v8::internal::Object 1208 // 6. Let trap be ? GetMethod(handler, "get"). in GetProperty() 1212 Object::GetMethod(Handle<JSReceiver>::cast(handler), trap_name), Object); in GetProperty() 1359 // 5. Let trap be ? GetMethod(handler, "getPrototypeOf"). in GetPrototype() 1362 Object::GetMethod(handler, trap_name), HeapObject); in GetPrototype() 3072 // 6. Let trap be ? GetMethod(handler, "has"). in HasProperty() 3076 Object::GetMethod(Handle<JSReceiver>::cast(handler), in HasProperty() 3148 isolate, trap, Object::GetMethod(handler, trap_name), Nothing<bool>()); in SetProperty() 3199 isolate, trap, Object::GetMethod(handle in DeletePropertyOrElement() [all...] |
H A D | objects.h | 469 // ES6 section 7.3.9 GetMethod 470 V8_WARN_UNUSED_RESULT static MaybeHandle<Object> GetMethod(
|
H A D | js-temporal-objects.cc | 2798 // 1. Let fields be ? GetMethod(calendar, "fields"). in CalendarFields() 2802 Object::GetMethod(calendar, isolate->factory()->fields_string()), in CalendarFields() 2840 // 2. If dateAdd is not present, set dateAdd to ? GetMethod(calendar, in CalendarDateAdd() 2845 Object::GetMethod(calendar, isolate->factory()->dateAdd_string()), in CalendarDateAdd() 2877 // 2. If dateUntil is not present, set dateUntil to ? GetMethod(calendar, in CalendarDateUntil() 2882 Object::GetMethod(calendar, isolate->factory()->dateUntil_string()), in CalendarDateUntil() 3017 // 1. Let getOffsetNanosecondsFor be ? GetMethod(timeZone, in GetOffsetNanosecondsFor() 3022 Object::GetMethod(time_zone_obj, in GetOffsetNanosecondsFor()
|
H A D | keys.cc | 1210 // 5. Let trap be ? GetMethod(handler, "ownKeys"). in CollectOwnJSProxyKeys() 1214 Object::GetMethod(Handle<JSReceiver>::cast(handler), in CollectOwnJSProxyKeys()
|
H A D | js-objects.cc | 2030 Object::GetMethod(receiver, isolate->factory()->to_primitive_symbol()), in ToPrimitive()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.h | 3239 TNode<Object> GetMethod(TNode<Context> context, TNode<Object> object,
|
H A D | code-stub-assembler.cc | 9498 TNode<Object> CodeStubAssembler::GetMethod(TNode<Context> context, 9513 return GetMethod(context, heap_obj, isolate()->factory()->iterator_symbol(),
|