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

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DCatchMethodItem.java45 public CatchMethodItem(@Nonnull baksmaliOptions options, @Nonnull MethodDefinition.LabelCache labelCache, argument
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_"));
H A DMethodDefinition.java70 @Nonnull private final LabelCache labelCache = new LabelCache(); field in class:MethodDefinition
281 return labelCache;
310 for (LabelMethodItem labelMethodItem: labelCache.getLabels()) {
492 CatchMethodItem catchMethodItem = new CatchMethodItem(classDef.options, labelCache, lastCoveredAddress,
507 ArrayList<LabelMethodItem> sortedLabels = new ArrayList<LabelMethodItem>(labelCache.getLabels());

Completed in 170 milliseconds