/external/chromium_org/third_party/WebKit/Source/modules/speech/ |
SpeechSynthesisEvent.cpp | 36 PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name) 38 return adoptRefWillBeNoop(new SpeechSynthesisEvent(type, charIndex, elapsedTime, name)); 45 SpeechSynthesisEvent::SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name) 47 , m_charIndex(charIndex)
|
SpeechSynthesisEvent.idl | 27 readonly attribute unsigned long charIndex;
|
SpeechSynthesisEvent.h | 37 static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name); 39 unsigned long charIndex() const { return m_charIndex; } 52 SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
|
SpeechSynthesis.h | 79 virtual void boundaryEventOccurred(PlatformSpeechSynthesisUtterance*, SpeechBoundary, unsigned charIndex) OVERRIDE; 83 void fireEvent(const AtomicString& type, SpeechSynthesisUtterance*, unsigned long charIndex, const String& name);
|
SpeechSynthesis.cpp | 145 void SpeechSynthesis::fireEvent(const AtomicString& type, SpeechSynthesisUtterance* utterance, unsigned long charIndex, const String& name) 148 utterance->dispatchEvent(SpeechSynthesisEvent::create(type, charIndex, (currentTime() - utterance->startTime()), name)); 174 void SpeechSynthesis::boundaryEventOccurred(PlatformSpeechSynthesisUtterance* utterance, SpeechBoundary boundary, unsigned charIndex) 181 fireEvent(EventTypeNames::boundary, static_cast<SpeechSynthesisUtterance*>(utterance->client()), charIndex, wordBoundaryString); 184 fireEvent(EventTypeNames::boundary, static_cast<SpeechSynthesisUtterance*>(utterance->client()), charIndex, sentenceBoundaryString);
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebSpeechSynthesizerClient.h | 45 virtual void wordBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex) = 0; 46 virtual void sentenceBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex) = 0;
|
/external/icu/icu4c/source/i18n/ |
csrucode.cpp | 60 for (int32_t charIndex=0; charIndex<bytesToCheck-1; charIndex+=2) { 61 UChar codeUnit = (input[charIndex] << 8) | input[charIndex + 1]; 62 if (charIndex == 0 && codeUnit == 0xFEFF) { 95 for (int32_t charIndex=0; charIndex<bytesToCheck-1; charIndex+=2) { 96 UChar codeUnit = input[charIndex] | (input[charIndex + 1] << 8) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebSpeechSynthesizerClientImpl.h | 51 virtual void wordBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex); 52 virtual void sentenceBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex);
|
WebSpeechSynthesizerClientImpl.cpp | 77 void WebSpeechSynthesizerClientImpl::wordBoundaryEventOccurred(const WebSpeechSynthesisUtterance& utterance, unsigned charIndex) 79 m_client->boundaryEventOccurred(utterance, SpeechWordBoundary, charIndex); 82 void WebSpeechSynthesizerClientImpl::sentenceBoundaryEventOccurred(const WebSpeechSynthesisUtterance& utterance, unsigned charIndex) 84 m_client->boundaryEventOccurred(utterance, SpeechSentenceBoundary, charIndex);
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/ |
ttsdebug.js | 69 if (evt.charIndex != 0) { 70 errors.push('Error: start event should have a charIndex of 0.'); 77 if (evt.charIndex != 30) { 78 errors.push('Error: end event should have a charIndex of 30.'); 317 if (evt.charIndex > 0 && evt.charIndex < 62) { 320 if (evt.charIndex < min || evt.charIndex > max) { 321 errors.push('Got word at charIndex ' + evt.charIndex + ', ' [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/speech/ |
PlatformSpeechSynthesizer.h | 52 virtual void boundaryEventOccurred(PlatformSpeechSynthesisUtterance*, SpeechBoundary, unsigned charIndex) = 0;
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/ |
console_tts_engine.js | 42 sendTtsEvent({'type': 'end', 'charIndex': utterance.length}); 49 sendTtsEvent({'type': 'word', 'charIndex': index}); 54 sendTtsEvent({'type': 'sentence', 'charIndex': index}); 65 sendTtsEvent({'type': 'start', 'charIndex': 0});
|
/external/icu/icu4c/source/layout/ |
MPreFixups.cpp | 89 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success); 92 glyphStorage.setCharIndex(mpreIndex + i, charIndex, success);
|
LEGlyphStorage.h | 398 * @param charIndex the new char index 403 void setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success);
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
tts_custom_bindings.js | 23 charIndex: event.charIndex,
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
Lexer.as | 146 var t:Token = CommonToken.createFromStream(input, state.type, state.channel, state.tokenStartCharIndex, charIndex - 1); 217 public function get charIndex():int { 228 return input.substring(state.tokenStartCharIndex, charIndex-1);
|
/external/icu/icu4c/source/layoutex/ |
ParagraphLayout.cpp | 982 le_int32 ParagraphLayout::previousBreak(le_int32 charIndex) 986 while (charIndex < fCharCount && 987 (u_isWhitespace(fChars[charIndex]) || 988 u_iscntrl(fChars[charIndex]))) { 989 charIndex += 1; 1006 return fBreakIterator->preceding(charIndex + 1); [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/extensions/ |
extension_installed_bubble_controller.h | 120 atIndex:(NSUInteger)charIndex;
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/ |
ttsdemo.js | 73 text.setSelectionRange(0, event.charIndex);
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
ubidi.h | [all...] |
/external/chromium_org/third_party/icu/source/test/letest/ |
cletest.c | 636 le_int32 charIndex = 0, lineNumber = 1; 678 if (ix != charIndex) { 679 if (ix != charIndex - 1) { 681 i, lineNumber, charIndex, ix); 685 charIndex += 1; 694 * is equal to charIndex and then advance charIndex to the maximum. 710 if (minIndex != charIndex) { 712 run, lineNumber, charIndex, minIndex); 716 charIndex = maxIndex + 1 [all...] |
letest.cpp | [all...] |
/external/icu/icu4c/source/common/unicode/ |
ubidi.h | [all...] |
/external/icu/icu4c/source/layoutex/layout/ |
ParagraphLayout.h | 591 le_int32 getCharRun(le_int32 charIndex); 595 le_int32 previousBreak(le_int32 charIndex);
|
/external/icu/icu4c/source/test/letest/ |
cletest.c | 637 le_int32 charIndex = 0, lineNumber = 1; 679 if (ix != charIndex) { 680 if (ix != charIndex - 1) { 682 i, lineNumber, charIndex, ix); 686 charIndex += 1; 695 * is equal to charIndex and then advance charIndex to the maximum. 711 if (minIndex != charIndex) { 713 run, lineNumber, charIndex, minIndex); 717 charIndex = maxIndex + 1 [all...] |