HomeSort by relevance Sort by last modified time
    Searched refs:getAnnotation (Results 51 - 75 of 139) sorted by null

1 23 4 5 6

  /libcore/libdvm/src/main/java/java/lang/reflect/
Constructor.java 212 @Override public <A extends Annotation> A getAnnotation(Class<A> annotationType) {
216 return Method.getAnnotation(declaringClass, slot, annotationType);
Field.java 205 @Override public <A extends Annotation> A getAnnotation(Class<A> annotationType) {
209 return getAnnotation(declaringClass, slot, annotationType);
211 private static native <A extends Annotation> A getAnnotation(
    [all...]
AccessibleObject.java 141 public <T extends Annotation> T getAnnotation(Class<T> annotationType) {
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 117 protected DexAnnotation getAnnotation(DexAnnotatedElement element, String annotationType) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
RobolectricInternals.java 43 Implements realClass = shadowClass.getAnnotation(Implements.class);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
RobolectricWiringTest.java 34 Implements annotation = shadowClass.getAnnotation(Implements.class);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Filter.java 564 if ((annotation = field.getAnnotation(GenerateFinalPort.class)) != null) {
584 if ((annotation = field.getAnnotation(GenerateFieldPort.class)) != null) {
587 } else if ((annotation = field.getAnnotation(GenerateProgramPort.class)) != null) {
590 } else if ((annotation = field.getAnnotation(GenerateProgramPorts.class)) != null) {
  /libcore/libart/src/main/java/java/lang/reflect/
Method.java 297 @Override public <A extends Annotation> A getAnnotation(Class<A> annotationType) {
Field.java 238 @Override public <A extends Annotation> A getAnnotation(Class<A> annotationType) {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ValueEncoder.java 189 writeAnnotation(((CstAnnotation) cst).getAnnotation(),
414 addContents(file, ((CstAnnotation) cst).getAnnotation());
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ValueEncoder.java 188 writeAnnotation(((CstAnnotation) cst).getAnnotation(),
516 addContents(file, ((CstAnnotation) cst).getAnnotation());
  /frameworks/base/test-runner/src/android/test/
InstrumentationTestRunner.java 781 int numIterations = testMethod.getAnnotation(
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ValueEncoder.java 190 writeAnnotation(((CstAnnotation) cst).getAnnotation(),
518 addContents(file, ((CstAnnotation) cst).getAnnotation());
  /external/chromium_org/third_party/skia/include/core/
SkPaint.h 635 SkAnnotation* getAnnotation() const { return fAnnotation; }
642 SK_ATTR_DEPRECATED("use getAnnotation and check for non-null")
643 bool isNoDrawAnnotation() const { return this->getAnnotation() != NULL; }
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
Serializer.java 181 Serializable serializable = (Serializable)cls.getAnnotation(Serializable.class);
319 Serializable serializable = (Serializable)cls.getAnnotation(Serializable.class);
  /external/skia/include/core/
SkPaint.h 635 SkAnnotation* getAnnotation() const { return fAnnotation; }
642 SK_ATTR_DEPRECATED("use getAnnotation and check for non-null")
643 bool isNoDrawAnnotation() const { return this->getAnnotation() != NULL; }
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientsEditor.java 368 String fieldValue = getAnnotation(a, field);
376 private static String getAnnotation(Annotation[] a, String key) {
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationImpl.java 115 public Annotation getAnnotation() {
  /external/chromium_org/third_party/skia/src/pipe/
SkGPipeWrite.cpp     [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 231 Ann->getAnnotation() == "objc_instance_variable_invalidator")
234 Ann->getAnnotation() == "objc_instance_variable_invalidator_partial")
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
EntrySchema.java 450 Entry.Table table = clazz.getAnnotation(Entry.Table.class);
478 Entry.Column info = ((AnnotatedElement) field).getAnnotation(Entry.Column.class);
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 351 TestAnnotation target = PublicTestClass.class.getAnnotation(TestAnnotation.class);
354 assertNull(PublicTestClass.class.getAnnotation(Deprecated.class));
356 Deprecated target2 = ExtendTestClass.class.getAnnotation(Deprecated.class);
    [all...]
  /frameworks/base/core/java/android/view/
ViewDebug.java     [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBitmapDevice.cpp 15 do { if (paint.getAnnotation()) { return; } } while (0)

Completed in 3398 milliseconds

1 23 4 5 6