Home
last modified time | relevance | path

Searched refs:_annotations (Results 1 – 10 of 10) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotationMap.java16 protected HashMap<Class<?>,Annotation> _annotations; field in AnnotationMap
27 _annotations = a; in AnnotationMap()
40 if (_annotations == null) { in get()
43 return (A) _annotations.get(cls); in get()
49 if (_annotations == null) { in has()
52 return _annotations.containsKey(cls); in has()
63 if (_annotations != null) { in hasOneOf()
65 if (_annotations.containsKey(annoClasses[i])) { in hasOneOf()
83 if (_annotations == null || _annotations.size() == 0) { in annotations()
86 return _annotations.values(); in annotations()
[all …]
DAnnotatedMember.java33 protected final transient AnnotationMap _annotations; field in AnnotatedMember
38 _annotations = annotations; in AnnotatedMember()
48 _annotations = base._annotations; in AnnotatedMember()
85 if (_annotations == null) { in getAnnotation()
88 return _annotations.get(acls); in getAnnotation()
93 if (_annotations == null) { in hasAnnotation()
96 return _annotations.has(acls); in hasAnnotation()
101 if (_annotations == null) { in hasOneOf()
104 return _annotations.hasOneOf(annoClasses); in hasOneOf()
110 if (_annotations == null) { in annotations()
[all …]
DAnnotationCollector.java128 protected final HashMap<Class<?>,Annotation> _annotations; field in AnnotationCollector.NCollector
134 _annotations = new HashMap<>(); in NCollector()
135 _annotations.put(type1, value1); in NCollector()
136 _annotations.put(type2, value2); in NCollector()
141 if (_annotations.size() == 2) { in asAnnotations()
142 Iterator<Map.Entry<Class<?>,Annotation>> it = _annotations.entrySet().iterator(); in asAnnotations()
147 return new AnnotationMap(_annotations); in asAnnotations()
153 for (Annotation ann : _annotations.values()) { in asAnnotationMap()
161 return _annotations.containsKey(ann.annotationType()); in isPresent()
166 _annotations.put(ann.annotationType(), ann); in addOrOverride()
DAnnotatedParameter.java53 if (ann == _annotations) { in withAnnotations()
174 return "[parameter #"+getIndex()+", annotations: "+_annotations+"]"; in toString()
DAnnotatedWithParams.java105 public final int getAnnotationCount() { return _annotations.size(); } in getAnnotationCount()
DAnnotatedField.java123 public int getAnnotationCount() { return _annotations.size(); } in getAnnotationCount()
DAnnotatedConstructor.java168 return "[constructor for "+getName()+", annotations: "+_annotations+"]"; in toString()
/external/tensorflow/tensorflow/python/debug/cli/
Ddebugger_cli_common.py210 self._annotations = annotations
211 if not self._annotations:
212 self._annotations = {}
225 return self._annotations
298 self._annotations[orig_num_lines + key] = (other.annotations[key])
300 self._annotations[key] = other.annotations[key]
325 for key in self._annotations:
332 self._annotations = new_annotations
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DClassUtil.java1327 private transient Annotation[] _annotations; field in ClassUtil.Ctor
1355 Annotation[] result = _annotations; in getDeclaredAnnotations()
1358 _annotations = result; in getDeclaredAnnotations()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmFloatControlsTests.cpp1507 const char* _annotations, in Operation()
1516 , annotations(_annotations) in Operation()
1532 const char* _annotations, in Operation()
1539 , annotations(_annotations) in Operation()