HomeSort by relevance Sort by last modified time
    Searched refs:MethodType (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/remoting/protocol/
authentication_method.h 24 enum MethodType {
54 MethodType type() const { return type_; }
73 AuthenticationMethod(MethodType type, HashFunction hash_function);
75 MethodType type_;
authentication_method.cc 85 AuthenticationMethod::AuthenticationMethod(MethodType type,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
new.py 14 from types import MethodType as instancemethod
Bastion.py 34 from types import MethodType
121 if type(attribute) == MethodType:
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
dis.py 13 _have_code = (types.MethodType, types.FunctionType, types.CodeType,
socket.py 50 from types import MethodType
230 m = MethodType(p,None,_socketobject)
copy.py 265 _deepcopy_dispatch[types.MethodType] = _deepcopy_method
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
new.py 14 from types import MethodType as instancemethod
Bastion.py 34 from types import MethodType
121 if type(attribute) == MethodType:
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
dis.py 13 _have_code = (types.MethodType, types.FunctionType, types.CodeType,
socket.py 50 from types import MethodType
230 m = MethodType(p,None,_socketobject)
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
callback.h 55 typedef R (T::*MethodType)(A1, A2, A3, A4) const;
57 ConstMethodCallback4(const T* instance, MethodType method)
68 MethodType const method_;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.h 900 typedef void (Class::*MethodType)();
902 MethodClosure0(Class* object, MethodType method, bool self_deleting)
914 MethodType method_;
944 typedef void (Class::*MethodType)(Arg1 arg1);
946 MethodClosure1(Class* object, MethodType method, bool self_deleting,
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common.h 840 typedef void (Class::*MethodType)();
842 MethodClosure0(Class* object, MethodType method, bool self_deleting)
853 MethodType method_;
882 typedef void (Class::*MethodType)(Arg1 arg1);
884 MethodClosure1(Class* object, MethodType method, bool self_deleting,
897 MethodType method_;
928 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2);
930 MethodClosure2(Class* object, MethodType method, bool self_deleting,
943 MethodType method_;
    [all...]
  /art/runtime/verifier/
method_verifier.h 54 enum MethodType {
61 std::ostream& operator<<(std::ostream& os, const MethodType& rhs);
546 mirror::ArtMethod* ResolveMethodAndCheckAccess(uint32_t method_idx, MethodType method_type)
572 MethodType method_type,
578 void VerifyInvocationArgsUnresolvedMethod(const Instruction* inst, MethodType method_type,
584 MethodType method_type, bool is_range,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 7 from types import ClassType, FunctionType, MethodType, BuiltinFunctionType
75 if not isinstance(obj, MethodType):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pyclbr.py 7 from types import ClassType, FunctionType, MethodType, BuiltinFunctionType
75 if not isinstance(obj, MethodType):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 146 elif type(ob)==types.MethodType:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 146 elif type(ob)==types.MethodType:
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtmv2.h 200 RTM_ENTITY_METHOD_TYPE MethodType;
206 RTM_ENTITY_METHOD_TYPE MethodType;
  /external/clang/lib/Sema/
SemaLambda.cpp 358 QualType MethodType = MethodTypeInfo->getType();
365 const FunctionProtoType *FPT = MethodType->castAs<FunctionProtoType>();
369 MethodType = Context.getFunctionType(Result, FPT->getParamTypes(),
391 MethodType, MethodTypeInfo,
    [all...]
  /external/chromium_org/third_party/ply/
lex.py 494 if type(handle) in (types.FunctionType, types.MethodType):
735 if isinstance(f, types.MethodType):
804 if isinstance(f, types.MethodType):
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
mock_drt.py 70 self.__delegate._driver_class = types.MethodType(self._driver_class, self.__delegate)

Completed in 1811 milliseconds

1 2