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

1 2 3

  /art/runtime/mirror/
method_type.h 31 // C++ mirror of java.lang.invoke.MethodType
32 class MANAGED MethodType : public Object {
34 static MethodType* Create(Thread* const self,
39 static MethodType* CloneWithoutLeadingParameter(Thread* const self,
40 ObjPtr<MethodType> method_type)
48 return GetFieldObject<ObjectArray<Class>>(OFFSET_OF_OBJECT_MEMBER(MethodType, p_types_));
60 return GetFieldObject<Class>(OFFSET_OF_OBJECT_MEMBER(MethodType, r_type_));
69 bool IsExactMatch(MethodType* target) REQUIRES_SHARED(Locks::mutator_lock_);
73 bool IsConvertible(MethodType* target) REQUIRES_SHARED(Locks::mutator_lock_);
81 return MemberOffset(OFFSETOF_MEMBER(MethodType, form_))
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
MethodType.java 10 * A MethodType is an ordered 4-tuple consisting of:
20 public class MethodType {
26 public static MethodType fromMethodUsage(MethodUsage methodUsage) {
27 return new MethodType(methodUsage.getDeclaration().getTypeParameters(), methodUsage.getParamTypes(),
31 public MethodType(List<ResolvedTypeParameterDeclaration> typeParameters, List<ResolvedType> formalArgumentTypes,
  /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...]
  /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)
  /external/python/cpython2/Lib/
types.py 54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
  /external/python/cpython3/Lib/
types.py 34 MethodType = type(_C()._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)
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/rrlp_components/
MethodType.java 42 public class MethodType extends Asn1Choice {
60 "MethodType: " + tag + " maps to both " + select0 + " and " + select);
66 public MethodType() {
90 * Creates a new MethodType from encoded stream.
92 public static MethodType fromPerUnaligned(byte[] encodedBytes) {
93 MethodType result = new MethodType();
99 * Creates a new MethodType from encoded stream.
101 public static MethodType fromPerAligned(byte[] encodedBytes) {
102 MethodType result = new MethodType()
    [all...]
  /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...]
  /art/test/956-methodhandles/src/
Main.java 21 import java.lang.invoke.MethodType;
116 MethodType.methodType(void.class), B.class /* specialCaller */);
146 MethodType.methodType(void.class), C.class /* specialCaller */);
152 MethodType.methodType(void.class), D.class /* specialCaller */);
160 MethodType.methodType(int.class), B.class /* specialCaller */);
166 MethodType.methodType(void.class), B.class /* specialCaller */)
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
LambdaDesugaring.java 27 import java.lang.invoke.MethodType;
406 args.add(MethodType.fromMethodDescriptorString(desc, targetLoader));
627 * Produces a {@link MethodHandle} or {@link MethodType} using {@link #targetLoader} for the
641 return MethodType.fromMethodDescriptorString(type.getDescriptor(), targetLoader);
659 MethodType signature =
660 MethodType.fromMethodDescriptorString(
  /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...]
  /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...]
  /prebuilts/sdk/tools/
core-lambda-stubs.jar 
  /prebuilts/sdk/tools/darwin/bin/
core-lambda-stubs.jar 

Completed in 614 milliseconds

1 2 3