Searched defs:annotations (Results 1 - 25 of 80) sorted by relevance

1234

/external/guava/guava/src/com/google/common/annotations/
H A Dpackage-info.java21 package com.google.common.annotations;
H A DBeta.java17 package com.google.common.annotations;
H A DVisibleForTesting.java17 package com.google.common.annotations;
H A DGwtCompatible.java17 package com.google.common.annotations;
H A DGwtIncompatible.java17 package com.google.common.annotations;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/annotations/
H A DDoNotParseDetail.java17 package com.googlecode.mp4parser.annotations;
H A DParseDetail.java16 package com.googlecode.mp4parser.annotations;
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djcip-annotations.jar ... META-INF/ net/ net/jcip/ net/jcip/annotations/ net/jcip/annotations/GuardedBy.class GuardedBy.java package net.
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebInvalidationDebugAnnotations.h20 WebInvalidationDebugAnnotations annotations; member in struct:blink::WebAnnotatedInvalidationRect
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DAnnotationFormatter.java42 Collection<? extends Annotation> annotations) throws IOException {
44 for (Annotation annotation: annotations) {
41 writeTo(IndentingWriter writer, Collection<? extends Annotation> annotations) argument
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationSetRefItem.java33 private AnnotationSetItem annotations; field in class:AnnotationSetRefItem
38 * @param annotations {@code non-null;} the annotation set to refer to
40 public AnnotationSetRefItem(AnnotationSetItem annotations) { argument
43 if (annotations == null) {
44 throw new NullPointerException("annotations == null");
47 this.annotations = annotations;
60 annotations = wordData.intern(annotations);
66 return annotations
[all...]
H A DFieldAnnotationStruct.java26 * Association of a field and its annotations.
33 /** {@code non-null;} the associated annotations */
34 private AnnotationSetItem annotations; field in class:FieldAnnotationStruct
40 * @param annotations {@code non-null;} the associated annotations
43 AnnotationSetItem annotations) {
48 if (annotations == null) {
49 throw new NullPointerException("annotations == null");
53 this.annotations = annotations;
42 FieldAnnotationStruct(CstFieldRef field, AnnotationSetItem annotations) argument
[all...]
H A DMethodAnnotationStruct.java26 * Association of a method and its annotations.
33 /** {@code non-null;} the associated annotations */
34 private AnnotationSetItem annotations; field in class:MethodAnnotationStruct
40 * @param annotations {@code non-null;} the associated annotations
43 AnnotationSetItem annotations) {
48 if (annotations == null) {
49 throw new NullPointerException("annotations == null");
53 this.annotations = annotations;
42 MethodAnnotationStruct(CstMethodRef method, AnnotationSetItem annotations) argument
[all...]
/external/mockito/src/org/mockito/internal/configuration/injection/scanner/
H A DInjectMocksScanner.java61 void assertNoAnnotations(final Field field, final Class... annotations) { argument
62 for (Class annotation : annotations) {
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationsAttribute.java28 * This Attribute represents an annotations attribute.
35 public Annotation[] annotations; field in class:AnnotationsAttribute
51 Annotation[] annotations)
56 this.annotations = annotations;
61 * Applies the given visitor to all class annotations.
69 annotationVisitor.visitAnnotation(clazz, annotations[index]);
75 * Applies the given visitor to all field annotations.
83 annotationVisitor.visitAnnotation(clazz, field, annotations[index]);
89 * Applies the given visitor to all method annotations
49 AnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
[all...]
H A DRuntimeInvisibleAnnotationsAttribute.java27 * This Attribute represents a runtime invisible annotations attribute.
46 Annotation[] annotations)
48 super(u2attributeNameIndex, u2annotationsCount, annotations);
44 RuntimeInvisibleAnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
H A DRuntimeVisibleAnnotationsAttribute.java27 * This Attribute represents a runtime visible annotations attribute.
46 Annotation[] annotations)
48 super(u2attributeNameIndex, u2annotationsCount, annotations);
44 RuntimeVisibleAnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderAnnotationSet.java46 @Nonnull final Set<BuilderAnnotation> annotations; field in class:BuilderAnnotationSet
49 public BuilderAnnotationSet(@Nonnull Set<BuilderAnnotation> annotations) { argument
50 this.annotations = annotations;
54 return annotations.iterator();
58 return annotations.size();
H A DBuilderAnnotationSetPool.java58 @Nonnull public BuilderAnnotationSet internAnnotationSet(@Nullable Set<? extends Annotation> annotations) { argument
59 if (annotations == null) {
63 BuilderAnnotationSet ret = internedItems.get(annotations);
69 ImmutableSet.copyOf(Iterators.transform(annotations.iterator(),
82 return key.annotations;
H A DBuilderField.java45 @Nonnull final BuilderAnnotationSet annotations; field in class:BuilderField
50 @Nonnull BuilderAnnotationSet annotations) {
54 this.annotations = annotations;
66 return annotations;
47 BuilderField(@onnull BuilderFieldReference fieldReference, int accessFlags, @Nullable BuilderEncodedValue initialValue, @Nonnull BuilderAnnotationSet annotations) argument
H A DBuilderMethodParameter.java42 @Nonnull final BuilderAnnotationSet annotations; field in class:BuilderMethodParameter
46 @Nonnull BuilderAnnotationSet annotations) {
49 this.annotations = annotations;
61 return annotations;
44 BuilderMethodParameter(@onnull BuilderTypeReference type, @Nullable BuilderStringReference name, @Nonnull BuilderAnnotationSet annotations) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DAnnotationSetPool.java61 @Nonnull Set<? extends Annotation> annotations) {
62 return annotations;
60 getAnnotations( @onnull Set<? extends Annotation> annotations) argument
/external/smali/smali/src/main/java/org/jf/smali/
H A DSmaliMethodParameter.java47 @Nonnull public Set<? extends Annotation> annotations; field in class:SmaliMethodParameter
53 this.annotations = ImmutableSet.of();
58 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { return annotations; }
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGraphicsContextAnnotator.cpp96 AnnotationList annotations; local
101 annotations.append(std::make_pair(AnnotationKeyRendererName, object->renderName()));
104 annotations.append(std::make_pair(AnnotationKeyPaintPhase, paintPhaseName(paintInfo.phase)));
107 annotations.append(std::make_pair(AnnotationKeyElementId, element->getIdAttribute().string()));
119 annotations.append(std::make_pair(AnnotationKeyElementClass, classBuilder.toString()));
124 annotations.append(std::make_pair(AnnotationKeyElementTag, element->tagName()));
128 annotations.append(std::make_pair(AnnotationKeyInspectorNodeId,
134 m_context->beginAnnotation(annotations);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_state_batch.c73 * Generate a set of aub file annotations for the current batch buffer, and
87 drm_intel_aub_annotation annotations[annotation_count]; local
89 make_annotation(&annotations[a++], AUB_TRACE_TYPE_BATCH, 0,
95 make_annotation(&annotations[a++], AUB_TRACE_TYPE_NOTYPE, 0,
97 make_annotation(&annotations[a++], AUB_TRACE_TYPE(type),
101 drm_intel_bufmgr_gem_set_aub_annotations(intel->batch.bo, annotations,

Completed in 3843 milliseconds

1234