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

12

/external/icu/icu4c/source/i18n/
H A Dcsmatch.h24 * Any confidence > 0 indicates a possible match, meaning that the input bytes
37 int32_t confidence; member in class:CharsetMatch
H A Dcsrutf8.cpp36 int32_t confidence; local
86 // Cook up some sort of confidence score, based on presence of a BOM
88 confidence = 0;
90 confidence = 100;
92 confidence = 80;
94 confidence = 100;
96 confidence = 80;
99 // accepts ASCII with confidence = 10.
100 confidence = 15;
103 confidence
[all...]
H A Dcsrucode.cpp34 // UTF-16 confidence calculation. Very simple minded, but better than nothing.
35 // Any 8 bit non-control characters bump the confidence up. These have a zero high byte,
40 static int32_t adjustConfidence(UChar codeUnit, int32_t confidence) { argument
42 confidence -= 10;
44 confidence += 10;
46 if (confidence < 0) {
47 confidence = 0;
48 } else if (confidence > 100) {
49 confidence = 100;
51 return confidence;
58 int32_t confidence = 10; local
93 int32_t confidence = 10; local
130 int32_t confidence = 0; local
[all...]
H A Dcsr2022.cpp150 int32_t confidence = match_2022(textIn->fInputBytes, local
154 results->set(textIn, this, confidence);
155 return (confidence > 0);
166 int32_t confidence = match_2022(textIn->fInputBytes, local
170 results->set(textIn, this, confidence);
171 return (confidence > 0);
181 int32_t confidence = match_2022(textIn->fInputBytes, local
185 results->set(textIn, this, confidence);
186 return (confidence > 0);
H A Dcsrmbcs.cpp154 int32_t confidence = 0; local
180 return confidence;
188 // We don't have enough data to have any confidence.
190 confidence = 0;
195 confidence = 10;
198 return confidence;
206 confidence = 0;
208 return confidence;
213 // Assess confidence purely on having a reasonable number of
215 confidence
273 int32_t confidence = match_mbcs(det, commonChars_sjis, UPRV_LENGTHOF(commonChars_sjis)); local
374 int32_t confidence = match_mbcs(det, commonChars_euc_jp, UPRV_LENGTHOF(commonChars_euc_jp)); local
396 int32_t confidence = match_mbcs(det, commonChars_euc_kr, UPRV_LENGTHOF(commonChars_euc_kr)); local
448 int32_t confidence = match_mbcs(det, commonChars_big5, UPRV_LENGTHOF(commonChars_big5)); local
524 int32_t confidence = match_mbcs(det, commonChars_gb_18030, UPRV_LENGTHOF(commonChars_gb_18030)); local
[all...]
H A Dcsrsbcs.cpp137 // were we were getting a confidence of 135...
899 int32_t confidence = match_sbcs(textIn, ngrams, charMap_8859_1); local
900 if (confidence > bestConfidenceSoFar) {
901 results->set(textIn, this, confidence, name, lang);
902 bestConfidenceSoFar = confidence;
926 int32_t confidence = match_sbcs(textIn, ngrams, charMap_8859_2); local
927 if (confidence > bestConfidenceSoFar) {
928 results->set(textIn, this, confidence, name, lang);
929 bestConfidenceSoFar = confidence;
963 int32_t confidence local
990 int32_t confidence = match_sbcs(textIn, ngrams_8859_6_ar, charMap_8859_6); local
1018 int32_t confidence = match_sbcs(textIn, ngrams_8859_7_el, charMap_8859_7); local
1051 int32_t confidence = match_sbcs(textIn, ngrams_8859_8_I_he, charMap_8859_8); local
1069 int32_t confidence = match_sbcs(textIn, ngrams_8859_8_he, charMap_8859_8); local
1097 int32_t confidence = match_sbcs(textIn, ngrams_8859_9_tr, charMap_8859_9); local
1119 int32_t confidence = match_sbcs(textIn, ngrams_windows_1256, charMap_windows_1256); local
1141 int32_t confidence = match_sbcs(textIn, ngrams_windows_1251, charMap_windows_1251); local
1163 int32_t confidence = match_sbcs(textIn, ngrams_KOI8_R, charMap_KOI8_R); local
1191 int32_t confidence = match_sbcs(textIn, ngrams_IBM424_he_rtl, charMap_IBM424_he); local
1208 int32_t confidence = match_sbcs(textIn, ngrams_IBM424_he_ltr, charMap_IBM424_he); local
1246 int32_t confidence = match_sbcs(textIn, ngrams_IBM420_ar_rtl, charMap_IBM420_ar); local
1263 int32_t confidence = match_sbcs(textIn, ngrams_IBM420_ar_ltr, charMap_IBM420_ar); local
[all...]
/external/libxcam/xcore/
H A Dmeta_data.h55 uint32_t confidence; member in struct:XCam::DevicePose
61 confidence = 1;
/external/icu/icu4c/source/samples/csdet/
H A Dcsdet.c63 int32_t confidence = ucsdet_getConfidence(csm[match], &status); local
69 printf("%s (%s) %d\n", name, lang, confidence);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCharsetRecog_Unicode.java36 // UTF-16 confidence calculation. Very simple minded, but better than nothing.
37 // Any 8 bit non-control characters bump the confidence up. These have a zero high byte,
41 static int adjustConfidence(int codeUnit, int confidence) { argument
43 confidence -= 10;
45 confidence += 10;
47 if (confidence < 0) {
48 confidence = 0;
49 } else if (confidence > 100) {
50 confidence = 100;
52 return confidence;
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_Unicode.java35 // UTF-16 confidence calculation. Very simple minded, but better than nothing.
36 // Any 8 bit non-control characters bump the confidence up. These have a zero high byte,
40 static int adjustConfidence(int codeUnit, int confidence) { argument
42 confidence -= 10;
44 confidence += 10;
46 if (confidence < 0) {
47 confidence = 0;
48 } else if (confidence > 100) {
49 confidence = 100;
51 return confidence;
[all...]
/external/tensorflow/tensorflow/contrib/lite/models/smartreply/
H A Dpredictor.cc58 TfLiteTensor* confidence = interpreter->tensor(interpreter->outputs()[1]); local
60 for (int i = 0; i < confidence->dims->data[0]; i++) {
61 float weight = confidence->data.f[i];
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
H A DClassifier.java44 private final Float confidence; field in class:Classifier.Recognition
50 final String id, final String title, final Float confidence, final RectF location) {
53 this.confidence = confidence;
66 return confidence;
88 if (confidence != null) {
89 resultString += String.format("(%.1f%%) ", confidence * 100.0f);
49 Recognition( final String id, final String title, final Float confidence, final RectF location) argument
/external/deqp/modules/glshared/
H A DglsCalibration.hpp61 float confidence; member in struct:deqp::gls::LineParametersWithConfidence
/external/tensorflow/tensorflow/contrib/lite/examples/label_image/
H A Dlabel_image.cc212 const float confidence = result.first; local
214 LOG(INFO) << confidence << ": " << index << " " << labels[index] << "\n";
/external/neven/
H A DFaceDetector_jni.cpp41 float confidence; member in struct:FaceData
49 jfieldID confidence; member in struct:FaceOffsets
81 fdata->confidence = (float)btk_DCR_confidence(hdcr) / (1 << 24);
105 gFaceOffsets.confidence = _env->GetFieldID(faceClass, "mConfidence", "F");
259 _env->SetFloatField(face, gFaceOffsets.confidence, faceData.confidence);
/external/icu/icu4c/source/test/intltest/
H A Dcsdetest.cpp204 int32_t confidence = ucsdet_getConfidence(matches[m], &status); local
206 printf("%s (%s) %d\n", name, lang, confidence);
387 goto try_le; // no point in looking at confidence if we got the wrong character set.
391 errln("Did not get 100%% confidence for UTF-16BE: got %d", conf);
409 goto bail; // no point in looking at confidence if we got the wrong character set.
413 errln("Did not get 100%% confidence for UTF-16LE: got %d", conf);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dannotations.jar ... edu.umd.cs.findbugs.annotations.Confidence confidence () public abstract java.lang.String explanation () } edu ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/deqp/modules/gles3/performance/
H A Des3pDepthTests.cpp759 const float confidence = 0.60f; local
760 const LineParametersWithConfidence testParam = theilSenSiegelLinearRegression(testSamples, confidence);
767 log << TestLog::Message << "Offset & coefficient presented as [confidence interval min, estimate, confidence interval max]. Reported confidence interval for this test is " << confidence << TestLog::EndMessage;
778 log << TestLog::Message << "Coefficient confidence bounds include values below 0.0, the operation likely has neglible per-pixel cost" << TestLog::EndMessage;
783 log << TestLog::Message << "Coefficient confidence range is extremely large, cannot give reliable result" << TestLog::EndMessage;
784 m_results.addResult(QP_TEST_RESULT_PASS, "Result confidence extremely low");
1067 const float confidence local
[all...]
/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/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 692 milliseconds

12