Home
last modified time | relevance | path

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

/external/gptfdisk/
Dsupport.cc139 int badInput = 0; // flag bad input; once this goes to 1, other values are irrelevant in IeeeToInt() local
159 badInput = 1; in IeeeToInt()
181 badInput = 1; in IeeeToInt()
197 badInput = 1; in IeeeToInt()
202 badInput = 1; in IeeeToInt()
208 badInput = 1; in IeeeToInt()
213 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.java495 for (String badInput : BAD_TRY_PARSE_INPUTS) { in testTryParseFailures()
496 assertFalse(Doubles.FLOATING_POINT_PATTERN.matcher(badInput).matches()); in testTryParseFailures()
497 assertEquals(referenceTryParse(badInput), Doubles.tryParse(badInput)); in testTryParseFailures()
498 assertNull(Doubles.tryParse(badInput)); in testTryParseFailures()
DFloatsTest.java482 for (String badInput : BAD_TRY_PARSE_INPUTS) { in testTryParseFailures()
483 assertEquals(referenceTryParse(badInput), Floats.tryParse(badInput)); in testTryParseFailures()
484 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.java227 } catch (DecodingException badInput) {
228 throw new IllegalArgumentException(badInput);
248 } catch (DecodingException badInput) {
249 throw badInput;