ProGuard

Uses of Class
proguard.classfile.instruction.TableSwitchInstruction

Packages that use TableSwitchInstruction
proguard.classfile.editor This package contains visitors to edit byte code. 
proguard.classfile.instruction This package contains classes to represent Java bytecode instructions. 
proguard.classfile.visitor This package contains interfaces and classes for processing class files from the proguard.classfile package using the visitor pattern
proguard.obfuscate This package contains classes to perform obfuscation of class files. 
proguard.optimize This package contains visitors that assist with various optimizations of byte code. 
proguard.optimize.evaluation This package contains visitors that perform partial evaluation and subsequent optimizations on byte code. 
proguard.optimize.peephole This package contains visitors that perform various peephole optimizations. 
proguard.shrink This package contains classes to perform shrinking of class files. 
 

Uses of TableSwitchInstruction in proguard.classfile.editor
 

Methods in proguard.classfile.editor with parameters of type TableSwitchInstruction
 void CodeAttrInfoEditor.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void ConstantPoolRemapper.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 

Uses of TableSwitchInstruction in proguard.classfile.instruction
 

Methods in proguard.classfile.instruction that return TableSwitchInstruction
 TableSwitchInstruction TableSwitchInstruction.copy(TableSwitchInstruction tableSwitchInstruction)
          Copies the given instruction into this instruction.
 

Methods in proguard.classfile.instruction with parameters of type TableSwitchInstruction
 void MultiInstructionVisitor.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 TableSwitchInstruction TableSwitchInstruction.copy(TableSwitchInstruction tableSwitchInstruction)
          Copies the given instruction into this instruction.
 void InstructionVisitor.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 

Uses of TableSwitchInstruction in proguard.classfile.visitor
 

Methods in proguard.classfile.visitor with parameters of type TableSwitchInstruction
 void ClassFilePrinter.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 

Uses of TableSwitchInstruction in proguard.obfuscate
 

Methods in proguard.obfuscate with parameters of type TableSwitchInstruction
 void NameAndTypeShrinker.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 

Uses of TableSwitchInstruction in proguard.optimize
 

Methods in proguard.optimize with parameters of type TableSwitchInstruction
 void WriteOnlyFieldMarker.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void SideEffectInstructionChecker.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 

Uses of TableSwitchInstruction in proguard.optimize.evaluation
 

Methods in proguard.optimize.evaluation with parameters of type TableSwitchInstruction
 void Processor.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void PartialEvaluator.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 

Uses of TableSwitchInstruction in proguard.optimize.peephole
 

Methods in proguard.optimize.peephole with parameters of type TableSwitchInstruction
 void GetterSetterInliner.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void NopRemover.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void GotoReturnReplacer.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void StoreLoadReplacer.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void LoadStoreRemover.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void PushPopRemover.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 void BranchTargetFinder.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 

Uses of TableSwitchInstruction in proguard.shrink
 

Methods in proguard.shrink with parameters of type TableSwitchInstruction
 void UsageMarker.visitTableSwitchInstruction(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, int offset, TableSwitchInstruction tableSwitchInstruction)
           
 


ProGuard