/external/doclava/src/com/google/doclava/ |
D | AndroidLinter.java | 76 boolean hasAnnotation = false; in lintMethod() 79 hasAnnotation = true; in lintMethod() 107 if (!hasAnnotation) { in lintMethod() 136 boolean hasAnnotation = false; in lintVariable() 139 hasAnnotation |= b.type().qualifiedNameMatches("android", "annotation.IntDef"); in lintVariable() 142 if (!hasAnnotation) { in lintVariable() 149 boolean hasAnnotation = false; in lintVariable() 151 hasAnnotation |= a.type().qualifiedNameMatches("android", "annotation.NonNull"); in lintVariable() 152 hasAnnotation |= a.type().qualifiedNameMatches("android", "annotation.Nullable"); in lintVariable() 154 if (!hasAnnotation) { in lintVariable()
|
D | Stubs.java | 1692 boolean hasAnnotation = false; 1695 hasAnnotation = true; 1732 hasAnnotation = false; 1741 if (!hasAnnotation) {
|
/external/junit-params/src/main/java/junitparams/internal/annotation/ |
D | FrameworkMethodAnnotations.java | 19 return hasAnnotation(Parameters.class) in isParametrised() 31 public boolean hasAnnotation(Class<? extends Annotation> annotation) { in hasAnnotation() method in FrameworkMethodAnnotations
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/ |
D | JavaParserClassDeclarationTest.java | 876 assertTrue(ca.hasAnnotation("foo.bar.MyAnnotation")); in testHasAnnotation() 877 assertFalse(ca.hasAnnotation("foo.bar.MyAnnotation2")); in testHasAnnotation() 878 assertFalse(ca.hasAnnotation("MyAnnotation")); in testHasAnnotation() 879 assertFalse(ca.hasAnnotation("foo.bar.MyUnexistingAnnotation")); in testHasAnnotation() 882 assertTrue(cb.hasAnnotation("foo.bar.MyAnnotation")); in testHasAnnotation() 883 assertTrue(cb.hasAnnotation("foo.bar.MyAnnotation2")); in testHasAnnotation() 884 assertFalse(cb.hasAnnotation("MyAnnotation")); in testHasAnnotation() 885 assertFalse(cb.hasAnnotation("foo.bar.MyUnexistingAnnotation")); in testHasAnnotation()
|
/external/protobuf/php/src/Google/Protobuf/Internal/ |
D | GeneratedCodeInfo.php | 76 public function hasAnnotation() function in Google\\Protobuf\\Internal\\GeneratedCodeInfo
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | InstrumentationConfiguration.java | 85 || mutableClass.hasAnnotation(DoNotInstrument.class)) in shouldInstrument() 88 || mutableClass.hasAnnotation(Instrument.class)) in shouldInstrument()
|
D | MutableClass.java | 50 public boolean hasAnnotation(Class<? extends Annotation> annotationClass) { in hasAnnotation() method in MutableClass
|
/external/javaparser/javaparser-symbol-solver-logic/src/main/java/com/github/javaparser/symbolsolver/logic/ |
D | FunctionalInterfaceLogic.java | 71 …if (type.isReferenceType() && type.asReferenceType().getTypeDeclaration().hasAnnotation(Functional… in isFunctionalInterfaceType()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/ |
D | JavassistAnnotationDeclaration.java | 110 return ctClass.hasAnnotation(canonicalName); in hasDirectlyAnnotation()
|
D | JavassistEnumDeclaration.java | 158 return ctClass.hasAnnotation(canonicalName); in hasDirectlyAnnotation()
|
D | JavassistInterfaceDeclaration.java | 193 return ctClass.hasAnnotation(canonicalName); in hasDirectlyAnnotation()
|
D | JavassistClassDeclaration.java | 77 return ctClass.hasAnnotation(canonicalName); in hasDirectlyAnnotation()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_model_typesystem_ReferenceTypeImpl.txt | 25 …hasAnnotation(FunctionalInterface.class.getCanonicalName()) ==> com.github.javaparser.symbolsolver…
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/javassistmodel/ |
D | JavassistInterfaceDeclarationTest.java | 138 assertTrue(compilationUnit.hasAnnotation("com.github.javaparser.test.TestAnnotation")); in testHasAnnotation()
|
D | JavassistEnumDeclarationTest.java | 139 assertTrue(compilationUnit.hasAnnotation("com.github.javaparser.test.TestAnnotation")); in testHasAnnotation()
|
D | JavassistClassDeclarationTest.java | 153 assertTrue(compilationUnit.hasAnnotation("com.github.javaparser.test.TestAnnotation")); in testHasAnnotation()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-model/com/github/javaparser/symbolsolver/model/declarations/ |
D | ReferenceTypeDeclaration.java | 196 default boolean hasAnnotation(String qualifiedName) { in hasAnnotation() method
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/model/typesystem/ |
D | ReferenceTypeImpl.java | 100 … return this.getTypeDeclaration().hasAnnotation(FunctionalInterface.class.getCanonicalName()); in isAssignableBy()
|
/external/junit/src/main/java/org/junit/experimental/theories/ |
D | ParameterSignature.java | 98 public boolean hasAnnotation(Class<? extends Annotation> type) { in hasAnnotation() method in ParameterSignature
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/declarations/ |
D | ResolvedReferenceTypeDeclaration.java | 246 default boolean hasAnnotation(String qualifiedName) { in hasAnnotation() method
|
/external/junit-params/src/main/java/junitparams/internal/ |
D | TestMethod.java | 89 return frameworkMethodAnnotations.hasAnnotation(Ignore.class); in hasIgnoredAnnotation()
|
/external/dokka/core/src/main/kotlin/javadoc/ |
D | docbase.kt | 89 private fun DocumentationNode.hasAnnotation(klass: KClass<*>) = klass.qualifiedName in annotations.… in <lambda>() method 391 override fun isTransient(): Boolean = node.hasAnnotation(Transient::class) in constantValue() 394 override fun isVolatile(): Boolean = node.hasAnnotation(Volatile::class) in constantValue()
|