/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/ |
D | JacksonAnnotationIntrospector.java | 153 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 …]
|
D | AnnotationMap.java | 21 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()
|
D | CollectorBase.java | 27 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
|
D | AnnotationCollector.java | 52 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
|
D | AnnotationIntrospectorPair.java | 95 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 …]
|
D | VisibilityChecker.java | 29 public T with(JsonAutoDetect ann); in with() 186 public Std(JsonAutoDetect ann) in Std() 261 public Std with(JsonAutoDetect ann) in with()
|
D | AnnotatedParameter.java | 52 public AnnotatedParameter withAnnotations(AnnotationMap ann) { in withAnnotations()
|
D | AnnotatedWithParams.java | 63 protected AnnotatedParameter replaceParameterAnnotations(int index, AnnotationMap ann) in replaceParameterAnnotations()
|
D | AnnotatedField.java | 44 public AnnotatedField withAnnotations(AnnotationMap ann) { in withAnnotations()
|
D | AnnotatedConstructor.java | 51 public AnnotatedConstructor withAnnotations(AnnotationMap ann) { in withAnnotations()
|
D | AnnotatedMethodCollector.java | 199 AnnotationCollector ann) { in MethodBuilder()
|
D | AnnotatedMethod.java | 56 public AnnotatedMethod withAnnotations(AnnotationMap ann) { in withAnnotations()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | AnnotationIntrospector.java | 184 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/ |
D | IncludeTest.java | 38 JsonInclude ann = Bogus.class.getAnnotation(JsonInclude.class); in testFromAnnotation() local 46 JsonInclude ann = Custom.class.getAnnotation(JsonInclude.class); in testFromAnnotationWithCustom() local
|
D | JacksonInjectTest.java | 31 JacksonInject ann = Bogus.class.getField("field").getAnnotation(JacksonInject.class); in testFromAnnotation() local
|
D | JsonSetterTest.java | 39 JsonSetter ann = Bogus.class.getField("field").getAnnotation(JsonSetter.class); in testFromAnnotation() local
|
D | VisibilityTest.java | 65 JsonAutoDetect ann = Custom.class.getAnnotation(JsonAutoDetect.class); in testFromAnnotation() local
|
D | FormatTest.java | 66 JsonFormat ann = Bogus.class.getAnnotation(JsonFormat.class); in testFromAnnotation() local
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/annotation/ |
D | JsonPOJOBuilder.java | 86 public Value(JsonPOJOBuilder ann) { in Value()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/ |
D | InnerClassProperty.java | 47 protected InnerClassProperty(SettableBeanProperty src, AnnotatedConstructor ann) in InnerClassProperty()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/contextual/ |
D | TestContextualWithAnnDeserializer.java | 59 Name ann = property.getAnnotation(Name.class); in createContextual() local
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | DefaultDeserializationContext.java | 207 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/ |
D | PropertyWriter.java | 71 A ann = getAnnotation(acls); in findAnnotation() local
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/ |
D | IntrospectorPairTest.java | 106 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/ |
D | ASTParser.java | 206 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 …]
|