HomeSort by relevance Sort by last modified time
    Searched refs:confidence (Results 26 - 50 of 138) sorted by null

12 3 4 5 6

  /external/chromium_org/content/browser/speech/
google_one_shot_remote_engine_unittest.cc 83 "[{\"utterance\":\"123456\",\"confidence\":0.9}]}");
87 EXPECT_EQ(0.9, result().hypotheses[0].confidence);
92 "{\"utterance\":\"hello\",\"confidence\":0.9},"
93 "{\"utterance\":\"123456\",\"confidence\":0.5}]}");
97 EXPECT_EQ(0.9, result().hypotheses[0].confidence);
99 EXPECT_EQ(0.5, result().hypotheses[1].confidence);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
error_handlers.py 31 __call__(self, line_number, category, confidence, message):
43 confidence: An integer between 1 and 5 inclusive that represents the
44 application's level of confidence in the error. The value
134 def __call__(self, line_number, category, confidence, message):
144 confidence_in_error=confidence,
157 confidence_in_error=confidence,
  /frameworks/av/media/libstagefright/
MediaExtractor.cpp 59 float confidence; local
60 if (!source->sniff(&tmp, &confidence, &meta)) {
67 ALOGV("Autodetected media content as '%s' with confidence %.2f",
68 mime, confidence);
AMRExtractor.cpp 121 float confidence; local
122 if (!SniffAMR(mDataSource, &mimeType, &confidence, NULL)) {
330 const sp<DataSource> &source, String8 *mimeType, float *confidence,
340 *confidence = 0.5;
345 *confidence = 0.5;
DataSource.cpp 116 String8 *mimeType, float *confidence, sp<AMessage> *meta) {
118 *confidence = 0.0f;
134 if (newConfidence > *confidence) {
136 *confidence = newConfidence;
142 return *confidence > 0.0;
  /external/chromium_org/third_party/icu/source/i18n/
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.
  /frameworks/av/media/libstagefright/include/
AACExtractor.h 56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
AMRExtractor.h 57 const sp<DataSource> &source, String8 *mimeType, float *confidence,
DRMExtractor.h 56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
FLACExtractor.h 60 float *confidence, sp<AMessage> *);
MP3Extractor.h 56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
MPEG2TSExtractor.h 66 const sp<DataSource> &source, String8 *mimeType, float *confidence,
OggExtractor.h 58 const sp<DataSource> &source, String8 *mimeType, float *confidence,
WAVExtractor.h 64 const sp<DataSource> &source, String8 *mimeType, float *confidence,
MPEG2PSExtractor.h 74 const sp<DataSource> &source, String8 *mimeType, float *confidence,
  /hardware/qcom/msm8x84/kernel-headers/media/
msm_fd.h 41 __u32 confidence; member in struct:msm_fd_face_data
  /hardware/qcom/msm8x84/original-kernel-headers/media/
msm_fd.h 44 * @confidence: Face confidence level.
51 __u32 confidence; member in struct:msm_fd_face_data
  /external/chromium_org/base/i18n/
icu_encoding_detection.cc 68 int32_t confidence = ucsdet_getConfidence(matches[i], &get_name_status); local
74 // A confidence level >= 10 means that the encoding is expected to properly
75 // decode the text. Drop all encodings with lower confidence level.
76 if (confidence < 10)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
test_expectations_unittest.py 47 def __call__(self, lineno, category, confidence, message):
48 self._errors.append('%s [%s] [%d]' % (message, category, confidence))
  /frameworks/av/include/media/stagefright/
DataSource.h 82 bool sniff(String8 *mimeType, float *confidence, sp<AMessage> *meta);
89 float *confidence, sp<AMessage> *meta);
  /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);
  /external/chromium_org/content/common/
speech_recognition_messages.h 30 IPC_STRUCT_TRAITS_MEMBER(confidence)
  /external/chromium_org/content/shell/renderer/test_runner/
MockWebSpeechRecognizer.cpp 38 ResultTask(MockWebSpeechRecognizer* mock, const WebString transcript, float confidence)
41 , m_confidence(confidence)
154 void MockWebSpeechRecognizer::addMockResult(const WebString& transcript, float confidence)
157 m_mockConfidences.push_back(confidence);
MockWebSpeechRecognizer.h 39 void addMockResult(const blink::WebString& transcript, float confidence);

Completed in 639 milliseconds

12 3 4 5 6