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

1 2

  /art/runtime/mirror/
method_type.h 31 // C++ mirror of java.lang.invoke.MethodType
32 class MANAGED MethodType : public Object {
34 static mirror::MethodType* Create(Thread* const self,
44 return GetFieldObject<ObjectArray<Class>>(OFFSET_OF_OBJECT_MEMBER(MethodType, p_types_));
52 return GetFieldObject<Class>(OFFSET_OF_OBJECT_MEMBER(MethodType, r_type_));
61 bool IsExactMatch(mirror::MethodType* target) REQUIRES_SHARED(Locks::mutator_lock_);
65 bool IsConvertible(mirror::MethodType* target) REQUIRES_SHARED(Locks::mutator_lock_);
73 return MemberOffset(OFFSETOF_MEMBER(MethodType, form_));
77 return MemberOffset(OFFSETOF_MEMBER(MethodType, method_descriptor_));
81 return MemberOffset(OFFSETOF_MEMBER(MethodType, p_types_))
    [all...]
  /libcore/ojluni/src/lambda/java/java/lang/invoke/
MethodType.java 31 class MethodType implements java.io.Serializable {
34 MethodType methodType(Class<?> rtype, Class<?>[] ptypes) {
39 MethodType methodType(Class<?> rtype, List<Class<?>> ptypes) {
44 MethodType methodType(Class<?> rtype, Class<?> ptype0, Class<?>... ptypes) { return null; }
47 MethodType methodType(Class<?> rtype) { return null; }
50 MethodType methodType(Class<?> rtype, Class<?> ptype0) { return null;
    [all...]
  /art/runtime/verifier/
verifier_enums.h 55 enum MethodType {
64 std::ostream& operator<<(std::ostream& os, const MethodType& rhs);
  /libcore/luni/src/test/java/libcore/java/lang/invoke/
MethodTypeTest.java 21 import java.lang.invoke.MethodType;
36 MethodType mt = MethodType.methodType(int.class,
43 MethodType.methodType(null, new Class<?>[] { String.class });
49 MethodType.methodType(int.class, (Class<?>[]) null);
55 MethodType.methodType(int.class, new Class<?>[] {void.class})
    [all...]
MethodHandlesTest.java 25 import java.lang.invoke.MethodType;
90 MethodType.methodType(String.class, char[].class));
103 MethodType.methodType(void.class));
111 MethodType.methodType(void.class));
119 MethodType.methodType(void.class));
127 MethodType.methodType(void.class))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
  /prebuilts/gdb/linux-x86/lib/python2.7/
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
  /external/protobuf/src/google/protobuf/stubs/
callback.h 141 typedef void (Class::*MethodType)();
143 MethodClosure0(Class* object, MethodType method, bool self_deleting)
155 MethodType method_;
185 typedef void (Class::*MethodType)(Arg1 arg1);
187 MethodClosure1(Class* object, MethodType method, bool self_deleting,
201 MethodType method_;
233 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2);
235 MethodClosure2(Class* object, MethodType method, bool self_deleting,
249 MethodType method_;
353 typedef R (T::*MethodType)(P1, P2, P3, P4, P5, A1, A2)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
callback.h 141 typedef void (Class::*MethodType)();
143 MethodClosure0(Class* object, MethodType method, bool self_deleting)
155 MethodType method_;
185 typedef void (Class::*MethodType)(Arg1 arg1);
187 MethodClosure1(Class* object, MethodType method, bool self_deleting,
201 MethodType method_;
233 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2);
235 MethodClosure2(Class* object, MethodType method, bool self_deleting,
249 MethodType method_;
353 typedef R (T::*MethodType)(P1, P2, P3, P4, P5, A1, A2)
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
LambdaDesugaring.java 27 import java.lang.invoke.MethodType;
350 args.add(MethodType.fromMethodDescriptorString(desc, targetLoader));
401 * Produces a {@link MethodHandle} or {@link MethodType} using {@link #targetLoader} for the
415 return MethodType.fromMethodDescriptorString(type.getDescriptor(), targetLoader);
433 MethodType signature = MethodType.fromMethodDescriptorString(asmHandle.getDesc(),
  /art/test/956-methodhandles/src/
Main.java 21 import java.lang.invoke.MethodType;
88 MethodType.methodType(void.class), B.class /* specialCaller */);
118 MethodType.methodType(void.class), C.class /* specialCaller */);
124 MethodType.methodType(void.class), D.class /* specialCaller */);
132 MethodType.methodType(int.class), B.class /* specialCaller */);
138 MethodType.methodType(void.class), B.class /* specialCaller */)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
MethodType.java 56 * All instances of {@code MethodType} are immutable.
71 * {@code MethodType} objects are sometimes derived from bytecode instructions
83 * When the JVM materializes a {@code MethodType} from a descriptor string,
86 * This loading may occur at any time before the {@code MethodType} object is first derived.
90 class MethodType implements java.io.Serializable {
99 private @Stable MethodType wrapAlt; // alternative wrapped/unwrapped version
108 private MethodType(Class<?> rtype, Class<?>[] ptypes, boolean trusted) {
117 * Construct a temporary unchecked instance of MethodType for use only as a key to the intern table.
121 private MethodType(Class<?>[] ptypes, Class<?> rtype) {
196 static final ConcurrentWeakInternSet<MethodType> internTable = new ConcurrentWeakInternSet<>()
    [all...]
Transformers.java 58 protected Transformer(MethodType type) {
62 protected Transformer(MethodType type, int invokeKind) {
84 super(MethodType.methodType(nominalReturnType, exType));
108 public DropArguments(MethodType type, MethodHandle delegate,
243 super(MethodType.methodType(arrayClass.getComponentType(),
272 super(MethodType.methodType(void.class,
298 super(MethodType.methodType(type, type))
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 885 typedef void (Class::*MethodType)();
887 MethodClosure0(Class* object, MethodType method, bool self_deleting)
899 MethodType method_;
929 typedef void (Class::*MethodType)(Arg1 arg1);
931 MethodClosure1(Class* object, MethodType method, bool self_deleting,
945 MethodType method_;
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h 885 typedef void (Class::*MethodType)();
887 MethodClosure0(Class* object, MethodType method, bool self_deleting)
899 MethodType method_;
929 typedef void (Class::*MethodType)(Arg1 arg1);
931 MethodClosure1(Class* object, MethodType method, bool self_deleting,
945 MethodType method_;
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
common.h 885 typedef void (Class::*MethodType)();
887 MethodClosure0(Class* object, MethodType method, bool self_deleting)
899 MethodType method_;
929 typedef void (Class::*MethodType)(Arg1 arg1);
931 MethodClosure1(Class* object, MethodType method, bool self_deleting,
945 MethodType method_;
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
common.h 885 typedef void (Class::*MethodType)();
887 MethodClosure0(Class* object, MethodType method, bool self_deleting)
899 MethodType method_;
929 typedef void (Class::*MethodType)(Arg1 arg1);
931 MethodClosure1(Class* object, MethodType method, bool self_deleting,
945 MethodType method_;
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 360 QualType MethodType = MethodTypeInfo->getType();
367 const FunctionProtoType *FPT = MethodType->castAs<FunctionProtoType>();
371 MethodType = Context.getFunctionType(Result, FPT->getParamTypes(),
393 MethodType, MethodTypeInfo,
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp     [all...]
  /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;
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/0.13.2/
grpc-core-0.13.2.jar 

Completed in 1024 milliseconds

1 2