HomeSort by relevance Sort by last modified time
    Searched defs:SpeechInputResult (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/page/
SpeechInputResult.cpp 27 #include "SpeechInputResult.h"
33 PassRefPtr<SpeechInputResult> SpeechInputResult::create(const String& utterance, double confidence)
35 return adoptRef(new SpeechInputResult(utterance, confidence));
38 PassRefPtr<SpeechInputResult> SpeechInputResult::create(const SpeechInputResult& source)
40 return adoptRef(new SpeechInputResult(source.m_utterance, source.m_confidence));
43 SpeechInputResult::SpeechInputResult(const String& utterance, double confidence
    [all...]
SpeechInputResult.h 39 class SpeechInputResult : public RefCounted<SpeechInputResult> {
41 static PassRefPtr<SpeechInputResult> create(const SpeechInputResult& source);
42 static PassRefPtr<SpeechInputResult> create(const String& utterance, double confidence);
48 SpeechInputResult(const String& utterance, double confidence);
54 typedef Vector<RefPtr<SpeechInputResult> > SpeechInputResultArray;
  /external/webkit/Source/WebKit/chromium/src/
WebSpeechInputResult.cpp 29 #include "SpeechInputResult.h"
39 WebSpeechInputResult::WebSpeechInputResult(const PassRefPtr<WebCore::SpeechInputResult>& value)
46 m_private = WebCore::SpeechInputResult::create(utterance, confidence);
49 WebSpeechInputResult::operator PassRefPtr<WebCore::SpeechInputResult>() const

Completed in 57 milliseconds