Searched defs:confidence (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionAlternative.cpp32 PassRefPtr<SpeechRecognitionAlternative> SpeechRecognitionAlternative::create(const String& transcript, double confidence) argument
34 return adoptRef(new SpeechRecognitionAlternative(transcript, confidence));
37 SpeechRecognitionAlternative::SpeechRecognitionAlternative(const String& transcript, double confidence) argument
39 , m_confidence(confidence)
H A DSpeechRecognitionAlternative.h42 double confidence() const { return m_confidence; } function in class:WebCore::SpeechRecognitionAlternative
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsmatch.h25 int32_t confidence; member in class:CharsetMatch
H A Dcsrutf8.cpp33 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...]
H A Dcsrucode.cpp79 int32_t confidence = 0; local
96 // Cook up some sort of confidence score, based on presense of a BOM
99 confidence = 100;
101 confidence = 80;
103 confidence = 100;
105 confidence = 80;
108 confidence = 25;
111 return confidence;
H A Dcsdetect.cpp269 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.
H A Dcsrmbcs.cpp152 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
[all...]
/external/chromium_org/third_party/WebKit/Source/core/speech/
H A DSpeechInputResult.cpp33 PassRefPtr<SpeechInputResult> SpeechInputResult::create(const String& utterance, double confidence) argument
35 return adoptRef(new SpeechInputResult(utterance, confidence));
43 SpeechInputResult::SpeechInputResult(const String& utterance, double confidence) argument
45 , m_confidence(confidence)
50 double SpeechInputResult::confidence() const function in class:WebCore::SpeechInputResult
/external/icu4c/i18n/
H A Dcsmatch.h22 * Any confidence > 0 indicates a possible match, meaning that the input bytes
35 int32_t confidence; member in class:CharsetMatch
H A Dcsrutf8.cpp34 int32_t confidence; local
89 // Cook up some sort of confidence score, based on presense of a BOM
91 confidence = 0;
93 confidence = 100;
95 confidence = 80;
97 confidence = 100;
99 confidence = 80;
102 confidence = 10;
105 confidence = 25;
108 results->set(input, this, confidence);
[all...]
H A Dcsrucode.cpp35 int32_t confidence = 0; local
38 confidence = 100;
42 results->set(textIn, this, confidence);
43 return (confidence > 0);
59 int32_t confidence = 0; local
62 confidence = 100;
66 results->set(textIn, this, confidence);
67 return (confidence > 0);
82 int32_t confidence = 0; local
99 // Cook up some sort of confidence scor
[all...]
H A Dcsr2022.cpp147 int32_t confidence = match_2022(textIn->fInputBytes, local
151 results->set(textIn, this, confidence);
152 return (confidence > 0);
162 int32_t confidence = match_2022(textIn->fInputBytes, local
166 results->set(textIn, this, confidence);
167 return (confidence > 0);
177 int32_t confidence = match_2022(textIn->fInputBytes, local
181 results->set(textIn, this, confidence);
182 return (confidence > 0);
H A Dcsrmbcs.cpp153 int32_t confidence = 0; local
179 return confidence;
187 // We don't have enough data to have any confidence.
189 confidence = 0;
194 confidence = 10;
197 return confidence;
205 confidence = 0;
207 return confidence;
212 // Assess confidence purely on having a reasonable number of
214 confidence
272 int32_t confidence = match_mbcs(det, commonChars_sjis, ARRAY_SIZE(commonChars_sjis)); local
373 int32_t confidence = match_mbcs(det, commonChars_euc_jp, ARRAY_SIZE(commonChars_euc_jp)); local
395 int32_t confidence = match_mbcs(det, commonChars_euc_kr, ARRAY_SIZE(commonChars_euc_kr)); local
447 int32_t confidence = match_mbcs(det, commonChars_big5, ARRAY_SIZE(commonChars_big5)); local
523 int32_t confidence = match_mbcs(det, commonChars_gb_18030, ARRAY_SIZE(commonChars_gb_18030)); local
[all...]
/external/chromium_org/content/public/common/
H A Dspeech_recognition_result.h18 double confidence; member in struct:content::SpeechRecognitionHypothesis
20 SpeechRecognitionHypothesis() : confidence(0.0) {}
25 confidence(confidence_value) {
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextEncodingDetector.cpp60 // encoding with a highest confidence among the detector-specific
73 // 10 is the minimum confidence value consistent with the codepoint
83 int32_t confidence = ucsdet_getConfidence(matches[i], &status); local
88 if (confidence < kThresold)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSpeechInputResult.cpp46 void WebSpeechInputResult::assign(const WebString& utterance, double confidence) argument
48 m_private = WebCore::SpeechInputResult::create(utterance, confidence);
/external/chromium/base/i18n/
H A Dicu_encoding_detection.cc68 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/base/i18n/
H A Dicu_encoding_detection.cc68 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/icu4c/samples/csdet/
H A Dcsdet.c59 int32_t confidence = ucsdet_getConfidence(csm[match], &status); local
65 printf("%s (%s) %d\n", name, lang, confidence);
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DMockWebSpeechInputController.cpp76 void MockWebSpeechInputController::addMockRecognitionResult(const WebString& result, double confidence, const WebString& language) argument
79 res.assign(result, confidence);
H A DMockWebSpeechRecognizer.cpp58 ResultTask(MockWebSpeechRecognizer* mock, const WebString transcript, float confidence) argument
61 , m_confidence(confidence)
174 void MockWebSpeechRecognizer::addMockResult(const WebString& transcript, float confidence) argument
177 m_mockConfidences.push_back(confidence);
/external/chromium_org/content/browser/speech/
H A Dgoogle_one_shot_remote_engine.cc32 const char* const kConfidenceString = "confidence";
131 // It is not an error if the 'confidence' field is missing.
132 double confidence = 0.0; local
133 hypothesis_value->GetDouble(kConfidenceString, &confidence);
135 confidence));
H A Dgoogle_streaming_remote_engine_unittest.cc144 float confidence = result.is_provisional ? 0.0F : (i * 0.1F); local
146 SpeechRecognitionHypothesis(UTF8ToUTF16("hypothesis"), confidence));
291 // Simulate a protobuf message with an intermediate result without confidence,
427 proto_alternative->set_confidence(hypothesis.confidence);
477 hyp_a.confidence != hyp_b.confidence) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DUtils.java332 * Returns the confidence level for given statistics:
341 * @return a value telling caller the level of confidence of the provided value
361 * Get an icon image corresponding to a given level of confidence and explanation.
363 * @param confidence the confiden level
364 * @param hasExplanation flags indicates whether the confidence may be tempered by an explanation
367 public static String getImage(int confidence, boolean scenarioFailed, boolean hasExplanation) { argument
373 } else if ((confidence & ERR) != 0) {
378 } else if ((confidence & NAN) != 0) {
380 } else if ((confidence & ERR) != 0) {
/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor.cc167 const double confidence = CalculateConfidence(user_text, match, &is_in_db); local
168 DCHECK(confidence >= 0.0 && confidence <= 1.0);
173 // Multiple enties with the same URL are fine as the confidence may be
175 tracked_urls_.push_back(std::make_pair(match.destination_url, confidence));
177 confidence * 100);
180 // Map the confidence to an action.
183 if (confidence >= kConfidenceCutoff[i]) {
382 // Check against tracked urls and log accuracy for the confidence we

Completed in 533 milliseconds

12