HomeSort by relevance Sort by last modified time
    Searched refs:confidence (Results 1 - 25 of 41) sorted by null

1 2

  /external/icu4c/i18n/
csrutf8.cpp 33 int32_t confidence; local
88 // Cook up some sort of confidence score, based on presense of a BOM
90 confidence = 0;
92 confidence = 100;
94 confidence = 80;
96 confidence = 100;
98 confidence = 80;
101 confidence = 10;
104 confidence = 25;
107 return confidence;
    [all...]
csrucode.cpp 77 int32_t confidence = 0; local
94 // Cook up some sort of confidence score, based on presense of a BOM
97 confidence = 100;
99 confidence = 80;
101 confidence = 100;
103 confidence = 80;
106 confidence = 25;
109 return confidence;
csmatch.cpp 22 : csr(0), confidence(0)
31 confidence = conf;
46 return confidence;
csmatch.h 25 int32_t confidence; member in class:CharsetMatch
csrmbcs.cpp 152 int32_t confidence = 0; local
178 return confidence;
186 // We don't have enough data to have any confidence.
188 confidence = 0;
193 confidence = 10;
196 return confidence;
204 confidence = 0;
206 return confidence;
211 // Assess confidence purely on having a reasonable number of
213 confidence = 30 + doubleByteCharCount - 20*badCharCount
    [all...]
csdetect.cpp 269 int32_t confidence; local
280 confidence = detectResults;
282 if (confidence > 0) {
283 resultArray[resultCount++]->set(textIn, csr, confidence);
296 // be the one with the highest confidence rating.
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
error_handlers_unittest.py 66 def _call(self, handle_error, options, confidence):
71 handle_error(line_number, self._category, confidence, message)
73 def _call_error_handler(self, options, confidence):
76 self._call(handle_error, options, confidence)
80 confidence = 1
86 confidence,
89 self._call_error_handler(options, confidence)
96 confidence = 5
100 self._call_error_handler(options, confidence)
108 confidence =
    [all...]
error_handlers.py 31 __call__(self, line_number, category, confidence, message):
43 confidence: An integer between 1-5 that represents the level of
44 confidence in the error. The value 5 means that we are
106 def __call__(self, line_number, category, confidence, message):
113 confidence,
138 confidence))
175 def __call__(self, line_number, category, confidence, message):
188 self._default_error_handler(line_number, category, confidence,
  /frameworks/base/media/libstagefright/
DataSource.cpp 56 bool DataSource::sniff(String8 *mimeType, float *confidence) {
58 *confidence = 0.0f;
66 if (newConfidence > *confidence) {
68 *confidence = newConfidence;
73 return *confidence > 0.0;
MediaExtractor.cpp 48 float confidence; local
49 if (!source->sniff(&tmp, &confidence)) {
56 LOGV("Autodetected media content as '%s' with confidence %.2f",
57 mime, confidence);
AMRExtractor.cpp 89 float confidence; local
90 if (!SniffAMR(mDataSource, &mimeType, &confidence)) {
277 const sp<DataSource> &source, String8 *mimeType, float *confidence) {
286 *confidence = 0.5;
291 *confidence = 0.5;
WAVExtractor.cpp 369 const sp<DataSource> &source, String8 *mimeType, float *confidence) {
380 *confidence = 0.3f;
  /frameworks/base/media/libstagefright/include/
AMRExtractor.h 52 const sp<DataSource> &source, String8 *mimeType, float *confidence);
OggExtractor.h 56 const sp<DataSource> &source, String8 *mimeType, float *confidence);
MP3Extractor.h 55 const sp<DataSource> &source, String8 *mimeType, float *confidence);
WAVExtractor.h 60 const sp<DataSource> &source, String8 *mimeType, float *confidence);
MPEG4Extractor.h 78 const sp<DataSource> &source, String8 *mimeType, float *confidence);
  /external/icu4c/samples/csdet/
csdet.c 59 int32_t confidence = ucsdet_getConfidence(csm[match], &status); local
65 printf("%s (%s) %d\n", name, lang, confidence);
  /external/webkit/WebCore/platform/text/
TextEncodingDetectorICU.cpp 72 // encoding with a highest confidence among the detector-specific
85 // 10 is the minimum confidence value consistent with the codepoint
95 int32_t confidence = ucsdet_getConfidence(matches[i], &status);
100 if (confidence < kThresold)
  /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
common_unittest.py 47 def _mock_style_error_handler(self, line_number, category, confidence,
50 error = (line_number, category, confidence, message)
text_unittest.py 44 def error_for_test(line_number, category, confidence, message):
55 def error_for_test(line_number, category, confidence, message):
  /frameworks/base/include/media/stagefright/
DataSource.h 62 bool sniff(String8 *mimeType, float *confidence);
65 const sp<DataSource> &source, String8 *mimeType, float *confidence);
  /external/neven/
FaceDetector_jni.cpp 41 float confidence; member in struct:FaceData
49 jfieldID confidence; member in struct:FaceOffsets
83 fdata->confidence = (float)btk_DCR_confidence(hdcr) / (1 << 24);
107 gFaceOffsets.confidence = _env->GetFieldID(faceClass, "mConfidence", "F");
268 _env->SetFloatField(face, gFaceOffsets.confidence, faceData.confidence);
  /frameworks/base/media/java/android/media/
FaceDetector.java 36 /** The minimum confidence factor of good face recognition */
46 * Returns a confidence factor between 0 and 1. This indicates how
47 * certain what has been found is actually a face. A confidence
50 public float confidence() { method in class:FaceDetector.Face
  /cts/tests/tests/media/src/android/media/cts/
FaceDetector_FaceTest.java 62 method = "confidence",
87 assertTrue(face.confidence() >= goodConfidence);

Completed in 278 milliseconds

1 2