Get the dex index where the target dex class belongs to. Note that this dex index is only used as a hint. @param i the dex index @return the dex indexes where the target class belongs to
(int i)
| 299 | * @return the dex indexes where the target class belongs to |
| 300 | */ |
| 301 | private static int[] getDexIndexForIndex(int i) { |
| 302 | switch (i) { |
| 303 | case C_THEME: |
| 304 | return new int[]{1}; |
| 305 | } |
| 306 | throw new IndexOutOfBoundsException("No class index for " + i + ",max = " + DEOBF_NUM_C); |
| 307 | } |
| 308 | |
| 309 | private static DexMethodDescriptor verifyFoundCandidateForIndex(int i, HashSet<DexMethodDescriptor> candidateDexMethods, |
| 310 | DexDeobfReport report) { |
no outgoing calls
no test coverage detected