Home | History | Annotate | Download | only in util

Lines Matching refs:TableSwitchInstruction

311     public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
317 matchingOpcodes(tableSwitchInstruction, patternInstruction) &&
319 tableSwitchInstruction.defaultOffset,
320 ((TableSwitchInstruction)patternInstruction).defaultOffset) &&
321 matchingArguments(tableSwitchInstruction.lowCase,
322 ((TableSwitchInstruction)patternInstruction).lowCase) &&
323 matchingArguments(tableSwitchInstruction.highCase,
324 ((TableSwitchInstruction)patternInstruction).highCase) &&
326 tableSwitchInstruction.jumpOffsets,
327 ((TableSwitchInstruction)patternInstruction).jumpOffsets);
335 tableSwitchInstruction);