/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | callback.h | 144 typedef void (Class::*MethodType)(); typedef in google::protobuf::internal::MethodClosure0 146 MethodClosure0(Class* object, MethodType method, bool self_deleting) in MethodClosure0() 158 MethodType method_; 188 typedef void (Class::*MethodType)(Arg1 arg1); typedef in google::protobuf::internal::MethodClosure1 190 MethodClosure1(Class* object, MethodType method, bool self_deleting, in MethodClosure1() 204 MethodType method_; 236 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2); typedef in google::protobuf::internal::MethodClosure2 238 MethodClosure2(Class* object, MethodType method, bool self_deleting, in MethodClosure2() 252 MethodType method_; 355 typedef R (T::*MethodType)(); typedef in google::protobuf::internal::MethodResultCallback_0_0 379 typedef R (T::*MethodType)(P1, P2, P3, P4, P5, P6, A1, A2); global() typedef in google::protobuf::internal::MethodResultCallback_6_2 [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | callback.h | 55 typedef R (T::*MethodType)(A1, A2, A3, A4) const; 57 ConstMethodCallback4(const T* instance, MethodType method) in ConstMethodCallback4() 68 MethodType const method_;
|
/third_party/python/Lib/test/test_importlib/import_/ |
H A D | test_meta_path.py | 4 from types import MethodType namespace 74 setattr(importer, self.finder_name, MethodType(wrapped_call, importer)) 92 setattr(importer, self.finder_name, MethodType(wrapped_call, importer))
|
H A D | test_caching.py | 4 from types import MethodType namespace 60 mock.load_module = MethodType(load_module, mock)
|
/third_party/python/Lib/test/ |
H A D | inspect_fodder.py | 89 from types import MethodType namespace 90 return MethodType(self, obj)
|
H A D | test_decorators.py | 3 from types import MethodType namespace 356 return MethodType(self, owner) 370 return MethodType(self, owner)
|
H A D | test_pyclbr.py | 8 from types import FunctionType, MethodType, BuiltinFunctionType namespace 71 if isinstance(obj, MethodType):
|
H A D | test_call.py | 645 from types import MethodType namespace 688 meth = MethodType(func, args[0])
|
H A D | test_funcattrs.py | 268 self.fi.id = types.MethodType(id, self.fi)
|
/third_party/python/Lib/importlib/metadata/ |
H A D | _functools.py | 77 bound_method = types.MethodType(method, self)
|
/third_party/python/Lib/ |
H A D | contextlib.py | 8 from types import MethodType, GenericAlias namespace 452 return MethodType(cm_exit, cm) 616 return MethodType(cm_exit, cm)
|
H A D | copy.py | 239 d[types.MethodType] = _deepcopy_method
|
H A D | types.py | 41 MethodType = type(_C()._m) variable
|
H A D | inspect.py | 308 return isinstance(object, types.MethodType) 2451 if isinstance(obj, types.MethodType): 2463 # Unwrap until we find an explicit signature or a MethodType (which will be 2466 or isinstance(f, types.MethodType))) 2467 if isinstance(obj, types.MethodType):
|
H A D | dis.py | 23 _have_code = (types.MethodType, types.FunctionType, types.CodeType,
|
/third_party/jinja2/ |
H A D | sandbox.py | 85 callable, (types.MethodType, types.BuiltinMethodType) 140 elif isinstance(obj, types.MethodType):
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | sandbox.py | 158 callable, (types.MethodType, types.BuiltinMethodType) 209 elif isinstance(obj, types.MethodType):
|
H A D | runtime.py | 5 from types import MethodType namespace 199 self.resolve_or_missing = MethodType(resolve_or_missing, self)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | sandbox.py | 138 if not isinstance(callable, (types.MethodType, 186 elif isinstance(obj, types.MethodType):
|
H A D | runtime.py | 14 from types import MethodType namespace 173 self.resolve_or_missing = MethodType(resolve_or_missing, self)
|
H A D | nodes.py | 24 _context_function_types = (types.FunctionType, types.MethodType)
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | sandbox.py | 158 callable, (types.MethodType, types.BuiltinMethodType) 209 elif isinstance(obj, types.MethodType):
|
H A D | runtime.py | 5 from types import MethodType namespace 199 self.resolve_or_missing = MethodType(resolve_or_missing, self)
|
/third_party/python/Lib/idlelib/ |
H A D | calltip.py | 169 fob = ob_call if isinstance(ob_call, types.MethodType) else ob
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_calltip.py | 80 tiptest(types.MethodType,
|