Home | History | Annotate | Download | only in i18n

Lines Matching refs:confidence

34     int32_t confidence;
84 // Cook up some sort of confidence score, based on presence of a BOM
86 confidence = 0;
88 confidence = 100;
90 confidence = 80;
92 confidence = 100;
94 confidence = 80;
96 // Plain ASCII. Confidence must be > 10, it's more likely than UTF-16, which
97 // accepts ASCII with confidence = 10.
98 confidence = 15;
101 confidence = 25;
104 results->set(input, this, confidence);
105 return (confidence > 0);