MCPcopy Index your code
hub / github.com/clojure/clojure / getAttributeCount

Method getAttributeCount

src/jvm/clojure/asm/Attribute.java:167–175  ·  view source on GitHub ↗

Returns the number of attributes of the attribute list that begins with this attribute. @return the number of attributes of the attribute list that begins with this attribute.

()

Source from the content-addressed store, hash-verified

165 * @return the number of attributes of the attribute list that begins with this attribute.
166 */
167 final int getAttributeCount() {
168 int count = 0;
169 Attribute attribute = this;
170 while (attribute != null) {
171 count += 1;
172 attribute = attribute.nextAttribute;
173 }
174 return count;
175 }
176
177 /**
178 * Returns the total size in bytes of all the attributes in the attribute list that begins with

Callers 3

putFieldInfoMethod · 0.45
putMethodInfoMethod · 0.45
toByteArrayMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected