congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ConcurrentLightHashSet.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
com.oracle.graal.pointsto.util.ConcurrentLightHashSet
constructor

Best Java code snippets using com.oracle.graal.pointsto.util.ConcurrentLightHashSet.<init> (Showing top 3 results out of 315)

origin: com.oracle.substratevm/pointsto

protected AbstractVirtualInvokeTypeFlow(BigBang bb, MethodFlowsGraph methodFlows, AbstractVirtualInvokeTypeFlow original) {
  super(bb, methodFlows, original);
  callees = new ConcurrentLightHashSet<>();
}
origin: com.oracle.substratevm/pointsto

private TypeFlow(T source, AnalysisType declaredType, TypeState typeState, int slot, boolean isClone, MethodFlowsGraph graphRef) {
  this.id = nextId.incrementAndGet();
  this.source = source;
  this.declaredType = declaredType;
  this.slot = slot;
  this.isClone = isClone;
  this.graphRef = graphRef;
  this.context = graphRef != null ? graphRef.context() : null;
  this.state = typeState;
  this.uses = new ConcurrentLightHashSet<>();
  this.inputs = new ConcurrentLightHashSet<>();
  this.observers = new ConcurrentLightHashSet<>();
  this.observees = new ConcurrentLightHashSet<>();
  this.usedAsAParameter = false;
  this.usedAsAReceiver = false;
}
origin: com.oracle.substratevm/pointsto

protected AbstractVirtualInvokeTypeFlow(Invoke invoke, MethodCallTargetNode target,
        TypeFlow<?>[] actualParameters, ActualReturnTypeFlow actualReturn, BytecodeLocation location) {
  super(invoke, target, actualParameters, actualReturn, location);
  assert target.invokeKind() == InvokeKind.Virtual || target.invokeKind() == InvokeKind.Interface;
  callees = new ConcurrentLightHashSet<>();
}
com.oracle.graal.pointsto.utilConcurrentLightHashSet<init>

Popular methods of ConcurrentLightHashSet

  • addElement
  • getElements
  • clear
  • removeElement
  • size

Popular in Java

  • Running tasks concurrently on multiple threads
  • setContentView (Activity)
  • getApplicationContext (Context)
  • requestLocationUpdates (LocationManager)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Collectors (java.util.stream)
  • JFrame (javax.swing)
  • Top plugins for WebStorm
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