Home
last modified time | relevance | path

Searched refs:badInput (Results 1 – 6 of 6) sorted by relevance

/external/gptfdisk/
Dsupport.cc137 int badInput = 0; // flag bad input; once this goes to 1, other values are irrelevant in IeeeToInt() local
157 badInput = 1; in IeeeToInt()
179 badInput = 1; in IeeeToInt()
195 badInput = 1; in IeeeToInt()
200 badInput = 1; in IeeeToInt()
206 badInput = 1; in IeeeToInt()
211 if (badInput) in IeeeToInt()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DFuturesTransformAsyncFunctionTest.java163 BadFuture badInput = new BadFuture(Futures.immediateFuture(20)); in testFutureGetThrowsRuntimeException() local
164 ListenableFuture<String> chain = buildChainingFuture(badInput); in testFutureGetThrowsRuntimeException()
/external/guava/guava-tests/test/com/google/common/primitives/
DDoublesTest.java496 for (String badInput : BAD_TRY_PARSE_INPUTS) { in testTryParseFailures()
497 assertFalse(Doubles.FLOATING_POINT_PATTERN.matcher(badInput).matches()); in testTryParseFailures()
498 assertEquals(referenceTryParse(badInput), Doubles.tryParse(badInput)); in testTryParseFailures()
499 assertNull(Doubles.tryParse(badInput)); in testTryParseFailures()
DFloatsTest.java483 for (String badInput : BAD_TRY_PARSE_INPUTS) { in testTryParseFailures()
484 assertEquals(referenceTryParse(badInput), Floats.tryParse(badInput)); in testTryParseFailures()
485 assertNull(Floats.tryParse(badInput)); in testTryParseFailures()
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
DBaseEncoding.java195 } catch (DecodingException badInput) { in decode()
196 throw new IllegalArgumentException(badInput); in decode()
216 } catch (DecodingException badInput) { in decodeChecked()
217 throw badInput; in decodeChecked()
/external/guava/guava/src/com/google/common/io/
DBaseEncoding.java247 } catch (DecodingException badInput) {
248 throw new IllegalArgumentException(badInput);
268 } catch (DecodingException badInput) {
269 throw badInput;