Home
last modified time | relevance | path

Searched refs:MethodName (Results 1 – 25 of 5340) sorted by relevance

12345678910>>...214

/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/libraries/nacl_io/
H A Dreal_pepper_interface.cc24 #define METHOD0(Class, ReturnType, MethodName) \ argument
25 virtual ReturnType MethodName();
26 #define METHOD1(Class, ReturnType, MethodName, Type0) \ argument
27 virtual ReturnType MethodName(Type0);
29 virtual ReturnType MethodName(Type0, Type1);
31 virtual ReturnType MethodName(Type0, Type1, Type2);
47 #define METHOD0(BaseClass, ReturnType, MethodName) \ argument
48 ReturnType Real##BaseClass::MethodName() { \
49 return interface_->MethodName(); \
53 return interface_->MethodName(arg0); \
[all …]
H A Dpepper_interface.h132 #define METHOD0(Class, ReturnType, MethodName) \ argument
133 virtual ReturnType MethodName() = 0;
134 #define METHOD1(Class, ReturnType, MethodName, Type0) \ argument
135 virtual ReturnType MethodName(Type0) = 0;
136 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \ argument
137 virtual ReturnType MethodName(Type0, Type1) = 0;
138 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \ argument
139 virtual ReturnType MethodName(Type0, Type1, Type2) = 0;
140 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ argument
141 virtual ReturnType MethodName(Type0, Type1, Type2, Type3) = 0;
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-mediastore/source/model/
H A DMethodName.cpp29 MethodName GetMethodNameForName(const Aws::String& name) in GetMethodNameForName()
34 return MethodName::PUT; in GetMethodNameForName()
38 return MethodName::GET_; in GetMethodNameForName()
42 return MethodName::DELETE_; in GetMethodNameForName()
46 return MethodName::HEAD; in GetMethodNameForName()
52 return static_cast<MethodName>(hashCode); in GetMethodNameForName()
55 return MethodName::NOT_SET; in GetMethodNameForName()
62 case MethodName::PUT: in GetNameForMethodName()
64 case MethodName::GET_: in GetNameForMethodName()
66 case MethodName::DELETE_: in GetNameForMethodName()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom/
H A DCodeMethodReferenceExpressionTest.cs45 Assert.IsNotNull (cmre.MethodName, "#1"); in Constructor0()
53 cmre.MethodName = methodName; in Constructor0()
54 Assert.IsNotNull (cmre.MethodName, "#6"); in Constructor0()
55 Assert.AreSame (methodName, cmre.MethodName, "#7"); in Constructor0()
57 cmre.MethodName = null; in Constructor0()
58 Assert.IsNotNull (cmre.MethodName, "#8"); in Constructor0()
78 Assert.IsNotNull (cmre.MethodName, "#1"); in Constructor1()
79 Assert.AreSame (methodName, cmre.MethodName, "#2"); in Constructor1()
88 Assert.IsNotNull (cmre.MethodName, "#7"); in Constructor1()
104 Assert.IsNotNull (cmre.MethodName, "#1"); in Constructor2()
[all …]
H A DCodeDelegateCreateExpressionTest.cs47 Assert.IsNotNull (cdce.MethodName, "#3"); in Constructor0()
48 Assert.AreEqual (string.Empty, cdce.MethodName, "#4"); in Constructor0()
60 cdce.MethodName = null; in Constructor0()
61 Assert.IsNotNull (cdce.MethodName, "#10"); in Constructor0()
62 Assert.AreEqual (string.Empty, cdce.MethodName, "#11"); in Constructor0()
85 Assert.IsNotNull (cdce.MethodName, "#3"); in Constructor1()
86 Assert.AreSame (methodName, cdce.MethodName, "#4"); in Constructor1()
95 Assert.IsNotNull (cdce.MethodName, "#9"); in Constructor1()
96 Assert.AreEqual (string.Empty, cdce.MethodName, "#10"); in Constructor1()
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/tests/nacl_io_test/
H A Dpepper_interface_mock.h20 #define METHOD0(Class, ReturnType, MethodName) \ argument
21 MOCK_METHOD0(MethodName, ReturnType());
22 #define METHOD1(Class, ReturnType, MethodName, Type0) \ argument
23 MOCK_METHOD1(MethodName, ReturnType(Type0));
24 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) \ argument
25 MOCK_METHOD2(MethodName, ReturnType(Type0, Type1));
26 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \ argument
27 MOCK_METHOD3(MethodName, ReturnType(Type0, Type1, Type2));
28 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ argument
29 MOCK_METHOD4(MethodName, ReturnType(Type0, Type1, Type2, Type3));
[all …]
/dports/devel/upp/upp/bazaar/FormEditorProperties/
H A DPropertiesMacro.h35 #define PROPS_METHOD_SET(MethodName, ...) \ argument
36 void PropSet##MethodName(const Vector<Value>& args) \
39 PropertyCaller<CLASSNAME, __VA_ARGS__>::call(*this, &CLASSNAME::MethodName, c); \
42 #define PROPS_METHOD_GET(MethodName, ...) \ argument
43 void PropGet##MethodName(Value& v, const Vector<Value>& args) \
46 PropertyCaller<CLASSNAME, __VA_ARGS__>::call(*this, &CLASSNAME::MethodName, c); \
50 #define PROPS_CLASS_METHOD_SET(ClassName, MethodName, ...) \ argument
51 void PropSet##MethodName(const Vector<Value>& args) \
54 PropertyCaller<ClassName, __VA_ARGS__>::call(GetCtrl(), &ClassName::MethodName, c); \
57 #define PROPS_CLASS_METHOD_GET(ClassName, MethodName, ...) \ argument
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/aws/aws-sdk-go-v2/service/mediastore/types/
H A Denums.go43 type MethodName string type
47 MethodNamePut MethodName = "PUT"
48 MethodNameGet MethodName = "GET"
49 MethodNameDelete MethodName = "DELETE"
50 MethodNameHead MethodName = "HEAD"
56 func (MethodName) Values() []MethodName {
57 return []MethodName{
/dports/security/vault/aws-sdk-go-v2-credentials-v1.1.5/service/mediastore/types/
H A Denums.go43 type MethodName string type
47 MethodNamePut MethodName = "PUT"
48 MethodNameGet MethodName = "GET"
49 MethodNameDelete MethodName = "DELETE"
50 MethodNameHead MethodName = "HEAD"
56 func (MethodName) Values() []MethodName {
57 return []MethodName{
/dports/security/vault/aws-sdk-go-v2-fdbaadbce5fd/service/mediastore/types/
H A Denums.go43 type MethodName string type
47 MethodNamePut MethodName = "PUT"
48 MethodNameGet MethodName = "GET"
49 MethodNameDelete MethodName = "DELETE"
50 MethodNameHead MethodName = "HEAD"
56 func (MethodName) Values() []MethodName {
57 return []MethodName{
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-credentials-v1.1.1/service/mediastore/types/
H A Denums.go43 type MethodName string type
47 MethodNamePut MethodName = "PUT"
48 MethodNameGet MethodName = "GET"
49 MethodNameDelete MethodName = "DELETE"
50 MethodNameHead MethodName = "HEAD"
56 func (MethodName) Values() []MethodName {
57 return []MethodName{
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-be1c89938486/service/mediastore/types/
H A Denums.go43 type MethodName string type
47 MethodNamePut MethodName = "PUT"
48 MethodNameGet MethodName = "GET"
49 MethodNameDelete MethodName = "DELETE"
50 MethodNameHead MethodName = "HEAD"
56 func (MethodName) Values() []MethodName {
57 return []MethodName{
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/aws/aws-sdk-go-v2/service/mediastore/types/
H A Denums.go43 type MethodName string type
47 MethodNamePut MethodName = "PUT"
48 MethodNameGet MethodName = "GET"
49 MethodNameDelete MethodName = "DELETE"
50 MethodNameHead MethodName = "HEAD"
56 func (MethodName) Values() []MethodName {
57 return []MethodName{
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-a930583ec379/service/mediastore/types/
H A Denums.go43 type MethodName string type
47 MethodNamePut MethodName = "PUT"
48 MethodNameGet MethodName = "GET"
49 MethodNameDelete MethodName = "DELETE"
50 MethodNameHead MethodName = "HEAD"
56 func (MethodName) Values() []MethodName {
57 return []MethodName{
/dports/security/vault/aws-sdk-go-v2-1.5.0/service/mediastore/types/
H A Denums.go43 type MethodName string type
47 MethodNamePut MethodName = "PUT"
48 MethodNameGet MethodName = "GET"
49 MethodNameDelete MethodName = "DELETE"
50 MethodNameHead MethodName = "HEAD"
56 func (MethodName) Values() []MethodName {
57 return []MethodName{
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/toolkit/helper/
H A Dmacros.hxx80 #define DISPLAY_EXCEPTION( ClassName, MethodName ) \
84 #define DISPLAY_EXCEPTION( ClassName, MethodName )
97 xListener->MethodName( aMulti ); \
107 DISPLAY_EXCEPTION( ClassName, MethodName ) \
123 xListener->MethodName( aMulti ); \
133 DISPLAY_EXCEPTION( ClassName, MethodName ) \
139 void ClassName::MethodName( const EventType& evt ) \
140 IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD_BODY( ClassName, InterfaceName, MethodName, EventType )
142 #define IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD( ClassName, InterfaceName, MethodName, EventType ) \
143 void ClassName::MethodName( const EventType& evt ) \
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/toolkit/helper/
H A Dmacros.hxx80 #define DISPLAY_EXCEPTION( ClassName, MethodName ) \
84 #define DISPLAY_EXCEPTION( ClassName, MethodName )
97 xListener->MethodName( aMulti ); \
107 DISPLAY_EXCEPTION( ClassName, MethodName ) \
123 xListener->MethodName( aMulti ); \
133 DISPLAY_EXCEPTION( ClassName, MethodName ) \
139 void ClassName::MethodName( const EventType& evt ) \
140 IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD_BODY( ClassName, InterfaceName, MethodName, EventType )
142 #define IMPL_LISTENERMULTIPLEXER_LISTENERMETHOD( ClassName, InterfaceName, MethodName, EventType ) \
143 void ClassName::MethodName( const EventType& evt ) \
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client_sdk/src/libraries/nacl_io/pepper/
H A Ddefine_empty_macros.h7 #define METHOD0(Class, ReturnType, MethodName) argument
8 #define METHOD1(Class, ReturnType, MethodName, Type0) argument
9 #define METHOD2(Class, ReturnType, MethodName, Type0, Type1) argument
10 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) argument
11 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) argument
12 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \ argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Extensions/ui/WebControls/Expressions/
H A DMethodExpression.cs29 public string MethodName { property in System.Web.UI.WebControls.Expressions.MethodExpression
75 if (String.IsNullOrEmpty(MethodName)) { in ResolveMethod()
83MethodName = String.Format(CultureInfo.CurrentCulture, MethodName, dataSource.EntitySetName); in ResolveMethod()
85 else if (MethodName.Contains("{0}")) { in ResolveMethod()
97 methodInfo = type.GetMethod(MethodName, MethodFlags); in ResolveMethod()
122 AtlasWeb.MethodExpression_MethodNotFound, MethodName)); in GetQueryable()
127 AtlasWeb.MethodExpression_MethodMustBeStatic, MethodName)); in GetQueryable()
133 MethodName, source.GetType())); in GetQueryable()
144 AtlasWeb.MethodExpression_ParameterNotFound, MethodName, param.Name)); in GetQueryable()
/dports/sysutils/signon-qt5/signond-07d45498ad374d9e8e4ff6a886f4b4bb850c0cb5/lib/SignOn/
H A Didentityinfo.h43 typedef QString MethodName; typedef
106 const QMap<MethodName,MechanismsList> &methods);
273 void setMethod(const MethodName &method,
280 void removeMethod(const MethodName &method);
304 QList<MethodName> methods() const;
311 MechanismsList mechanisms(const MethodName &method) const;
/dports/devel/awscli/awscli-1.20.61/awscli/examples/iot1click-devices/
H A Dget-device-methods.rst13 "MethodName": "getDeviceHealthParameters"
16 "MethodName": "setDeviceHealthMonitorCallback"
19 "MethodName": "getDeviceHealthMonitorCallback"
22 "MethodName": "setOnClickCallback"
25 "MethodName": "getOnClickCallback"
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/source/Core/
H A DRichManglingContext.cpp27 delete get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser); in ResetProvider()
56 m_cxx_method_parser = new CPlusPlusLanguage::MethodName(demangled); in FromCxxMethodName()
68 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in IsCtorOrDtor()
83 return get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->IsValid(); in IsFunction()
130 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in ParseFunctionBaseName()
148 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetContext(); in ParseFunctionDeclContextName()
165 m_buffer = get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser) in ParseFullName()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/Core/
H A DRichManglingContext.cpp27 delete get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser); in ResetProvider()
56 m_cxx_method_parser = new CPlusPlusLanguage::MethodName(demangled); in FromCxxMethodName()
68 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in IsCtorOrDtor()
83 return get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->IsValid(); in IsFunction()
130 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in ParseFunctionBaseName()
148 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetContext(); in ParseFunctionDeclContextName()
165 m_buffer = get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser) in ParseFullName()
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/source/Core/
H A DRichManglingContext.cpp27 delete get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser); in ResetProvider()
56 m_cxx_method_parser = new CPlusPlusLanguage::MethodName(demangled); in FromCxxMethodName()
68 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in IsCtorOrDtor()
83 return get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->IsValid(); in IsFunction()
130 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in ParseFunctionBaseName()
148 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetContext(); in ParseFunctionDeclContextName()
165 m_buffer = get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser) in ParseFullName()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/source/Core/
H A DRichManglingContext.cpp27 delete get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser); in ResetProvider()
56 m_cxx_method_parser = new CPlusPlusLanguage::MethodName(demangled); in FromCxxMethodName()
68 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in IsCtorOrDtor()
83 return get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->IsValid(); in IsFunction()
130 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in ParseFunctionBaseName()
148 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetContext(); in ParseFunctionDeclContextName()
165 m_buffer = get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser) in ParseFullName()

12345678910>>...214