Lines Matching refs:parsed

52     /** {@code non-null;} class file being parsed */
69 * was parsed
98 * @return {@code non-null;} the parsed constant value
120 * @param visibility {@code non-null;} visibility of the parsed annotations
121 * @return {@code non-null;} the parsed list of lists of annotations
144 * @param visibility {@code non-null;} visibility of the parsed annotations
169 * @param visibility {@code non-null;} visibility of the parsed annotations
178 parsed(1, "num_parameters: " + Hex.u1(count));
185 parsed(0, "parameter_annotations[" + i + "]:");
204 * @param visibility {@code non-null;} visibility of the parsed annotations
213 parsed(2, "num_annotations: " + Hex.u2(count));
220 parsed(0, "annotations[" + i + "]:");
239 * @param visibility {@code non-null;} visibility of the parsed annotation
240 * @return {@code non-null;} the parsed annotation
252 parsed(2, "type: " + type.toHuman());
253 parsed(2, "num_elements: " + numElements);
260 parsed(0, "elements[" + i + "]:");
279 * @return {@code non-null;} the parsed element
288 parsed(2, "element_name: " + elementName.toHuman());
289 parsed(0, "value: ");
305 * @return {@code non-null;} the parsed value
312 parsed(1, "tag: " + humanTag.toQuoted());
355 parsed(2, "class_info: " + type.toHuman());
372 parsed(2, "type_name: " + typeName.toHuman());
373 parsed(2, "const_name: " + constName.toHuman());
390 parsed(2, "num_values: " + numValues);
397 parsed(0, "element_value[" + i + "]:");
421 * @return {@code non-null;} the parsed value
431 parsed(2, "constant_value: " + human);
450 * Helper which indicates that some bytes were just parsed. This should
454 * @param length {@code >= 0;} number of bytes parsed
457 private void parsed(int length, String message) {
458 observer.parsed(bytes, parseCursor, length, message);