/third_party/protobuf/src/google/protobuf/stubs/ |
D | callback.h | 144 typedef void (Class::*MethodType)(); typedef 146 MethodClosure0(Class* object, MethodType method, bool self_deleting) in MethodClosure0() 158 MethodType method_; 188 typedef void (Class::*MethodType)(Arg1 arg1); typedef 190 MethodClosure1(Class* object, MethodType method, bool self_deleting, in MethodClosure1() 204 MethodType method_; 236 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2); typedef 238 MethodClosure2(Class* object, MethodType method, bool self_deleting, in MethodClosure2() 252 MethodType method_; 355 typedef R (T::*MethodType)(); typedef [all …]
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
D | callback.h | 55 typedef R (T::*MethodType)(A1, A2, A3, A4) const; typedef 57 ConstMethodCallback4(const T* instance, MethodType method) in ConstMethodCallback4() 68 MethodType const method_;
|
/third_party/python/Lib/test/test_importlib/import_/ |
D | test_meta_path.py | 4 from types import MethodType 74 setattr(importer, self.finder_name, MethodType(wrapped_call, importer)) 92 setattr(importer, self.finder_name, MethodType(wrapped_call, importer))
|
D | test_caching.py | 4 from types import MethodType 60 mock.load_module = MethodType(load_module, mock)
|
/third_party/python/Lib/test/ |
D | inspect_fodder.py | 89 from types import MethodType 90 return MethodType(self, obj)
|
D | test_decorators.py | 3 from types import MethodType 346 return MethodType(self, owner) 360 return MethodType(self, owner)
|
D | test_pyclbr.py | 8 from types import FunctionType, MethodType, BuiltinFunctionType 70 if isinstance(obj, MethodType):
|
D | test_call.py | 613 from types import MethodType 656 meth = MethodType(func, args[0])
|
D | test_funcattrs.py | 268 self.fi.id = types.MethodType(id, self.fi)
|
/third_party/python/Lib/importlib/metadata/ |
D | _functools.py | 77 bound_method = types.MethodType(method, self)
|
/third_party/python/Doc/c-api/ |
D | method.rst | 59 .. index:: single: MethodType (in module types) 62 is exposed to Python programs as ``types.MethodType``.
|
D | function.rst | 20 .. index:: single: MethodType (in module types)
|
/third_party/flatbuffers/tests/MyGame/Example/ |
D | MonsterStorageGrpc.java | 82 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getStoreMethod() 115 .setType(io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING) in getRetrieveMethod() 148 .setType(io.grpc.MethodDescriptor.MethodType.CLIENT_STREAMING) in getGetMaxHitPointMethod() 181 .setType(io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING) in getGetMinMaxHitPointsMethod()
|
/third_party/python/Lib/ |
D | contextlib.py | 7 from types import MethodType, GenericAlias 444 return MethodType(cm_exit, cm) 603 return MethodType(cm_exit, cm)
|
D | copy.py | 239 d[types.MethodType] = _deepcopy_method
|
D | types.py | 41 MethodType = type(_C()._m) variable
|
D | dis.py | 16 _have_code = (types.MethodType, types.FunctionType, types.CodeType,
|
/third_party/skia/third_party/externals/jinja2/ |
D | sandbox.py | 158 callable, (types.MethodType, types.BuiltinMethodType) 209 elif isinstance(obj, types.MethodType):
|
D | runtime.py | 5 from types import MethodType 199 self.resolve_or_missing = MethodType(resolve_or_missing, self)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | sandbox.py | 138 if not isinstance(callable, (types.MethodType, 186 elif isinstance(obj, types.MethodType):
|
D | runtime.py | 14 from types import MethodType 173 self.resolve_or_missing = MethodType(resolve_or_missing, self)
|
D | nodes.py | 24 _context_function_types = (types.FunctionType, types.MethodType)
|
/third_party/jinja2/ |
D | sandbox.py | 85 callable, (types.MethodType, types.BuiltinMethodType) 140 elif isinstance(obj, types.MethodType):
|
/third_party/python/Lib/idlelib/ |
D | calltip.py | 169 fob = ob_call if isinstance(ob_call, types.MethodType) else ob
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_calltip.py | 80 tiptest(types.MethodType, "method(function, instance)")
|