/external/webkit/Source/WebCore/page/ |
SpeechInputResult.cpp | 33 PassRefPtr<SpeechInputResult> SpeechInputResult::create(const String& utterance, double confidence) 35 return adoptRef(new SpeechInputResult(utterance, confidence)); 43 SpeechInputResult::SpeechInputResult(const String& utterance, double confidence) 45 , m_confidence(confidence) 49 double SpeechInputResult::confidence() const function in class:WebCore::SpeechInputResult
|
SpeechInputResult.h | 42 static PassRefPtr<SpeechInputResult> create(const String& utterance, double confidence); 44 double confidence() const; 48 SpeechInputResult(const String& utterance, double confidence);
|
SpeechInputResult.idl | 32 readonly attribute float confidence;
|
/external/icu4c/i18n/ |
csrutf8.cpp | 33 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...] |
csrucode.cpp | 77 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;
|
csmatch.cpp | 22 : csr(0), confidence(0) 31 confidence = conf; 46 return confidence;
|
csmatch.h | 25 int32_t confidence; member in class:CharsetMatch
|
/external/webkit/Source/WebKit/chromium/public/ |
WebSpeechInputControllerMock.h | 47 virtual void addMockRecognitionResult(const WebString& result, double confidence, const WebString& language) = 0;
|
WebSpeechInputResult.h | 47 WEBKIT_API void set(const WebString& utterance, double confidence);
|
/external/webkit/Source/WebKit/chromium/src/ |
WebSpeechInputResult.cpp | 44 void WebSpeechInputResult::set(const WebString& utterance, double confidence) 46 m_private = WebCore::SpeechInputResult::create(utterance, confidence);
|
WebSpeechInputControllerMockImpl.h | 65 void addMockRecognitionResult(const WebString& result, double confidence, const WebString& language);
|
WebSpeechInputControllerMockImpl.cpp | 60 void WebSpeechInputControllerMockImpl::addMockRecognitionResult(const WebString& result, double confidence, const WebString &language) 62 m_webcoreMock->addRecognitionResult(result, confidence, language);
|
/external/webkit/Tools/Scripts/webkitpy/style/ |
error_handlers_unittest.py | 76 def _call_error_handler(self, handle_error, confidence, line_number=100): 80 confidence=confidence, 126 confidence = 1 129 confidence, 132 self._call_error_handler(error_handler, confidence) 144 confidence = 5 147 self._call_error_handler(error_handler, confidence) 154 self._call_error_handler(error_handler, confidence) 166 self._call_error_handler(error_handler, confidence) [all...] |
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 131 def __call__(self, line_number, category, confidence, message): 141 confidence_in_error=confidence, 154 confidence_in_error=confidence,
|
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
python_unittest.py | 49 def _mock_handle_style_error(line_number, category, confidence, 51 error = (line_number, category, confidence, message)
|
common_unittest.py | 48 def _mock_style_error_handler(self, line_number, category, confidence, 51 error = (line_number, category, confidence, message) 105 def style_error_handler(line_number, category, confidence, message): 107 self.assertEqual(confidence, 5)
|
xml_unittest.py | 36 def handle_style_error(line_number, category, confidence, message): 37 self.fail('Unexpected error: %d %s %d %s' % (line_number, category, confidence, message)) 42 def handle_style_error(line_number, category, confidence, message):
|
text_unittest.py | 44 def error_for_test(line_number, category, confidence, message): 55 def error_for_test(line_number, category, confidence, message):
|
changelog_unittest.py | 36 def handle_style_error(line_number, category, confidence, message): 37 self.fail('Unexpected error: %d %s %d %s for\n%s' % (line_number, category, confidence, message, changelog_data)) 45 def handle_style_error(line_number, category, confidence, message):
|
/frameworks/base/media/libstagefright/ |
DataSource.cpp | 67 String8 *mimeType, float *confidence, sp<AMessage> *meta) { 69 *confidence = 0.0f; 79 if (newConfidence > *confidence) { 81 *confidence = newConfidence; 87 return *confidence > 0.0;
|
/external/webkit/Source/WebCore/platform/mock/ |
SpeechInputClientMock.cpp | 85 void SpeechInputClientMock::addRecognitionResult(const String& result, double confidence, const AtomicString& language) 88 m_resultsForEmptyLanguage.append(SpeechInputResult::create(result, confidence)); 92 m_recognitionResults.find(language)->second.append(SpeechInputResult::create(result, confidence));
|
SpeechInputClientMock.h | 52 void addRecognitionResult(const String& result, double confidence, const AtomicString& language);
|
/external/icu4c/samples/csdet/ |
csdet.c | 59 int32_t confidence = ucsdet_getConfidence(csm[match], &status); local 65 printf("%s (%s) %d\n", name, lang, confidence);
|
/external/webkit/Source/WebCore/platform/text/ |
TextEncodingDetectorICU.cpp | 72 // encoding with a highest confidence among the detector-specific 85 // 10 is the minimum confidence value consistent with the codepoint 95 int32_t confidence = ucsdet_getConfidence(matches[i], &status); 100 if (confidence < kThresold)
|
/frameworks/base/include/media/stagefright/ |
DataSource.h | 71 bool sniff(String8 *mimeType, float *confidence, sp<AMessage> *meta); 78 float *confidence, sp<AMessage> *meta);
|