Home
last modified time | relevance | path

Searched refs:annotationName (Results 1 – 15 of 15) sorted by relevance

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
DAnnotationWriter.java30 private final ClassName annotationName; field in AnnotationWriter
34 AnnotationWriter(ClassName annotationName) { in AnnotationWriter() argument
35 this.annotationName = annotationName; in AnnotationWriter()
59 annotationName.write(appendable, context); in write()
77 .append(annotationName) in referencedClasses()
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
DShardingAnnotator.java96 String annotationName = getAnnotationName(className); in annotateTestType() local
98 if (!imports.contains(annotationName)) { in annotateTestType()
99 appendImport(cu, rewrite, annotationName); in annotateTestType()
100 imports.add(annotationName); in annotateTestType()
104 annotation.setTypeName(ast.newSimpleName(annotationName)); in annotateTestType()
118 private void appendImport(CompilationUnit cu, ASTRewrite rewrite, String annotationName) { in appendImport() argument
121 importDeclaration.setName(ast.newName(ANNOTATION_PACKAGE + '.' + annotationName)); in appendImport()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/nodeTypes/
DNodeWithAnnotations.java133 public default boolean isAnnotationPresent(String annotationName) { in isAnnotationPresent() argument
134 … return getAnnotations().stream().anyMatch(a -> a.getName().getName().equals(annotationName)); in isAnnotationPresent()
153 public default AnnotationExpr getAnnotationByName(String annotationName) { in getAnnotationByName() argument
154 …return getAnnotations().stream().filter(a -> a.getName().getName().equals(annotationName)).findFir… in getAnnotationByName()
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_expected_output/
Dcom_github_javaparser_ast_nodeTypes_NodeWithAnnotations.txt23 …Line 134) getAnnotations().stream().anyMatch(a -> a.getName().getName().equals(annotationName)) ==…
26 …Line 134) a.getName().getName().equals(annotationName) ==> java.lang.String.equals(java.lang.Objec…
31 …Line 154) getAnnotations().stream().filter(a -> a.getName().getName().equals(annotationName)).find…
32 …Line 154) getAnnotations().stream().filter(a -> a.getName().getName().equals(annotationName)).find…
33 …Line 154) getAnnotations().stream().filter(a -> a.getName().getName().equals(annotationName)) ==> …
36 …Line 154) a.getName().getName().equals(annotationName) ==> java.lang.String.equals(java.lang.Objec…
Dcom_github_javaparser_ast_CompilationUnit.txt97 …Line 409) getTypes().stream().filter(type -> type.getName().equals(annotationName) && type instanc…
98 …Line 409) getTypes().stream().filter(type -> type.getName().equals(annotationName) && type instanc…
99 …Line 409) getTypes().stream().filter(type -> type.getName().equals(annotationName) && type instanc…
102 Line 409) type.getName().equals(annotationName) ==> java.lang.String.equals(java.lang.Object)
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
DNodeWithAnnotations.java183 default boolean isAnnotationPresent(String annotationName) { in isAnnotationPresent() argument
184 …return getAnnotations().stream().anyMatch(a -> a.getName().getIdentifier().equals(annotationName)); in isAnnotationPresent()
202 default Optional<AnnotationExpr> getAnnotationByName(String annotationName) { in getAnnotationByName() argument
203 …Annotations().stream().filter(a -> a.getName().getIdentifier().equals(annotationName)).findFirst(); in getAnnotationByName()
/external/guice/core/src/com/google/inject/internal/
DIndexer.java62 final String annotationName; field in Indexer.IndexedBinding
75 this.annotationName = annotation.setName(); in IndexedBinding()
89 && annotationName.equals(o.annotationName) in equals()
96 type, scope, typeLiteral, annotationType, annotationName, extraEquality); in hashCode()
/external/catch2/include/internal/
Dcatch_objc.hpp63 std::string const& annotationName, in getAnnotation() argument
65 …NSString* selStr = [[NSString alloc] initWithFormat:@"Catch_%s_%s", annotationName.c_str(), testCa… in getAnnotation()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
DCompilationUnit.java408 public AnnotationDeclaration getAnnotationDeclarationByName(String annotationName) { in getAnnotationDeclarationByName() argument
409 …rn (AnnotationDeclaration) getTypes().stream().filter(type -> type.getName().equals(annotationName) in getAnnotationDeclarationByName()
/external/doclava/src/com/google/doclava/
DPackageInfo.java366 public ClassInfo getAnnotation(String annotationName) { in getAnnotation() argument
367 return mAnnotationsMap.get(annotationName); in getAnnotation()
DDoclava.java2171 public static String getDocumentationStringForAnnotation(String annotationName) { in getDocumentationStringForAnnotation() argument
2195 return annotationDocumentationMap.get(annotationName); in getDocumentationStringForAnnotation()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DCompilationUnit.java492 public Optional<AnnotationDeclaration> getAnnotationDeclarationByName(String annotationName) { in getAnnotationDeclarationByName() argument
493 …return getTypes().stream().filter(type -> type.getNameAsString().equals(annotationName) && type in… in getAnnotationDeclarationByName()
/external/doclava/src/com/google/doclava/parser/
DJava.g170 * Factored out an annotationName rule and used it in the annotation rule.
/external/bcc/tests/cc/
Dcatch.hpp2928 std::string const& annotationName, in getAnnotation() argument
2930 …NSString* selStr = [[NSString alloc] initWithFormat:@"Catch_%s_%s", annotationName.c_str(), testCa… in getAnnotation()
/external/catch2/single_include/catch2/
Dcatch.hpp4299 std::string const& annotationName, in getAnnotation() argument
4301 …NSString* selStr = [[NSString alloc] initWithFormat:@"Catch_%s_%s", annotationName.c_str(), testCa… in getAnnotation()