Home | History | Annotate | Download | only in evaluation

Lines Matching defs:isCategory2

55     private long[] isCategory2   = new long[ClassConstants.TYPICAL_CODE_LENGTH];
157 public boolean isCategory2(int instructionOffset, int variableIndex)
160 (isCategory2[instructionOffset] & (1L << variableIndex)) != 0;
174 isCategory2[instructionOffset] |= 1L << variableIndex;
178 isCategory2[instructionOffset] &= ~(1L << variableIndex);
275 if (value != null && value.isCategory2())
290 if (value != null && value.isCategory2())
313 long category2 = isCategory2[offset];
428 isCategory2 = new long[codeLength];
436 isCategory2[index] = 0L;