Searched defs:fEnabledRecognizers (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcsdetect.h35 UBool *fEnabledRecognizers; // If not null, active set of charset recognizers had member in class:CharsetDetector
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCharsetDetector.java184 boolean active = (fEnabledRecognizers != null) ? fEnabledRecognizers[i] : rcinfo.isDefaultEnabled;
437 private boolean[] fEnabledRecognizers; // If not null, active set of charset recognizers had field in class:CharsetDetector
509 boolean active = (fEnabledRecognizers == null) ? rcinfo.isDefaultEnabled : fEnabledRecognizers[i];
549 if (fEnabledRecognizers == null && !isDefaultVal) {
551 fEnabledRecognizers = new boolean[ALL_CS_RECOGNIZERS.size()];
555 fEnabledRecognizers[i] = ALL_CS_RECOGNIZERS.get(i).isDefaultEnabled;
559 if (fEnabledRecognizers != null) {
560 fEnabledRecognizers[modId
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetDetector.java195 boolean active = (fEnabledRecognizers != null) ? fEnabledRecognizers[i] : rcinfo.isDefaultEnabled;
458 private boolean[] fEnabledRecognizers; // If not null, active set of charset recognizers had field in class:CharsetDetector
530 boolean active = (fEnabledRecognizers == null) ? rcinfo.isDefaultEnabled : fEnabledRecognizers[i];
570 if (fEnabledRecognizers == null && !isDefaultVal) {
572 fEnabledRecognizers = new boolean[ALL_CS_RECOGNIZERS.size()];
576 fEnabledRecognizers[i] = ALL_CS_RECOGNIZERS.get(i).isDefaultEnabled;
580 if (fEnabledRecognizers != null) {
581 fEnabledRecognizers[modId
[all...]

Completed in 116 milliseconds