/external/protobuf/src/google/protobuf/stubs/ |
D | common.h | 888 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/ |
D | six.py | 539 create_bound_method = types.MethodType 550 return types.MethodType(func, obj, obj.__class__) 553 return types.MethodType(func, None, cls)
|
D | test_six.py | 475 assert isinstance(b, types.MethodType) 488 assert isinstance(u, types.MethodType)
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
D | util.py | 266 elif isinstance(resolved_name, types.MethodType):
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vendored/ |
D | six.py | 505 create_bound_method = types.MethodType 513 return types.MethodType(func, obj, obj.__class__)
|
/external/selinux/sepolgen/src/sepolgen/ |
D | yacc.py | 461 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_')]
|
D | lex.py | 438 if type(handle) in (types.FunctionType, types.MethodType): 663 ismethod = isinstance(f, types.MethodType)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/ |
D | six.py | 522 create_bound_method = types.MethodType 530 return types.MethodType(func, obj, obj.__class__)
|
D | test_six.py | 455 assert isinstance(b, types.MethodType)
|
/external/clang/lib/Sema/ |
D | SemaLambda.cpp | 358 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()
|
D | SemaDeclObjC.cpp | 4132 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/ |
D | app2.py | 49 self._new_style = isinstance(run_with_args, types.MethodType)
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
D | gcs_json_media.py | 380 download_http._request = types.MethodType(OverrideRequest, download_http)
|
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/ |
D | mox.py | 236 _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/ |
D | mox.py | 236 _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/ |
D | index.rst | 230 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/ |
D | index.rst | 230 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/ |
D | Sema.h | 4990 TypeSourceInfo *MethodType, 7375 tok::TokenKind MethodType,
|