Home
last modified time | relevance | path

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

/external/tagsoup/src/org/ccil/cowan/tagsoup/
DParser.java284 theFeatures.put(namespacesFeature, truthValue(DEFAULT_NAMESPACES)); in theFeatures.put()
300 theFeatures.put(ignoreBogonsFeature, truthValue(DEFAULT_IGNORE_BOGONS)); in theFeatures.put()
301 theFeatures.put(bogonsEmptyFeature, truthValue(DEFAULT_BOGONS_EMPTY)); in theFeatures.put()
302 theFeatures.put(rootBogonsFeature, truthValue(DEFAULT_ROOT_BOGONS)); in theFeatures.put()
303 theFeatures.put(defaultAttributesFeature, truthValue(DEFAULT_DEFAULT_ATTRIBUTES)); in theFeatures.put()
304 theFeatures.put(translateColonsFeature, truthValue(DEFAULT_TRANSLATE_COLONS)); in theFeatures.put()
305 theFeatures.put(restartElementsFeature, truthValue(DEFAULT_RESTART_ELEMENTS)); in theFeatures.put()
306 theFeatures.put(ignorableWhitespaceFeature, truthValue(DEFAULT_IGNORABLE_WHITESPACE)); in theFeatures.put()
307 theFeatures.put(CDATAElementsFeature, truthValue(DEFAULT_CDATA_ELEMENTS)); in theFeatures.put()
312 private static Boolean truthValue(boolean b) { in truthValue() method in Parser