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

1 2 3

  /dalvik/vm/oo/
Resolve.h 30 enum MethodType {
53 * Can cause the method's class to be initialized if methodType is
59 MethodType methodType);
96 const char* dvmMethodTypeStr(MethodType methodType);
Resolve.cpp 177 MethodType methodType)
184 assert(methodType != METHOD_INTERFACE);
213 if (methodType == METHOD_DIRECT) {
215 } else if (methodType == METHOD_STATIC) {
243 if (methodType == METHOD_STATIC) {
269 if (methodType == METHOD_STATIC && !dvmIsClassInitialized(resMethod->clazz))
566 * For debugging: return a string representing the methodType.
568 const char* dvmMethodTypeStr(MethodType methodType)
    [all...]
  /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,
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppBoundClass.h 117 typedef void (T::*MethodType)(const CppArgumentList&, CppVariant*);
118 MemberCallback(T* object, MethodType method)
130 MethodType m_method;
136 typedef void (T::*MethodType)(CppVariant*);
137 MemberGetterCallback(T* object, MethodType method)
146 MethodType m_method;
  /dalvik/vm/analysis/
Optimize.h 40 MethodType methodType, VerifyError* pFailure);
Optimize.cpp 47 MethodType methodType);
49 MethodType methodType);
756 MethodType methodType, VerifyError* pFailure)
761 assert(methodType == METHOD_DIRECT ||
762 methodType == METHOD_VIRTUAL ||
763 methodType == METHOD_STATIC);
802 if (methodType == METHOD_DIRECT)
    [all...]
  /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,
  /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,
  /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 901 typedef void (Class::*MethodType)();
903 MethodClosure0(Class* object, MethodType method, bool self_deleting)
915 MethodType method_;
945 typedef void (Class::*MethodType)(Arg1 arg1);
947 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);
549 mirror::ArtMethod* ResolveMethodAndCheckAccess(uint32_t method_idx, MethodType method_type)
575 MethodType method_type,
  /external/chromium_org/third_party/jinja2/
sandbox.py 18 from jinja2.utils import FunctionType, MethodType, TracebackType, CodeType, \
130 elif isinstance(obj, MethodType):
  /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):
  /dalvik/vm/native/
dalvik_system_VMRuntime.cpp 343 MethodType methodType) {
356 if ((methodType == METHOD_STATIC) && !dvmIsClassInitialized(clazz)) {
363 if (methodType == METHOD_DIRECT) {
365 } else if (methodType == METHOD_STATIC) {
518 MethodType methodType = (((pDexMethod->accessFlags & ACC_STATIC) != 0) ?
521 preloadDexCachesResolveMethod(pDvmDex, pDexMethod->methodIdx, 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:

Completed in 834 milliseconds

1 2 3