Lines Matching refs:isFastFormattable

1142     assertTrue("", vf.isFastFormattable(0));  in TestValueFormatterIsFastFormattable()
1143 assertTrue("", vf.isFastFormattable(35)); in TestValueFormatterIsFastFormattable()
1144 assertTrue("", vf.isFastFormattable(-48)); in TestValueFormatterIsFastFormattable()
1145 assertTrue("", vf.isFastFormattable(2147483647)); in TestValueFormatterIsFastFormattable()
1146 assertTrue("", vf.isFastFormattable(-2147483647)); in TestValueFormatterIsFastFormattable()
1147 assertFalse("", vf.isFastFormattable(-2147483648L)); in TestValueFormatterIsFastFormattable()
1154 assertTrue("0", vf.isFastFormattable(0)); in TestValueFormatterIsFastFormattable()
1155 assertTrue("62", vf.isFastFormattable(62)); in TestValueFormatterIsFastFormattable()
1156 assertTrue("999", vf.isFastFormattable(999)); in TestValueFormatterIsFastFormattable()
1157 assertFalse("1000", vf.isFastFormattable(1000)); in TestValueFormatterIsFastFormattable()
1158 assertTrue("-1", vf.isFastFormattable(-1)); in TestValueFormatterIsFastFormattable()
1159 assertTrue("-38", vf.isFastFormattable(-38)); in TestValueFormatterIsFastFormattable()
1160 assertTrue("-999", vf.isFastFormattable(-999)); in TestValueFormatterIsFastFormattable()
1161 assertFalse("-1000", vf.isFastFormattable(-1000)); in TestValueFormatterIsFastFormattable()
1163 assertTrue("-1000", vf.isFastFormattable(-1000)); in TestValueFormatterIsFastFormattable()
1164 assertTrue("-4095", vf.isFastFormattable(-4095)); in TestValueFormatterIsFastFormattable()
1165 assertTrue("4095", vf.isFastFormattable(4095)); in TestValueFormatterIsFastFormattable()
1167 assertFalse("-4096", vf.isFastFormattable(-4096)); in TestValueFormatterIsFastFormattable()
1168 assertFalse("4096", vf.isFastFormattable(4096)); in TestValueFormatterIsFastFormattable()
1179 assertTrue("-4096", vf.isFastFormattable(-4096)); in TestValueFormatterIsFastFormattable()
1180 assertTrue("4096", vf.isFastFormattable(4096)); in TestValueFormatterIsFastFormattable()
1181 assertTrue("-10000", vf.isFastFormattable(-10000)); in TestValueFormatterIsFastFormattable()
1182 assertTrue("10000", vf.isFastFormattable(10000)); in TestValueFormatterIsFastFormattable()
1183 assertTrue("-2147483647", vf.isFastFormattable(-2147483647)); in TestValueFormatterIsFastFormattable()
1184 assertTrue("2147483647", vf.isFastFormattable(2147483647)); in TestValueFormatterIsFastFormattable()
1187 assertFalse("-4096", vf.isFastFormattable(-4096)); in TestValueFormatterIsFastFormattable()
1188 assertFalse("4096", vf.isFastFormattable(4096)); in TestValueFormatterIsFastFormattable()
1200 assertTrue("-999", vf.isFastFormattable(-999)); in TestValueFormatterIsFastFormattable()
1201 assertTrue("999", vf.isFastFormattable(999)); in TestValueFormatterIsFastFormattable()
1202 assertFalse("-1000", vf.isFastFormattable(-1000)); in TestValueFormatterIsFastFormattable()
1203 assertFalse("1000", vf.isFastFormattable(1000)); in TestValueFormatterIsFastFormattable()
1206 assertFalse("-999", vf.isFastFormattable(-999)); in TestValueFormatterIsFastFormattable()
1207 assertFalse("999", vf.isFastFormattable(999)); in TestValueFormatterIsFastFormattable()
1208 assertFalse("-2147483647", vf.isFastFormattable(-2147483647)); in TestValueFormatterIsFastFormattable()
1209 assertFalse("2147483647", vf.isFastFormattable(2147483647)); in TestValueFormatterIsFastFormattable()
1217 assertTrue("5125", vf.isFastFormattable(5125)); in TestValueFormatterIsFastFormattable()
1219 assertFalse("5125", vf.isFastFormattable(5125)); in TestValueFormatterIsFastFormattable()
1221 assertTrue("5125", vf.isFastFormattable(5125)); in TestValueFormatterIsFastFormattable()
1229 assertTrue("7127", vf.isFastFormattable(7127)); in TestValueFormatterIsFastFormattable()
1231 assertFalse("7127", vf.isFastFormattable(7127)); in TestValueFormatterIsFastFormattable()
1239 assertTrue("1049", vf.isFastFormattable(1049)); in TestValueFormatterIsFastFormattable()
1241 assertFalse("1049", vf.isFastFormattable(1049)); in TestValueFormatterIsFastFormattable()
1249 assertTrue("1099", vf.isFastFormattable(1099)); in TestValueFormatterIsFastFormattable()
1251 assertFalse("1099", vf.isFastFormattable(1099)); in TestValueFormatterIsFastFormattable()
1260 assertFalse("1081", vf.isFastFormattable(1081)); in TestValueFormatterIsFastFormattable()