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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseParameterAnnotations.java 71 public final AnnotationsList getParameterAnnotations() {
  /libcore/ojluni/src/main/java/java/lang/reflect/
Constructor.java 399 public Annotation[][] getParameterAnnotations() {
400 // Android-changed: getParameterAnnotations() implemented using Executable.
Method.java 510 public Annotation[][] getParameterAnnotations() {
511 // Android-changed: getParameterAnnotations() implemented using Executable.
Executable.java 532 public abstract Annotation[][] getParameterAnnotations();
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationsDirectoryItem.java 225 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
ClassDefItem.java 383 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
384 return annotationsDirectory.getParameterAnnotations(method);
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 375 public static AnnotationsList getParameterAnnotations(Method method) {
390 return invisible.getParameterAnnotations();
394 return visible.getParameterAnnotations();
399 return AnnotationsList.combine(visible.getParameterAnnotations(),
400 invisible.getParameterAnnotations());
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationsDirectoryItem.java 228 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
ClassDefItem.java 384 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
385 return annotationsDirectory.getParameterAnnotations(method);
  /external/guava/guava/src/com/google/common/reflect/
Invokable.java 119 Annotation[][] annotations = getParameterAnnotations();
182 abstract Annotation[][] getParameterAnnotations();
212 @Override final Annotation[][] getParameterAnnotations() {
213 return method.getParameterAnnotations();
276 @Override final Annotation[][] getParameterAnnotations() {
277 return constructor.getParameterAnnotations();
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider.java 304 method.getParameterAnnotations();
305 for (Annotation[] parameterAnnotations : method.getParameterAnnotations()) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
ClassSection.java 73 @Nullable List<? extends AnnotationSetKey> getParameterAnnotations(@Nonnull MethodKey key);
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
MethodDescriptor.java 88 final Annotation annotations[][] = getParameterAnnotations();
117 final Annotation annotations[][] = getParameterAnnotations();
295 public Annotation[][] getParameterAnnotations() {
296 return mMethod.getParameterAnnotations();
312 final Annotation[][] annotations = mMethod.getParameterAnnotations();
414 Annotation[][] parametersAnnotations = mMethod.getParameterAnnotations();
441 Annotation[][] parametersAnnotations = mMethod.getParameterAnnotations();
  /libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
ExecutableParameterTest.java 40 * Tests for {@link Executable#getParameterAnnotations()} via the {@link Constructor} and
55 Annotation[][] noParameterAnnotations = getParameterAnnotations(
62 Annotation[][] parameterAnnotations = getParameterAnnotations(
158 Annotation[][] noParameterAnnotations = getParameterAnnotations(
165 Annotation[][] parameterAnnotations = getParameterAnnotations(
240 Annotation[][] annotations = getParameterAnnotations(constructor, 2);
261 Annotation[][] annotations = getParameterAnnotations(constructor, 2);
281 Annotation[][] annotations = getParameterAnnotations(constructor, 1);
287 Annotation[][] allAnnotations = getParameterAnnotations(executable, 1);
293 private static Annotation[][] getParameterAnnotations(
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java 61 method.getParameterAnnotations();
  /external/javassist/src/main/javassist/
CtBehavior.java 242 public Object[][] getParameterAnnotations() throws ClassNotFoundException {
243 return getParameterAnnotations(false);
255 * @see #getParameterAnnotations()
261 return getParameterAnnotations(true);
268 Object[][] getParameterAnnotations(boolean ignoreNotFound)
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/25.4.0-alpha1/
lint-25.4.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/25.4.0-alpha3/
lint-25.4.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/25.4.0-alpha5/
lint-25.4.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/25.4.0-alpha6/
lint-25.4.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/25.4.0-alpha7/
lint-25.4.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/25.5.0-alpha-preview-02/
lint-25.5.0-alpha-preview-02.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/26.0.0-alpha4/
lint-26.0.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/26.0.0-alpha5/
lint-26.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/26.0.0-alpha6/
lint-26.0.0-alpha6.jar 

Completed in 1876 milliseconds

1 2 3 4 5 6 7 8 91011>>