HomeSort by relevance Sort by last modified time
    Searched refs:LabelCache (Results 1 - 2 of 2) sorted by null

  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
CatchMethodItem.java 45 public CatchMethodItem(@Nonnull baksmaliOptions options, @Nonnull MethodDefinition.LabelCache labelCache,
51 tryStartLabel = labelCache.internLabel(new LabelMethodItem(options, startAddress, "try_start_"));
55 tryEndLabel = labelCache.internLabel(new EndTryLabelMethodItem(options, codeAddress, endAddress));
58 handlerLabel = labelCache.internLabel(new LabelMethodItem(options, handlerAddress, "catchall_"));
60 handlerLabel = labelCache.internLabel(new LabelMethodItem(options, handlerAddress, "catch_"));
MethodDefinition.java 77 @Nonnull private final LabelCache labelCache = new LabelCache();
354 @Nonnull public LabelCache getLabelCache() {
355 return labelCache;
385 for (LabelMethodItem labelMethodItem: labelCache.getLabels()) {
568 CatchMethodItem catchMethodItem = new CatchMethodItem(classDef.options, labelCache, lastCoveredAddress,
583 ArrayList<LabelMethodItem> sortedLabels = new ArrayList<LabelMethodItem>(labelCache.getLabels());
606 public static class LabelCache {
609 public LabelCache() {
    [all...]

Completed in 56 milliseconds