Home
last modified time | relevance | path

Searched refs:ALLOW_NON_NUMERIC_NUMBERS (Results 1 – 10 of 10) sorted by relevance

/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/async/
DAsyncNaNHandlingTest.java16 assertFalse(DEFAULT_F.isEnabled(JsonParser.Feature.ALLOW_NON_NUMERIC_NUMBERS)); in testDefaultsForAsync()
40 .enable(JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS) in testAllowNaN()
71 .configure(JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS, true) in _testAllowNaN()
119 .enable(JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS) in testAllowInf()
170 .configure(JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS, true) in _testAllowInf()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DJsonReadFeature.java143 ALLOW_NON_NUMERIC_NUMBERS(false, JsonParser.Feature.ALLOW_NON_NUMERIC_NUMBERS), enumConstant
DUTF8DataInputJsonParser.java48 … private final static int FEAT_MASK_NON_NUM_NUMBERS = Feature.ALLOW_NON_NUMERIC_NUMBERS.getMask();
DReaderBasedJsonParser.java29 … private final static int FEAT_MASK_NON_NUM_NUMBERS = Feature.ALLOW_NON_NUMERIC_NUMBERS.getMask();
DUTF8StreamJsonParser.java28 … private final static int FEAT_MASK_NON_NUM_NUMBERS = Feature.ALLOW_NON_NUMERIC_NUMBERS.getMask();
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/
DNonStandardParserFeaturesTest.java18 assertFalse(STD_F.isEnabled(JsonParser.Feature.ALLOW_NON_NUMERIC_NUMBERS)); in testDefaults()
169 .configure(JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS, true) in _testAllowNaN()
215 .enable(JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS) in _testAllowInf()
DNumberParsingTest.java623 .enable(JsonReadFeature.ALLOW_NON_NUMERIC_NUMBERS) in testParsingOfLongerSequencesWithNonNumeric()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonParser.java212 ALLOW_NON_NUMERIC_NUMBERS(false), enumConstant
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/async/
DNonBlockingJsonParserBase.java847 if (!isEnabled(Feature.ALLOW_NON_NUMERIC_NUMBERS)) { in _valueNonStdNumberComplete()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/base/
DParserBase.java1118 if (isEnabled(Feature.ALLOW_NON_NUMERIC_NUMBERS)) { in _validJsonValueList()