Home
last modified time | relevance | path

Searched refs:MethodType (Results 1 – 18 of 18) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
Dcommon.h888 typedef void (Class::*MethodType)(); typedef
890 MethodClosure0(Class* object, MethodType method, bool self_deleting) in MethodClosure0()
902 MethodType method_;
932 typedef void (Class::*MethodType)(Arg1 arg1); typedef
934 MethodClosure1(Class* object, MethodType method, bool self_deleting, in MethodClosure1()
948 MethodType method_;
980 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2); typedef
982 MethodClosure2(Class* object, MethodType method, bool self_deleting, in MethodClosure2()
996 MethodType method_;
/external/chromium-trace/catapult/third_party/six/
Dsix.py539 create_bound_method = types.MethodType
550 return types.MethodType(func, obj, obj.__class__)
553 return types.MethodType(func, None, cls)
Dtest_six.py475 assert isinstance(b, types.MethodType)
488 assert isinstance(u, types.MethodType)
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
Dutil.py266 elif isinstance(resolved_name, types.MethodType):
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vendored/
Dsix.py505 create_bound_method = types.MethodType
513 return types.MethodType(func, obj, obj.__class__)
/external/selinux/sepolgen/src/sepolgen/
Dyacc.py461 if n[0:2] == 'p_' and type(v) in (types.FunctionType, types.MethodType): continue
735 if isinstance(f,types.MethodType):
2083 elif isinstance(ef, types.MethodType):
2100 … if (type(ldict[f]) in (types.FunctionType, types.MethodType) and ldict[f].__name__[:2] == 'p_'
2143 … if (type(f) in (types.FunctionType,types.MethodType) and ldict[f].__name__[:2] != 'p_')]
Dlex.py438 if type(handle) in (types.FunctionType, types.MethodType):
663 ismethod = isinstance(f, types.MethodType)
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/
Dsix.py522 create_bound_method = types.MethodType
530 return types.MethodType(func, obj, obj.__class__)
Dtest_six.py455 assert isinstance(b, types.MethodType)
/external/clang/lib/Sema/
DSemaLambda.cpp358 QualType MethodType = MethodTypeInfo->getType(); in startLambdaDefinition() local
365 const FunctionProtoType *FPT = MethodType->castAs<FunctionProtoType>(); in startLambdaDefinition()
369 MethodType = Context.getFunctionType(Result, FPT->getParamTypes(), in startLambdaDefinition()
391 MethodType, MethodTypeInfo, in startLambdaDefinition()
DSemaDeclObjC.cpp4132 tok::TokenKind MethodType, in ActOnMethodDeclaration() argument
4170 MethodType == tok::minus, isVariadic, in ActOnMethodDeclaration()
4254 if (MethodType == tok::minus) { in ActOnMethodDeclaration()
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
Dapp2.py49 self._new_style = isinstance(run_with_args, types.MethodType)
/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dgcs_json_media.py380 download_http._request = types.MethodType(OverrideRequest, download_http)
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
Dmox.py236 _USE_MOCK_OBJECT = [types.FunctionType, types.ModuleType, types.MethodType]
808 if type(self._class_to_mock) in (types.FunctionType, types.MethodType):
/external/chromium-trace/catapult/third_party/mox3/mox3/
Dmox.py236 _USE_MOCK_OBJECT = [types.FunctionType, types.ModuleType, types.MethodType]
808 if type(self._class_to_mock) in (types.FunctionType, types.MethodType):
/external/chromium-trace/catapult/third_party/six/documentation/
Dindex.rst230 and 3, this will return a :func:`py3:types.MethodType` object. The reason
231 this wrapper exists is that on Python 2, the ``MethodType`` constructor
238 return a :func:`py2:types.MethodType` object. In Python 3, unbound methods
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/documentation/
Dindex.rst230 and 3, this will return a :func:`py3:types.MethodType` object. The reason
231 this wrapper exists is that on Python 2, the ``MethodType`` constructor
/external/clang/include/clang/Sema/
DSema.h4990 TypeSourceInfo *MethodType,
7375 tok::TokenKind MethodType,