Lines Matching refs:getInt
550 int getInt();
553 int x0 = (getInt(), 0); // expected-warning{{unused variable 'x0'}} in testBOComma()
554 …int x1 = (getInt(), getInt()); // expected-warning {{Value stored to 'x1' during its initializatio… in testBOComma()
555 …int x2 = (getInt(), getInt(), getInt()); //expected-warning{{Value stored to 'x2' during its initi… in testBOComma()
557 x3 = (getInt(), getInt(), 0); // expected-warning{{Value stored to 'x3' is never read}} in testBOComma()
558 int x4 = (getInt(), (getInt(), 0)); // expected-warning{{unused variable 'x4'}} in testBOComma()
560 int x5 = (getInt(), (y = 0)); // expected-warning{{unused variable 'x5'}} in testBOComma()
561 …int x6 = (getInt(), (y = getInt())); //expected-warning {{Value stored to 'x6' during its initiali… in testBOComma()
562 …int x7 = 0, x8 = getInt(); //expected-warning {{Value stored to 'x8' during its initialization is … in testBOComma()
563 …int x9 = getInt(), x10 = 0; //expected-warning {{Value stored to 'x9' during its initialization is… in testBOComma()
564 …int m = getInt(), mm, mmm; //expected-warning {{Value stored to 'm' during its initialization is n… in testBOComma()
565 …int n, nn = getInt(); //expected-warning {{Value stored to 'nn' during its initialization is never… in testBOComma()