/external/proguard/src/proguard/classfile/attribute/annotation/ |
D | ParameterAnnotationsAttribute.java | 36 public Annotation[][] parameterAnnotations; field in ParameterAnnotationsAttribute 53 Annotation[][] parameterAnnotations) in ParameterAnnotationsAttribute() argument 59 this.parameterAnnotations = parameterAnnotations; in ParameterAnnotationsAttribute() 72 Annotation[] annotations = parameterAnnotations[parameterIndex]; in annotationsAccept()
|
D | RuntimeInvisibleParameterAnnotationsAttribute.java | 47 Annotation[][] parameterAnnotations) in RuntimeInvisibleParameterAnnotationsAttribute() argument 52 parameterAnnotations); in RuntimeInvisibleParameterAnnotationsAttribute()
|
D | RuntimeVisibleParameterAnnotationsAttribute.java | 47 Annotation[][] parameterAnnotations) in RuntimeVisibleParameterAnnotationsAttribute() argument 52 parameterAnnotations); in RuntimeVisibleParameterAnnotationsAttribute()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/ |
D | ParameterIterator.java | 47 private final Iterator<? extends Set<? extends Annotation>> parameterAnnotations; field in ParameterIterator 51 … @Nonnull List<? extends Set<? extends Annotation>> parameterAnnotations, in ParameterIterator() argument 54 this.parameterAnnotations = parameterAnnotations.iterator(); in ParameterIterator() 67 if (parameterAnnotations.hasNext()) { in next() 68 annotations = parameterAnnotations.next(); in next()
|
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/ |
D | JpaFinderProxy.java | 112 Object annotation = descriptor.parameterAnnotations[i]; in bindQueryNamedParameters() 136 Object annotation = descriptor.parameterAnnotations[i]; in bindQueryRawParameters() 174 Annotation[][] parameterAnnotations = method.getParameterAnnotations(); in getFinderDescriptor() local 175 Object[] discoveredAnnotations = new Object[parameterAnnotations.length]; in getFinderDescriptor() 176 for (int i = 0; i < parameterAnnotations.length; i++) { in getFinderDescriptor() 177 Annotation[] annotations = parameterAnnotations[i]; in getFinderDescriptor() 197 finderDescriptor.parameterAnnotations = discoveredAnnotations; in getFinderDescriptor() 251 volatile Object[] parameterAnnotations; field in JpaFinderProxy.FinderDescriptor
|
/external/proguard/src/proguard/classfile/editor/ |
D | AttributeAdder.java | 424 Annotation[][] parameterAnnotations = in visitRuntimeVisibleParameterAnnotationsAttribute() local 427 Arrays.fill(parameterAnnotations, EMPTY_ANNOTATIONS); in visitRuntimeVisibleParameterAnnotationsAttribute() 433 parameterAnnotations); in visitRuntimeVisibleParameterAnnotationsAttribute() 449 Annotation[][] parameterAnnotations = in visitRuntimeInvisibleParameterAnnotationsAttribute() local 452 Arrays.fill(parameterAnnotations, EMPTY_ANNOTATIONS); in visitRuntimeInvisibleParameterAnnotationsAttribute() 458 parameterAnnotations); in visitRuntimeInvisibleParameterAnnotationsAttribute()
|
D | ParameterAnnotationsAttributeEditor.java | 52 ArrayUtil.add(targetParameterAnnotationsAttribute.parameterAnnotations[parameterIndex], in addAnnotation()
|
/external/junit-params/src/main/java/junitparams/internal/ |
D | InvokeParameterisedMethod.java | 101 Annotation[][] parameterAnnotations = testMethod.getMethod().getParameterAnnotations(); in castParamsUsingConverters() local 103 … columns = castAllParametersToProperTypes(columns, expectedParameterTypes, parameterAnnotations); in castParamsUsingConverters() 141 … Annotation[][] parameterAnnotations) throws ConversionFailedException { in castAllParametersToProperTypes() argument 145 if (parameterAnnotations[i].length == 0) in castAllParametersToProperTypes() 148 result[i] = castParameterUsingConverter(columns[i], parameterAnnotations[i]); in castAllParametersToProperTypes()
|
/external/turbine/java/com/google/turbine/bytecode/ |
D | LowerAttributes.java | 59 addParameterAnnotations(attributes, method.parameterAnnotations()); in methodAttributes() 125 for (List<AnnotationInfo> parameterAnnotations : annotations) { in addParameterAnnotations() 128 for (AnnotationInfo annotation : parameterAnnotations) { in addParameterAnnotations()
|
D | ClassFile.java | 238 private final ImmutableList<ImmutableList<AnnotationInfo>> parameterAnnotations; field in ClassFile.MethodInfo 250 ImmutableList<ImmutableList<AnnotationInfo>> parameterAnnotations, in MethodInfo() argument 260 this.parameterAnnotations = parameterAnnotations; in MethodInfo() 302 public ImmutableList<ImmutableList<AnnotationInfo>> parameterAnnotations() { in parameterAnnotations() method in ClassFile.MethodInfo 303 return parameterAnnotations; in parameterAnnotations()
|
D | AttributeWriter.java | 176 for (List<AnnotationInfo> parameterAnnotations : attribute.annotations()) { in writeParameterAnnotations() 177 tmp.writeShort(parameterAnnotations.size()); in writeParameterAnnotations() 178 for (AnnotationInfo annotation : parameterAnnotations) { in writeParameterAnnotations()
|
D | ClassReader.java | 431 ImmutableList.Builder<ImmutableList<AnnotationInfo>> parameterAnnotations = in readMethods() local 434 parameterAnnotations.add(x.build()); in readMethods() 449 parameterAnnotations.build(), in readMethods()
|
/external/proguard/src/proguard/optimize/ |
D | DuplicateInitializerFixer.java | 205 System.arraycopy(parameterAnnotationsAttribute.parameterAnnotations, in visitAnyParameterAnnotationsAttribute() 212 parameterAnnotationsAttribute.parameterAnnotations = annotations; in visitAnyParameterAnnotationsAttribute()
|
D | MethodDescriptorShrinker.java | 175 Annotation[][] annotations = parameterAnnotationsAttribute.parameterAnnotations; in visitAnyParameterAnnotationsAttribute()
|
/external/junit/src/main/java/org/junit/experimental/theories/ |
D | ParameterSignature.java | 48 Class<?>[] parameterTypes, Annotation[][] parameterAnnotations) { in signatures() argument 52 parameterAnnotations[i])); in signatures()
|
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/ |
D | CheckedProviderMethodsModule.java | 98 Annotation[][] parameterAnnotations = method.getParameterAnnotations(); in createProviderMethod() local 100 Key<?> key = getKey(errors, parameterTypes.get(i), method, parameterAnnotations[i]); in createProviderMethod()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | DexWriter.java | 739 …List<? extends AnnotationSetKey> parameterAnnotations = classSection.getParameterAnnotations(metho… 740 if (parameterAnnotations != null) { 741 Integer prev = internedItems.get(parameterAnnotations); 748 internedItems.put(parameterAnnotations, position); 752 writer.writeInt(parameterAnnotations.size()); 753 for (AnnotationSetKey annotationSetKey: parameterAnnotations) { 794 int parameterAnnotations = 0; 817 parameterAnnotations++; 826 if (fieldAnnotations == 0 && methodAnnotations == 0 && parameterAnnotations == 0) { 848 writer.writeInt(parameterAnnotations);
|
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/ |
D | FactoryProvider.java | 325 for (Annotation[] parameterAnnotations : method.getParameterAnnotations()) { in createMethodMapping() 326 for (Annotation parameterAnnotation : parameterAnnotations) { in createMethodMapping()
|
/external/turbine/java/com/google/turbine/lower/ |
D | Lower.java | 306 ImmutableList<ImmutableList<AnnotationInfo>> paramAnnotations = parameterAnnotations(m); in lowerMethod() 336 private ImmutableList<ImmutableList<AnnotationInfo>> parameterAnnotations(MethodInfo m) { in parameterAnnotations() method in Lower 346 ImmutableList.Builder<AnnotationInfo> parameterAnnotations = ImmutableList.builder(); in parameterAnnotations() local 353 parameterAnnotations.add( in parameterAnnotations() 356 annotations.add(parameterAnnotations.build()); in parameterAnnotations()
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/ |
D | GeneratingAnnotatedClassesTestCase.java | 307 … final ParameterAnnotationEntry[] parameterAnnotations= method.getParameterAnnotationEntries(); in assertParameterAnnotations() local 308 … assertEquals(methodName, expectedNumberOfParmeterAnnotations.length, parameterAnnotations.length); in assertParameterAnnotations() 311 for (final ParameterAnnotationEntry parameterAnnotation : parameterAnnotations) in assertParameterAnnotations()
|
/external/guice/core/src/com/google/inject/spi/ |
D | InjectionPoint.java | 117 Annotation[] parameterAnnotations = paramterAnnotations[index]; in forMember() local 118 Key<?> key = Annotations.getKey(parameterType, member, parameterAnnotations, errors); in forMember() 119 dependencies.add(newDependency(key, Nullability.allowsNull(parameterAnnotations), index)); in forMember()
|
/external/turbine/javatests/com/google/turbine/lower/ |
D | IntegrationTestSupport.java | 340 Set<String> types, List<AnnotationNode>[] parameterAnnotations) { in addTypesFromParameterAnnotations() argument 341 if (parameterAnnotations == null) { in addTypesFromParameterAnnotations() 344 for (List<AnnotationNode> annos : parameterAnnotations) { in addTypesFromParameterAnnotations()
|
/external/turbine/java/com/google/turbine/binder/bytecode/ |
D | BytecodeBoundClass.java | 435 (idx < m.parameterAnnotations().size()) in bindMethod() 436 ? BytecodeBinder.bindAnnotations(m.parameterAnnotations().get(idx)) in bindMethod()
|
/external/proguard/src/proguard/shrink/ |
D | ClassShrinker.java | 252 shrinkArray(parameterAnnotationsAttribute.parameterAnnotations[parameterIndex], in visitAnyParameterAnnotationsAttribute()
|
/external/proguard/src/proguard/classfile/io/ |
D | ProgramClassReader.java | 557 …parameterAnnotationsAttribute.parameterAnnotations = new Annotation[parameterAnnotationsAtt… in visitAnyParameterAnnotationsAttribute() 574 parameterAnnotationsAttribute.parameterAnnotations[parameterIndex] = annotations; in visitAnyParameterAnnotationsAttribute()
|