Lines Matching refs:result

83         Map<Class<? extends Annotation>, Annotation> result =
93 if (result.put(klass, a) != null)
98 return result;
145 Annotation[][] result = new Annotation[numParameters][];
160 result[i] = annotations.toArray(EMPTY_ANNOTATIONS_ARRAY);
162 return result;
294 Object result = null;
300 result = parseClassValue(buf, constPool, container);
303 result = parseAnnotation(buf, constPool, container, true);
308 result = parseConst(tag, buf, constPool);
311 if (!(result instanceof ExceptionProxy) &&
312 !memberType.isInstance(result))
313 result = new AnnotationTypeMismatchExceptionProxy(
314 result.getClass() + "[" + result + "]");
315 return result;
391 Type result = reify.getResult();
392 return toClass(result);
493 byte[] result = new byte[length];
501 result[i] = (byte) constPool.getIntAt(index);
507 return typeMismatch ? exceptionProxy(tag) : result;
512 char[] result = new char[length];
520 result[i] = (char) constPool.getIntAt(index);
526 return typeMismatch ? exceptionProxy(tag) : result;
531 double[] result = new double[length];
539 result[i] = constPool.getDoubleAt(index);
545 return typeMismatch ? exceptionProxy(tag) : result;
550 float[] result = new float[length];
558 result[i] = constPool.getFloatAt(index);
564 return typeMismatch ? exceptionProxy(tag) : result;
569 int[] result = new int[length];
577 result[i] = constPool.getIntAt(index);
583 return typeMismatch ? exceptionProxy(tag) : result;
588 long[] result = new long[length];
596 result[i] = constPool.getLongAt(index);
602 return typeMismatch ? exceptionProxy(tag) : result;
607 short[] result = new short[length];
615 result[i] = (short) constPool.getIntAt(index);
621 return typeMismatch ? exceptionProxy(tag) : result;
626 boolean[] result = new boolean[length];
634 result[i] = (constPool.getIntAt(index) != 0);
640 return typeMismatch ? exceptionProxy(tag) : result;
645 String[] result = new String[length];
653 result[i] = constPool.getUTF8At(index);
659 return typeMismatch ? exceptionProxy(tag) : result;
666 Object[] result = new Class<?>[length];
673 result[i] = parseClassValue(buf, constPool, container);
679 return typeMismatch ? exceptionProxy(tag) : result;
686 Object[] result = (Object[]) Array.newInstance(enumType, length);
693 result[i] = parseEnumValue(enumType, buf, constPool, container);
699 return typeMismatch ? exceptionProxy(tag) : result;
707 Object[] result = (Object[]) Array.newInstance(annotationType, length);
714 result[i] = parseAnnotation(buf, constPool, container, true);
720 return typeMismatch ? exceptionProxy(tag) : result;