/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/ |
D | AnnotationMap.java | 16 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 …]
|
D | AnnotatedMember.java | 33 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 …]
|
D | AnnotationCollector.java | 128 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()
|
D | AnnotatedParameter.java | 53 if (ann == _annotations) { in withAnnotations() 174 return "[parameter #"+getIndex()+", annotations: "+_annotations+"]"; in toString()
|
D | AnnotatedWithParams.java | 105 public final int getAnnotationCount() { return _annotations.size(); } in getAnnotationCount()
|
D | AnnotatedField.java | 123 public int getAnnotationCount() { return _annotations.size(); } in getAnnotationCount()
|
D | AnnotatedConstructor.java | 168 return "[constructor for "+getName()+", annotations: "+_annotations+"]"; in toString()
|
/external/autotest/utils/frozen_chromite/lib/ |
D | cros_logging.py | 54 from autotest_lib.utils.frozen_chromite.lib import buildbot_annotations as _annotations unknown 97 if annotation_class == _annotations.SetEmailNotifyProperty: 113 _PrintForBuildbot(handle, _annotations.StepLink, text, url) 118 _PrintForBuildbot(handle, _annotations.SetBuildProperty, name, data) 123 _PrintForBuildbot(handle, _annotations.SetEmailNotifyProperty, name, data) 128 _PrintForBuildbot(handle, _annotations.StepText, text) 135 _PrintForBuildbot(handle, _annotations.StepWarnings) 140 _PrintForBuildbot(handle, _annotations.StepFailure) 145 _PrintForBuildbot(handle, _annotations.BuildStep, name)
|
D | git.py | 357 self._annotations = {} 406 self._annotations = {} 410 self._annotations[attrs['name']] = attrs['value'] 433 self._annotations) 435 checkout.update(self._annotations)
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | debugger_cli_common.py | 205 self._annotations = annotations 206 if not self._annotations: 207 self._annotations = {} 220 return self._annotations 293 self._annotations[orig_num_lines + key] = (other.annotations[key]) 295 self._annotations[key] = other.annotations[key] 320 for key in self._annotations: 327 self._annotations = new_annotations
|
/external/angle/build/android/pylib/instrumentation/ |
D | instrumentation_test_instance_test.py | 588 o._annotations = [('SmallTest', None)] 793 o._annotations = [('TestValue', '1')] 842 o._annotations = [('Feature', 'Bar')] 966 o._annotations = [('Feature', 'Bar'), ('Feature', 'Baz')]
|
D | instrumentation_test_instance.py | 613 self._annotations = None 805 self._annotations = [ 808 self._annotations = [ 811 self._annotations = [] 819 requested_annotations = set(a[0] for a in self._annotations) 1147 self._annotations, self._excluded_annotations)
|
/external/cronet/build/android/pylib/instrumentation/ |
D | instrumentation_test_instance_test.py | 589 o._annotations = [('SmallTest', None)] 794 o._annotations = [('TestValue', '1')] 843 o._annotations = [('Feature', 'Bar')] 967 o._annotations = [('Feature', 'Bar'), ('Feature', 'Baz')]
|
D | instrumentation_test_instance.py | 614 self._annotations = None 804 self._annotations = [ 807 self._annotations = [ 810 self._annotations = [] 818 requested_annotations = set(a[0] for a in self._annotations) 1143 self._annotations, self._excluded_annotations)
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/ |
D | ClassUtil.java | 1327 private transient Annotation[] _annotations; field in ClassUtil.Ctor 1355 Annotation[] result = _annotations; in getDeclaredAnnotations() 1358 _annotations = result; in getDeclaredAnnotations()
|
/external/python/cpython3/Doc/howto/ |
D | annotations.rst | 1 .. _annotations-howto:
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmFloatControlsTests.cpp | 1507 const char* _annotations, in Operation() 1516 , annotations(_annotations) in Operation() 1532 const char* _annotations, in Operation() 1539 , annotations(_annotations) in Operation()
|