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

/external/icu4c/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.cpp77 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;
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/webkit/Source/WebCore/page/
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)
49 double SpeechInputResult::confidence() const function in class:WebCore::SpeechInputResult
/external/webkit/Source/WebKit/chromium/src/
H A DWebSpeechInputResult.cpp44 void WebSpeechInputResult::set(const WebString& utterance, double confidence) argument
46 m_private = WebCore::SpeechInputResult::create(utterance, confidence);
H A DWebSpeechInputControllerMockImpl.cpp60 void WebSpeechInputControllerMockImpl::addMockRecognitionResult(const WebString& result, double confidence, const WebString &language) argument
62 m_webcoreMock->addRecognitionResult(result, confidence, language);
/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/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/webkit/Source/WebCore/platform/mock/
H A DSpeechInputClientMock.cpp85 void SpeechInputClientMock::addRecognitionResult(const String& result, double confidence, const AtomicString& language) argument
88 m_resultsForEmptyLanguage.append(SpeechInputResult::create(result, confidence));
92 m_recognitionResults.find(language)->second.append(SpeechInputResult::create(result, 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/neven/
H A DFaceDetector_jni.cpp41 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/icu4c/test/intltest/
H A Dcsdetest.cpp192 int32_t confidence = ucsdet_getConfidence(matches[m], &status); local
194 printf("%s (%s) %d\n", name, lang, confidence);
336 goto try_le; // no point in looking at confidence if we got the wrong character set.
340 errln("Did not get 100%% confidence for UTF-16BE: got %d", conf);
358 goto bail; // no point in looking at confidence if we got the wrong character set.
362 errln("Did not get 100%% confidence for UTF-16LE: got %d", conf);
/external/opencv/cv/src/
H A Dcvfundam.cpp65 CvMat* mask, double confidence=0.99, int maxIters=1000 );
68 double confidence=0.99, int maxIters=1000 );
164 double confidence, int maxIters )
226 niters = cvRANSACUpdateNumIters( confidence,
258 CvMat* mask, double confidence, int maxIters )
294 niters = cvRound(log(1-confidence)/log(1-pow(1-outlierRatio,(double)modelPoints)));
580 const double confidence = 0.99; local
620 result = estimator.runLMeDS( M, m, &_H, tempMask, confidence );
622 result = estimator.runRANSAC( M, m, &_H, tempMask, ransacReprojThreshold, confidence );
162 runRANSAC( const CvMat* m1, const CvMat* m2, CvMat* model, CvMat* mask, double reprojThreshold, double confidence, int maxIters ) argument
257 runLMeDS( const CvMat* m1, const CvMat* m2, CvMat* model, CvMat* mask, double confidence, int maxIters ) argument
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp502 void LayoutTestController::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language) argument
/external/webkit/Tools/DumpRenderTree/qt/
H A DLayoutTestControllerQt.cpp814 void LayoutTestController::addMockSpeechInputResult(const QString& result, double confidence, const QString& language) argument
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp441 void LayoutTestController::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language) argument
/external/webkit/Tools/DumpRenderTree/wx/
H A DLayoutTestControllerWx.cpp350 void LayoutTestController::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language) argument
/external/webkit/Tools/DumpRenderTree/
H A DLayoutTestController.cpp1284 double confidence = JSValueToNumber(context, arguments[1], exception); local
1290 controller->addMockSpeechInputResult(result.get(), confidence, language.get());
/external/netperf/
H A Dnetlib.c3839 /* these routines for confidence intervals are courtesy of IBM. They */
3885 confidence=-10.0;
3930 confidence=-10.0;
4133 confidence = min(min(result_confid,loc_cpu_confid),rem_cpu_confid);
4136 confidence = result_confid;
4161 /* desirec confidence in the results. it will print the achieved */
4162 /* confidence to "where" raj 11/94 */
4170 "!!! Desired confidence was not achieved within ");
3857 confidence=-10.0; variable
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 632 milliseconds