Searched refs:MethodType (Results 1 – 9 of 9) sorted by relevance
/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/selinux/sepolgen/src/sepolgen/ |
D | yacc.py | 455 if n[0:2] == 'p_' and type(v) in (types.FunctionType, types.MethodType): continue 729 if isinstance(f,types.MethodType): 2078 elif isinstance(ef, types.MethodType): 2095 … if (type(ldict[f]) in (types.FunctionType, types.MethodType) and ldict[f].__name__[:2] == 'p_' 2138 … if (type(f) in (types.FunctionType,types.MethodType) and ldict[f].__name__[:2] != 'p_')]
|
D | lex.py | 435 if type(handle) in (types.FunctionType, types.MethodType): 657 ismethod = isinstance(f, 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 | 3102 tok::TokenKind MethodType, in ActOnMethodDeclaration() argument 3138 MethodType == tok::minus, isVariadic, in ActOnMethodDeclaration() 3222 if (MethodType == tok::minus) { in ActOnMethodDeclaration()
|
/external/chromium-trace/trace-viewer/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/chromium-trace/trace-viewer/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 | 4741 TypeSourceInfo *MethodType, 7034 tok::TokenKind MethodType,
|