Home | History | Annotate | Download | only in libmedia

Lines Matching refs:matches

119             int32_t matches;
120 const UCharsetMatch** ucma = ucsdet_detectAll(csd, &matches, &status);
122 ucma, matches, &goodmatch, &highest);
148 ucma = ucsdet_detectAll(csd, &matches, &status);
150 ucma, matches, &goodmatch, &highest);
186 int32_t matches;
190 const UCharsetMatch** ucma = ucsdet_detectAll(csd, &matches, &status);
192 ucma, matches, &goodmatchSingle, &highestSingle);
284 * When ICU detects multiple encoding matches, apply additional heuristics to determine
288 * - decode the input using each of the matches found
302 Vector<const UCharsetMatch*> matches;
305 ALOGV("%zu matches", nummatches);
310 matches.push_back(ucma[i]);
313 size_t num = matches.size();
318 int confidence = ucsdet_getConfidence(matches[0], &status);
322 return matches[0];
325 ALOGV("considering %zu matches", num);
334 const char *encname = ucsdet_getName(matches[i], &status);
335 int confidence = ucsdet_getConfidence(matches[i], &status);
444 ucsdet_getName(matches[highestidx], &status), highest);
452 ucsdet_getName(matches[runnerupidx], &status), runnerup);
461 return matches[highestidx];