Home
last modified time | relevance | path

Searched defs:ann (Results 1 – 25 of 52) sorted by relevance

123

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DJacksonAnnotationIntrospector.java153 public boolean isAnnotationBundle(Annotation ann) { in isAnnotationBundle()
284 JsonRootName ann = _findAnnotation(ac, JsonRootName.class); in findRootName() local
330 JsonFilter ann = _findAnnotation(a, JsonFilter.class); in findFilterId() local
344 JsonNaming ann = _findAnnotation(ac, JsonNaming.class); in findNamingStrategy() local
350 JsonClassDescription ann = _findAnnotation(ac, JsonClassDescription.class); in findClassDescription() local
364 JsonAutoDetect ann = _findAnnotation(ac, JsonAutoDetect.class); in findAutoDetectVisibility() local
382 JsonAlias ann = _findAnnotation(m, JsonAlias.class); in findPropertyAliases() local
406 JsonProperty ann = _findAnnotation(m, JsonProperty.class); in hasRequiredMarker() local
415 JsonProperty ann = _findAnnotation(m, JsonProperty.class); in findPropertyAccess() local
423 public String findPropertyDescription(Annotated ann) { in findPropertyDescription()
[all …]
DAnnotationMap.java21 HashMap<Class<?>,Annotation> ann = new HashMap<>(4); in of() local
100 annotations.put(ann.annotationType(), ann); in merge() local
104 annotations.put(ann.annotationType(), ann); in merge() local
118 public boolean addIfNotPresent(Annotation ann) in addIfNotPresent()
133 public boolean add(Annotation ann) { in add()
151 protected final boolean _add(Annotation ann) { in _add()
DCollectorBase.java27 Annotation ann = anns[i]; in collectAnnotations() local
38 Annotation ann = anns[i]; in collectAnnotations() local
50 Annotation ann = anns[i]; in collectFromBundle() local
74 Annotation ann = anns[i]; in collectDefaultAnnotations() local
89 Annotation ann = anns[i]; in collectDefaultFromBundle() local
DAnnotationCollector.java52 public abstract boolean isPresent(Annotation ann); in isPresent()
54 public abstract AnnotationCollector addOrOverride(Annotation ann); in addOrOverride()
79 public boolean isPresent(Annotation ann) { return false; } in isPresent()
82 public AnnotationCollector addOrOverride(Annotation ann) { in addOrOverride()
110 public boolean isPresent(Annotation ann) { in isPresent()
115 public AnnotationCollector addOrOverride(Annotation ann) { in addOrOverride()
160 public boolean isPresent(Annotation ann) { in isPresent()
165 public AnnotationCollector addOrOverride(Annotation ann) { in addOrOverride()
166 _annotations.put(ann.annotationType(), ann); in addOrOverride() local
DAnnotationIntrospectorPair.java95 public boolean isAnnotationBundle(Annotation ann) { in isAnnotationBundle()
122 … public JsonIgnoreProperties.Value findPropertyIgnoralByName(MapperConfig<?> config, Annotated ann) in findPropertyIgnoralByName()
150 public Object findFilterId(Annotated ann) in findFilterId()
442 public ObjectIdInfo findObjectIdInfo(Annotated ann) { in findObjectIdInfo()
448 public ObjectIdInfo findObjectReferenceInfo(Annotated ann, ObjectIdInfo objectIdInfo) { in findObjectReferenceInfo()
456 public JsonFormat.Value findFormat(Annotated ann) { in findFormat()
466 public PropertyName findWrapperName(Annotated ann) { in findWrapperName()
481 public String findPropertyDefaultValue(Annotated ann) { in findPropertyDefaultValue()
487 public String findPropertyDescription(Annotated ann) { in findPropertyDescription()
493 public Integer findPropertyIndex(Annotated ann) { in findPropertyIndex()
[all …]
DVisibilityChecker.java29 public T with(JsonAutoDetect ann); in with()
186 public Std(JsonAutoDetect ann) in Std()
261 public Std with(JsonAutoDetect ann) in with()
DAnnotatedParameter.java52 public AnnotatedParameter withAnnotations(AnnotationMap ann) { in withAnnotations()
DAnnotatedWithParams.java63 protected AnnotatedParameter replaceParameterAnnotations(int index, AnnotationMap ann) in replaceParameterAnnotations()
DAnnotatedField.java44 public AnnotatedField withAnnotations(AnnotationMap ann) { in withAnnotations()
DAnnotatedConstructor.java51 public AnnotatedConstructor withAnnotations(AnnotationMap ann) { in withAnnotations()
DAnnotatedMethodCollector.java199 AnnotationCollector ann) { in MethodBuilder()
DAnnotatedMethod.java56 public AnnotatedMethod withAnnotations(AnnotationMap ann) { in withAnnotations()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DAnnotationIntrospector.java184 public boolean isAnnotationBundle(Annotation ann) { in isAnnotationBundle()
207 public ObjectIdInfo findObjectIdInfo(Annotated ann) { in findObjectIdInfo()
221 public ObjectIdInfo findObjectReferenceInfo(Annotated ann, ObjectIdInfo objectIdInfo) { in findObjectReferenceInfo()
275 … public JsonIgnoreProperties.Value findPropertyIgnoralByName(MapperConfig<?> config, Annotated ann) in findPropertyIgnoralByName()
292 …ic JsonIncludeProperties.Value findPropertyInclusionByName(MapperConfig<?> config, Annotated ann) { in findPropertyInclusionByName()
305 public Object findFilterId(Annotated ann) { return null; } in findFilterId()
588 public PropertyName findWrapperName(Annotated ann) { return null; } in findWrapperName()
598 public String findPropertyDefaultValue(Annotated ann) { return null; } in findPropertyDefaultValue()
610 public String findPropertyDescription(Annotated ann) { return null; } in findPropertyDescription()
623 public Integer findPropertyIndex(Annotated ann) { return null; } in findPropertyIndex()
[all …]
/external/jackson-annotations/src/test/java/com/fasterxml/jackson/annotation/
DIncludeTest.java38 JsonInclude ann = Bogus.class.getAnnotation(JsonInclude.class); in testFromAnnotation() local
46 JsonInclude ann = Custom.class.getAnnotation(JsonInclude.class); in testFromAnnotationWithCustom() local
DJacksonInjectTest.java31 JacksonInject ann = Bogus.class.getField("field").getAnnotation(JacksonInject.class); in testFromAnnotation() local
DJsonSetterTest.java39 JsonSetter ann = Bogus.class.getField("field").getAnnotation(JsonSetter.class); in testFromAnnotation() local
DVisibilityTest.java65 JsonAutoDetect ann = Custom.class.getAnnotation(JsonAutoDetect.class); in testFromAnnotation() local
DFormatTest.java66 JsonFormat ann = Bogus.class.getAnnotation(JsonFormat.class); in testFromAnnotation() local
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/annotation/
DJsonPOJOBuilder.java86 public Value(JsonPOJOBuilder ann) { in Value()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DInnerClassProperty.java47 protected InnerClassProperty(SettableBeanProperty src, AnnotatedConstructor ann) in InnerClassProperty()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/contextual/
DTestContextualWithAnnDeserializer.java59 Name ann = property.getAnnotation(Name.class); in createContextual() local
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DDefaultDeserializationContext.java207 public JsonDeserializer<Object> deserializerInstance(Annotated ann, Object deserDef) in deserializerInstance()
246 public final KeyDeserializer keyDeserializerInstance(Annotated ann, Object deserDef) in keyDeserializerInstance()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DPropertyWriter.java71 A ann = getAnnotation(acls); in findAnnotation() local
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/
DIntrospectorPairTest.java106 public boolean isAnnotationBundle(Annotation ann) { in isAnnotationBundle()
132 public Object findFilterId(Annotated ann) { in findFilterId()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
DASTParser.java206 AnnotationExpr ann; in PackageDeclaration() local
274 AnnotationExpr ann; in Modifiers() local
455 AnnotationExpr ann; in ExtendsList() local
496 AnnotationExpr ann; in ImplementsList() local
643 AnnotationExpr ann; in EnumConstantDeclaration() local
691 AnnotationExpr ann; in TypeParameters() local
763 AnnotationExpr ann; in TypeBound() local
1616 AnnotationExpr ann; in ReferenceType() local
1695 AnnotationExpr ann; in ClassOrInterfaceType() local
1783 AnnotationExpr ann; in TypeArgument() local
[all …]

123