Searched refs:labelCache (Results 1 – 2 of 2) sorted by relevance
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
D | CatchMethodItem.java | 45 … CatchMethodItem(@Nonnull BaksmaliOptions options, @Nonnull MethodDefinition.LabelCache labelCache, in CatchMethodItem() argument 51 … tryStartLabel = labelCache.internLabel(new LabelMethodItem(options, startAddress, "try_start_")); in CatchMethodItem() 55 … tryEndLabel = labelCache.internLabel(new EndTryLabelMethodItem(options, codeAddress, endAddress)); in CatchMethodItem() 58 … handlerLabel = labelCache.internLabel(new LabelMethodItem(options, handlerAddress, "catchall_")); in CatchMethodItem() 60 … handlerLabel = labelCache.internLabel(new LabelMethodItem(options, handlerAddress, "catch_")); in CatchMethodItem()
|
D | MethodDefinition.java | 77 @Nonnull private final LabelCache labelCache = new LabelCache(); field in MethodDefinition 355 return labelCache; in getLabelCache() 385 for (LabelMethodItem labelMethodItem: labelCache.getLabels()) { in getMethodItems() 569 …CatchMethodItem catchMethodItem = new CatchMethodItem(classDef.options, labelCache, lastCoveredAdd… in addTries() 584 … ArrayList<LabelMethodItem> sortedLabels = new ArrayList<LabelMethodItem>(labelCache.getLabels()); in setLabelSequentialNumbers()
|