MCPcopy Create free account
hub / github.com/google/re2j / Queue

Method Queue

java/com/google/re2j/Machine.java:39–43  ·  view source on GitHub ↗
(int n)

Source from the content-addressed store, hash-verified

37 int size; // of prefix of |dense| that is logically populated
38
39 Queue(int n) {
40 this.sparse = new int[n];
41 this.densePcs = new int[n];
42 this.denseThreads = new Thread[n];
43 }
44
45 boolean contains(int pc) {
46 int j = sparse[pc];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected