Searched refs:annotatations (Results 1 - 1 of 1) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java69 @Nonnull private TreeMap<Integer, AnnotationEndpoint> annotatations = Maps.newTreeMap(); field in class:AnnotatedBytes
138 AnnotationEndpoint startPoint = annotatations.get(cursor);
141 Map.Entry<Integer, AnnotationEndpoint> previousEntry = annotatations.lowerEntry(cursor);
165 Map.Entry<Integer, AnnotationEndpoint> nextEntry = annotatations.higherEntry(cursor);
206 annotatations.put(cursor, startPoint);
216 annotatations.put(exclusiveEndOffset, endPoint);
224 Integer endOffset = annotatations.higherKey(offset);
293 Integer[] keys = new Integer[annotatations.size()];
294 keys = annotatations.keySet().toArray(keys);
296 AnnotationEndpoint[] values = new AnnotationEndpoint[annotatations
[all...]

Completed in 642 milliseconds