Home
last modified time | relevance | path

Searched defs:methodInfo (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/dports/lang/gcc9-devel/gcc-9-20211007/libgo/go/go/types/
H A Dinterfaces.go60 type methodInfo struct { struct
61 scope *Scope // scope of interface method; or nil
62 src *ast.Field // syntax tree representation of interface method; or nil
63 fun *Func // corresponding fully type-checked method type; or nil
66 func (info *methodInfo) String() string {
73 func (info *methodInfo) Pos() token.Pos {
80 func (info *methodInfo) id(pkg *Package) string {
97 func (s *methodInfoSet) insert(pkg *Package, m *methodInfo) *methodInfo {
110 func (check *Checker) declareInMethodSet(mset *methodInfoSet, pos token.Pos, m *methodInfo) bool {
120 func (check *Checker) reportAltMethod(m *methodInfo) {
/dports/lang/gcc9/gcc-9.4.0/libgo/go/go/types/
H A Dinterfaces.go60 type methodInfo struct { struct
61 scope *Scope // scope of interface method; or nil
62 src *ast.Field // syntax tree representation of interface method; or nil
63 fun *Func // corresponding fully type-checked method type; or nil
66 func (info *methodInfo) String() string {
73 func (info *methodInfo) Pos() token.Pos {
80 func (info *methodInfo) id(pkg *Package) string {
97 func (s *methodInfoSet) insert(pkg *Package, m *methodInfo) *methodInfo {
110 func (check *Checker) declareInMethodSet(mset *methodInfoSet, pos token.Pos, m *methodInfo) bool {
120 func (check *Checker) reportAltMethod(m *methodInfo) {
/dports/lang/gcc9-aux/gcc-9.1.0/libgo/go/go/types/
H A Dinterfaces.go60 type methodInfo struct { struct
61 scope *Scope // scope of interface method; or nil
62 src *ast.Field // syntax tree representation of interface method; or nil
63 fun *Func // corresponding fully type-checked method type; or nil
66 func (info *methodInfo) String() string {
73 func (info *methodInfo) Pos() token.Pos {
80 func (info *methodInfo) id(pkg *Package) string {
97 func (s *methodInfoSet) insert(pkg *Package, m *methodInfo) *methodInfo {
110 func (check *Checker) declareInMethodSet(mset *methodInfoSet, pos token.Pos, m *methodInfo) bool {
120 func (check *Checker) reportAltMethod(m *methodInfo) {
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/
H A DActionDescriptorHelper.cs10 public static ICollection<ActionSelector> GetSelectors(MethodInfo methodInfo) in GetSelectors()
17 public static bool IsDefined(MemberInfo methodInfo, Type attributeType, bool inherit) in IsDefined()
22 public static object[] GetCustomAttributes(MemberInfo methodInfo, bool inherit) in GetCustomAttributes()
27 …public static object[] GetCustomAttributes(MemberInfo methodInfo, Type attributeType, bool inherit) in GetCustomAttributes()
32 …eterDescriptor[] GetParameters(ActionDescriptor actionDescriptor, MethodInfo methodInfo, ref Param… in GetParameters()
40 …azilyFetchParametersCollection(ActionDescriptor actionDescriptor, MethodInfo methodInfo, ref Param… in LazilyFetchParametersCollection()
H A DReflectedAttributeCache.cs24 public static ICollection<FilterAttribute> GetMethodFilterAttributes(MethodInfo methodInfo) in GetMethodFilterAttributes()
29 …ICollection<ActionMethodSelectorAttribute> GetActionMethodSelectorAttributes(MethodInfo methodInfo) in GetActionMethodSelectorAttributes()
34 …tic ICollection<ActionNameSelectorAttribute> GetActionNameSelectorAttributes(MethodInfo methodInfo) in GetActionNameSelectorAttributes()
/dports/net-p2p/bitmark-recorder/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/btcjson/
H A Dregister.go76 type methodInfo struct { struct
77 maxParams int
78 numReqParams int
79 numOptParams int
80 defaults map[int]reflect.Value
81 flags UsageFlag
82 usage string
/dports/net-p2p/bitmark/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/btcjson/
H A Dregister.go76 type methodInfo struct { struct
77 maxParams int
78 numReqParams int
79 numOptParams int
80 defaults map[int]reflect.Value
81 flags UsageFlag
82 usage string
/dports/net-p2p/bitmark-cli/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/btcjson/
H A Dregister.go76 type methodInfo struct { struct
77 maxParams int
78 numReqParams int
79 numOptParams int
80 defaults map[int]reflect.Value
81 flags UsageFlag
82 usage string
/dports/net-p2p/bitmark-daemon/bitmarkd-0.13.3/vendor/github.com/btcsuite/btcd/btcjson/
H A Dregister.go76 type methodInfo struct { struct
77 maxParams int
78 numReqParams int
79 numOptParams int
80 defaults map[int]reflect.Value
81 flags UsageFlag
82 usage string
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/btcsuite/btcd/btcjson/
H A Dregister.go76 type methodInfo struct { struct
77 maxParams int
78 numReqParams int
79 numOptParams int
80 defaults map[int]reflect.Value
81 flags UsageFlag
82 usage string
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/btcsuite/btcd/btcjson/
H A Dregister.go76 type methodInfo struct { struct
77 maxParams int
78 numReqParams int
79 numOptParams int
80 defaults map[int]reflect.Value
81 flags UsageFlag
82 usage string
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Http/Controllers/
H A DReflectedHttpActionDescriptor.cs63 …ReflectedHttpActionDescriptor(HttpControllerDescriptor controllerDescriptor, MethodInfo methodInfo) in ReflectedHttpActionDescriptor()
161 private void InitializeProperties(MethodInfo methodInfo) in InitializeProperties()
172 internal static Type GetReturnType(MethodInfo methodInfo) in GetReturnType()
245 private static string GetActionName(MethodInfo methodInfo, object[] actionAttributes) in GetActionName()
253 …private static Collection<HttpMethod> GetSupportedHttpMethods(MethodInfo methodInfo, object[] acti… in GetSupportedHttpMethods()
290 private static ActionExecutor InitializeActionExecutor(MethodInfo methodInfo) in InitializeActionExecutor()
307 public ActionExecutor(MethodInfo methodInfo) in ActionExecutor()
335 private static Func<object, object[], Task<object>> GetExecutor(MethodInfo methodInfo) in GetExecutor()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/Async/
H A DAsyncActionMethodSelector.cs91 private static string GetCanonicalMethodName(MethodInfo methodInfo) { in GetCanonicalMethodName()
109 private static bool IsAsyncSuffixedMethod(MethodInfo methodInfo) { in IsAsyncSuffixedMethod()
113 private static bool IsCompletedSuffixedMethod(MethodInfo methodInfo) { in IsCompletedSuffixedMethod()
117 private static bool IsMethodDecoratedWithAliasingAttribute(MethodInfo methodInfo) { in IsMethodDecoratedWithAliasingAttribute()
138 private static bool IsValidActionMethod(MethodInfo methodInfo) { in IsValidActionMethod()
142 … private static bool IsValidActionMethod(MethodInfo methodInfo, bool stripInfrastructureMethods) { in IsValidActionMethod()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/Async/
H A DAsyncActionMethodSelector.cs109 private string GetCanonicalMethodName(MethodInfo methodInfo) in GetCanonicalMethodName()
129 private bool IsAsyncSuffixedMethod(MethodInfo methodInfo) in IsAsyncSuffixedMethod()
134 private bool IsCompletedSuffixedMethod(MethodInfo methodInfo) in IsCompletedSuffixedMethod()
139 private static bool IsMethodDecoratedWithAliasingAttribute(MethodInfo methodInfo) in IsMethodDecoratedWithAliasingAttribute()
163 private bool IsValidActionMethod(MethodInfo methodInfo) in IsValidActionMethod()
168 private bool IsValidActionMethod(MethodInfo methodInfo, bool stripInfrastructureMethods) in IsValidActionMethod()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/
H A DReflectedAttributeCache.cs20 … public static ICollection<FilterAttribute> GetMethodFilterAttributes(MethodInfo methodInfo) { in GetMethodFilterAttributes()
24 …ollection<ActionMethodSelectorAttribute> GetActionMethodSelectorAttributes(MethodInfo methodInfo) { in GetActionMethodSelectorAttributes()
28 …c ICollection<ActionNameSelectorAttribute> GetActionNameSelectorAttributes(MethodInfo methodInfo) { in GetActionNameSelectorAttributes()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/Expressions/
H A DMethodCallExpressionHelper.cs20 …static void PrepareForVariables(MethodBase methodInfo, ParameterExpression objectArray, Collection… in PrepareForVariables()
62 …static MethodCallExpression PrepareForCallExpression(MethodInfo methodInfo, ParameterExpression ta… in PrepareForCallExpression()
76 …static MethodCallExpression PrepareForCallExpression(MethodInfo methodInfo, ParameterExpression ta… in PrepareForCallExpression()
146 …static Expression ComposeLinqExpression(MethodInfo methodInfo, ParameterExpression targetInstance,… in ComposeLinqExpression()
195 …<object, object[], object> GetFunc(CodeActivityMetadata metadata, MethodInfo methodInfo, bool valu… in GetFunc()
251 …tatic Func<object, object[], object> GetFunc(CodeActivityMetadata metadata, MethodInfo methodInfo, in GetFunc()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Services/System/Web/Services/Protocols/
H A DLogicalMethodInfo.cs41 MethodInfo methodInfo; field in System.Web.Services.Protocols.LogicalMethodInfo
63 public LogicalMethodInfo(MethodInfo methodInfo) : this (methodInfo, null) { in LogicalMethodInfo()
66 internal LogicalMethodInfo(MethodInfo methodInfo, WebMethod webMethod) { in LogicalMethodInfo()
408 …static ParameterInfo[] GetInParameters(MethodInfo methodInfo, ParameterInfo[] paramInfos, int star… in GetInParameters()
431 …static ParameterInfo[] GetOutParameters(MethodInfo methodInfo, ParameterInfo[] paramInfos, int sta… in GetOutParameters()
466 public static bool IsBeginMethod(MethodInfo methodInfo) { in IsBeginMethod()
475 public static bool IsEndMethod(MethodInfo methodInfo) { in IsEndMethod()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/System/Workflow/Activities/
H A DServiceOperationHelpers.cs20 … public static string GetOperationName(IServiceProvider serviceProvider, MethodInfo methodInfo) in GetOperationName()
63 public static bool IsAsyncOperation(IServiceProvider serviceProvider, MethodInfo methodInfo) in IsAsyncOperation()
94 … public static bool IsInitiatingOperation(IServiceProvider serviceProvider, MethodInfo methodInfo) in IsInitiatingOperation()
156 public static bool IsValidServiceOperation(MethodInfo methodInfo) in IsValidServiceOperation()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DInfopointProcessor.java56 void process(CompiledMethodInfo methodInfo, Infopoint info) { in process()
81 …private void recordScopeKlasses(CompiledMethodInfo methodInfo, BytecodePosition bcp, VirtualObject… in recordScopeKlasses()
110 private void processCallInfoPoint(CompiledMethodInfo methodInfo, Call call) { in processCallInfoPoint()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DInfopointProcessor.java58 void process(CompiledMethodInfo methodInfo, Infopoint info) { in process()
83 …private void recordScopeKlasses(CompiledMethodInfo methodInfo, BytecodePosition bcp, VirtualObject… in recordScopeKlasses()
112 private void processCallInfoPoint(CompiledMethodInfo methodInfo, Call call) { in processCallInfoPoint()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DInfopointProcessor.java56 void process(CompiledMethodInfo methodInfo, Infopoint info) { in process()
81 …private void recordScopeKlasses(CompiledMethodInfo methodInfo, BytecodePosition bcp, VirtualObject… in recordScopeKlasses()
110 private void processCallInfoPoint(CompiledMethodInfo methodInfo, Call call) { in processCallInfoPoint()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DInfopointProcessor.java58 void process(CompiledMethodInfo methodInfo, Infopoint info) { in process()
83 …private void recordScopeKlasses(CompiledMethodInfo methodInfo, BytecodePosition bcp, VirtualObject… in recordScopeKlasses()
112 private void processCallInfoPoint(CompiledMethodInfo methodInfo, Call call) { in processCallInfoPoint()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DInfopointProcessor.java58 void process(CompiledMethodInfo methodInfo, Infopoint info) { in process()
83 …private void recordScopeKlasses(CompiledMethodInfo methodInfo, BytecodePosition bcp, VirtualObject… in recordScopeKlasses()
112 private void processCallInfoPoint(CompiledMethodInfo methodInfo, Call call) { in processCallInfoPoint()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DInfopointProcessor.java58 void process(CompiledMethodInfo methodInfo, Infopoint info) { in process()
83 …private void recordScopeKlasses(CompiledMethodInfo methodInfo, BytecodePosition bcp, VirtualObject… in recordScopeKlasses()
112 private void processCallInfoPoint(CompiledMethodInfo methodInfo, Call call) { in processCallInfoPoint()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DInfopointProcessor.java58 void process(CompiledMethodInfo methodInfo, Infopoint info) { in process()
83 …private void recordScopeKlasses(CompiledMethodInfo methodInfo, BytecodePosition bcp, VirtualObject… in recordScopeKlasses()
112 private void processCallInfoPoint(CompiledMethodInfo methodInfo, Call call) { in processCallInfoPoint()

12345678910>>...16