class Test {
int[] mIndex = null;
int mSize = 0;
void indexValues() {
float loadFactor = mIndex == null ? 1.f : ((float) mSize) / ((float) mIndex.length);
if (loadFactor < 0.25f || 0.75f <= loadFactor) {
mIndex = new int[mSize * 2];
}
mIndex[0] = -1;
}
void bar() {
int time = 99;
String str = time < 0 ? "" : "";
String str1 = time <= 0 ? "" : "";
String str2 = time >= 100 ? "" : "";
}
void forLoop() {
int target = 3;
for (int current = 0; current < target; ) {
current = 0;
}
}
void doLoop() {
int current;
int target = 3;
do
{
current = 0;
} while (current < target);
}
void whileLoop() {
int current = 0;
int target = 3;
while (current < target)
{
current = 0;
}
}
}