Searched defs:_annotations_present (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.hpp98 int _annotations_present; member in class:VALUE_OBJ_CLASS_SPEC::AnnotationCollector
100 : _location(location), _annotations_present(0)
102 assert((int)_annotation_LIMIT <= (int)sizeof(_annotations_present) * BitsPerByte, "");
109 _annotations_present |= nth_bit((int)id);
112 bool has_any_annotations() { return _annotations_present != 0; }
113 bool has_annotation(ID id) { return (nth_bit((int)id) & _annotations_present) != 0; }

Completed in 55 milliseconds