Uses of Interface
soot.MethodOrMethodContext

Packages that use MethodOrMethodContext
soot Base Soot classes, shared by different intermediate representations. 
soot.jimple.toolkits.callgraph   
 

Uses of MethodOrMethodContext in soot
 

Classes in soot that implement MethodOrMethodContext
 class MethodContext
          Represents a pair of a method and a context.
 class SootMethod
          Soot representation of a Java method.
 

Methods in soot that return MethodOrMethodContext
static MethodOrMethodContext MethodContext.v(SootMethod method, Context context)
           
 

Methods in soot with parameters of type MethodOrMethodContext
 void MethodToContexts.add(MethodOrMethodContext momc)
           
 

Uses of MethodOrMethodContext in soot.jimple.toolkits.callgraph
 

Methods in soot.jimple.toolkits.callgraph that return MethodOrMethodContext
 MethodOrMethodContext Edge.getSrc()
           
 MethodOrMethodContext Edge.getTgt()
           
 

Methods in soot.jimple.toolkits.callgraph with parameters of type MethodOrMethodContext
 Iterator CallGraph.edgesOutOf(MethodOrMethodContext m)
          Returns an iterator over all edges that have m as their source method.
 Iterator CallGraph.edgesInto(MethodOrMethodContext m)
          Returns an iterator over all edges that have m as their target method.
 void ContextInsensitiveContextManager.addStaticEdge(MethodOrMethodContext src, Unit srcUnit, SootMethod target, Kind kind)
           
 void ContextInsensitiveContextManager.addVirtualEdge(MethodOrMethodContext src, Unit srcUnit, SootMethod target, Kind kind, Context typeContext)
           
 void ContextManager.addStaticEdge(MethodOrMethodContext src, Unit srcUnit, SootMethod target, Kind kind)
           
 void ContextManager.addVirtualEdge(MethodOrMethodContext src, Unit srcUnit, SootMethod target, Kind kind, Context typeContext)
           
 void ObjSensContextManager.addStaticEdge(MethodOrMethodContext src, Unit srcUnit, SootMethod target, Kind kind)
           
 void ObjSensContextManager.addVirtualEdge(MethodOrMethodContext src, Unit srcUnit, SootMethod target, Kind kind, Context typeContext)
           
 void OneCFAContextManager.addStaticEdge(MethodOrMethodContext src, Unit srcUnit, SootMethod target, Kind kind)
           
 void OneCFAContextManager.addVirtualEdge(MethodOrMethodContext src, Unit srcUnit, SootMethod target, Kind kind, Context typeContext)
           
 boolean ReachableMethods.contains(MethodOrMethodContext m)
          Returns true iff method is reachable.
 Iterator SlowCallGraph.edgesOutOf(MethodOrMethodContext m)
          Returns an iterator over all edges that have m as their source method.
 Iterator SlowCallGraph.edgesInto(MethodOrMethodContext m)
          Returns an iterator over all edges that have m as their target method.
 Iterator TransitiveTargets.iterator(MethodOrMethodContext momc)
           
 

Constructors in soot.jimple.toolkits.callgraph with parameters of type MethodOrMethodContext
Edge(MethodOrMethodContext src, Unit srcUnit, MethodOrMethodContext tgt, Kind kind)
           
Edge(MethodOrMethodContext src, Stmt srcUnit, MethodOrMethodContext tgt)