Tabnine Logo
FormalParamTypeFlow
Code IndexAdd Tabnine to your IDE (free)

How to use
FormalParamTypeFlow
in
com.oracle.graal.pointsto.flow

Best Java code snippets using com.oracle.graal.pointsto.flow.FormalParamTypeFlow (Showing top 6 results out of 315)

origin: com.oracle.substratevm/pointsto

@Override
public TypeFlow<ParameterNode> copy(BigBang bb, MethodFlowsGraph methodFlows) {
  return new FormalParamTypeFlow(this, methodFlows);
}
origin: com.oracle.substratevm/pointsto

public boolean addReceiverState(BigBang bb, TypeState add) {
  // The type state of a receiver cannot be null.
  return super.addState(bb, add.forNonNull(bb));
}
origin: com.oracle.substratevm/pointsto

@Override
public String toString() {
  StringBuilder str = new StringBuilder();
  str.append("FormalParamFlow").append("[").append(method.format("%H.%n")).append("]").append("[").append(position).append("]<").append(getState()).append(">");
  return str.toString();
}
origin: com.oracle.substratevm/pointsto

} else if (flow instanceof FormalParamTypeFlow) {
  FormalParamTypeFlow param = (FormalParamTypeFlow) flow;
  return "Parameter(" + param.position() + ")@" + formatMethod(param.method());
} else if (flow instanceof FormalReturnTypeFlow) {
  return "Return @ " + formatSource(flow);
origin: com.oracle.substratevm/svm

TypeState state = method.getTypeFlow().getParameterTypeState(bigbang, i);
if (state != null) {
  AnalysisType declaredType = method.getTypeFlow().getOriginalMethodFlows().getParameter(i).getDeclaredType();
  if (declaredType.isInterface()) {
    state = TypeState.forSubtraction(bigbang, state, declaredType.getTypeFlow(bigbang, true).getState());
origin: com.oracle.substratevm/pointsto

int offset = isStatic ? 0 : 1;
AnalysisType paramType = (AnalysisType) method.getSignature().getParameterType(index - offset, method.getDeclaringClass());
parameter = new FormalParamTypeFlow(node, paramType, method, index);
com.oracle.graal.pointsto.flowFormalParamTypeFlow

Most used methods

  • <init>
  • addState
  • getDeclaredType
  • getState
  • method
  • position

Popular in Java

  • Making http post requests using okhttp
  • putExtra (Intent)
  • getResourceAsStream (ClassLoader)
  • onCreateOptionsMenu (Activity)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now