Searched defs:parameterTypes (Results 1 - 25 of 44) sorted by relevance

12

/external/javassist/src/main/javassist/
H A DCtNewWrappedConstructor.java26 public static CtConstructor wrapped(CtClass[] parameterTypes, argument
35 CtConstructor cons = new CtConstructor(parameterTypes, declaring);
39 parameterTypes, constParam);
H A DCtNewMethod.java386 * <code>parameterTypes</code> into an array of <code>Object</code>.
450 * @param parameterTypes a list of the parameter types.
461 CtClass[] parameterTypes,
467 return CtNewWrappedMethod.wrapped(returnType, mname, parameterTypes,
459 wrapped(CtClass returnType, String mname, CtClass[] parameterTypes, CtClass[] exceptionTypes, CtMethod body, ConstParameter constParam, CtClass declaring) argument
H A DCtNewWrappedMethod.java28 CtClass[] parameterTypes,
34 CtMethod mt = new CtMethod(returnType, mname, parameterTypes,
45 parameterTypes, returnType, constParam);
27 wrapped(CtClass returnType, String mname, CtClass[] parameterTypes, CtClass[] exceptionTypes, CtMethod body, ConstParameter constParam, CtClass declaring) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DMethodWrapper.java27 public Object newInstance(String name, String[] parameterTypes, String returnType); argument
H A DReflectUtils.java220 public static Object newInstance(Class type, Class[] parameterTypes, Object[] args) { argument
221 return newInstance(getConstructor(type, parameterTypes), args);
243 public static Constructor getConstructor(Class type, Class[] parameterTypes) { argument
245 Constructor constructor = type.getDeclaredConstructor(parameterTypes);
331 final String methodName, final Class[] parameterTypes)
337 return cl.getDeclaredMethod(methodName, parameterTypes);
330 findDeclaredMethod(final Class type, final String methodName, final Class[] parameterTypes) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DParameterIterator.java46 private final Iterator<? extends CharSequence> parameterTypes; field in class:ParameterIterator
50 public ParameterIterator(@Nonnull List<? extends CharSequence> parameterTypes, argument
53 this.parameterTypes = parameterTypes.iterator();
59 return parameterTypes.hasNext();
63 @Nonnull final String type = parameterTypes.next().toString();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderProtoReference.java45 @Nonnull final BuilderTypeList parameterTypes; field in class:BuilderProtoReference
49 public BuilderProtoReference(@Nonnull BuilderStringReference shorty, @Nonnull BuilderTypeList parameterTypes, argument
52 this.parameterTypes = parameterTypes;
57 return parameterTypes;
75 CharSequenceUtils.listEquals(parameterTypes, other.parameterTypes);
84 return CollectionUtils.compareAsIterable(Ordering.usingToString(), parameterTypes, o.parameterTypes);
H A DBuilderMethodPool.java118 @Nonnull private final List<? extends CharSequence> parameterTypes; field in class:BuilderMethodPool.MethodKey
122 @Nonnull List<? extends CharSequence> parameterTypes, @Nonnull String returnType) {
125 this.parameterTypes = parameterTypes;
138 return parameterTypes;
121 MethodKey(@onnull String definingClass, @Nonnull String name, @Nonnull List<? extends CharSequence> parameterTypes, @Nonnull String returnType) argument
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DProtoIdItem.java41 private TypeListItem parameterTypes; field in class:ProtoIdItem
57 this.parameterTypes = (parameters.size() == 0) ? null
119 if (parameterTypes != null) {
120 parameterTypes = typeLists.intern(parameterTypes);
129 int paramsOff = OffsettedItem.getAbsoluteOffsetOr0(parameterTypes);
/external/junit/src/org/junit/experimental/theories/
H A DParameterSignature.java25 Class<?>[] parameterTypes, Annotation[][] parameterAnnotations) {
27 for (int i= 0; i < parameterTypes.length; i++) {
28 sigs.add(new ParameterSignature(parameterTypes[i],
24 signatures( Class<?>[] parameterTypes, Annotation[][] parameterAnnotations) argument
/external/mockito/src/org/mockito/internal/invocation/
H A DSerializableMethod.java19 private Class<?>[] parameterTypes; field in class:SerializableMethod
27 parameterTypes = method.getParameterTypes();
42 return parameterTypes;
55 return declaringClass.getDeclaredMethod(methodName, parameterTypes);
93 if (!Arrays.equals(parameterTypes, other.parameterTypes))
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DMethodUtil.java79 public static int getParameterRegisterCount(@Nonnull Collection<? extends CharSequence> parameterTypes, argument
82 for (CharSequence paramType: parameterTypes) {
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DPrototype.java38 private final StdTypeList parameterTypes; field in class:Prototype
101 StdTypeList parameterTypes = new StdTypeList(paramCount);
104 parameterTypes.set(i, params[i]);
107 result = new Prototype(descriptor, returnType, parameterTypes);
216 StdTypeList parameterTypes) {
225 if (parameterTypes == null) {
226 throw new NullPointerException("parameterTypes == null");
231 this.parameterTypes = parameterTypes;
277 int thisSize = parameterTypes
215 Prototype(String descriptor, Type returnType, StdTypeList parameterTypes) argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DReflectionUtils.java109 private static void appendParameterTypes(StringBuilder buffer, Type[] parameterTypes) { argument
112 for (Type parameterType : parameterTypes) {
173 * @param parameterTypes
178 public static String getMethodSignature(String name, Type... parameterTypes) { argument
180 Assert.isNotNull(parameterTypes);
184 appendParameterTypes(buffer, parameterTypes);
243 * @param parameterTypes
252 Class<?>[] parameterTypes,
254 Assert.equals(parameterTypes.length, arguments.length);
255 String signature = getMethodSignature(name, parameterTypes);
250 invokeMethod2(Object object, String name, Class<?>[] parameterTypes, Object[] arguments) argument
[all...]
/external/javassist/src/main/javassist/convert/
H A DTransformBefore.java24 protected CtClass[] parameterTypes; field in class:TransformBefore
38 parameterTypes = origMethod.getParameterTypes();
55 String desc = Descriptor.ofParameters(parameterTypes) + 'V';
64 makeCode(parameterTypes, cp);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastClass.java87 public Object invoke(String name, Class[] parameterTypes, Object obj, Object[] args) throws InvocationTargetException { argument
88 return invoke(getIndex(name, parameterTypes), obj, args);
95 public Object newInstance(Class[] parameterTypes, Object[] args) throws InvocationTargetException { argument
96 return newInstance(getIndex(parameterTypes), args);
107 public FastMethod getMethod(String name, Class[] parameterTypes) { argument
109 return getMethod(type.getMethod(name, parameterTypes));
115 public FastConstructor getConstructor(Class[] parameterTypes) { argument
117 return getConstructor(type.getConstructor(parameterTypes));
153 * @param parameterTypes the parameter array
156 abstract public int getIndex(String name, Class[] parameterTypes); argument
165 getIndex(Class[] parameterTypes) argument
193 getSignatureWithoutReturnType(String name, Class[] parameterTypes) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DFauxveridesTest.java172 final List<Class<?>> parameterTypes; field in class:FauxveridesTest.MethodSignature
177 parameterTypes = Arrays.asList(method.getParameterTypes());
185 && parameterTypes.equals(other.parameterTypes)
193 return Objects.hashCode(name, parameterTypes, typeSignature);
198 typeSignature, name, getTypesString(parameterTypes));
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java144 public static String signatureToDescriptor (Class [] parameterTypes, Class returnType) argument
146 return new signatureCompiler ().signatureDescriptor (parameterTypes, returnType);
340 final String [] parameterTypes = descriptorToParameterTypes (methoddescriptor);
344 for (int p = 0; p < parameterTypes.length; p++)
346 //System.out.println ("DESCRIPTOR: [" + parameterTypes [p] + "]");
350 final String typeUserName = typeDescriptorToUserName (parameterTypes [p]);
407 emit ('('); parameterTypes (_parameterTypes); emit (')'); returnType (_returnType);
420 private void parameterTypes (Class [] _parameterTypes) method in class:Types.signatureCompiler
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DAndroidTranslator.java236 private String generateConstructorBody(CtClass ctClass, CtClass[] parameterTypes) throws NotFoundException { argument
238 new CtMethod(CtClass.voidType, "<init>", parameterTypes, ctClass),
430 CtClass[] parameterTypes = ctMethod.getParameterTypes();
431 if (parameterTypes.length == 0) {
435 for (int i = 0; i < parameterTypes.length; i++) {
438 CtClass parameterType = parameterTypes[i];
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 504 milliseconds

12