Searched refs:charIndex (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/Modules/speech/
H A DSpeechSynthesisEvent.cpp38 PassRefPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name) argument
40 return adoptRef(new SpeechSynthesisEvent(type, charIndex, elapsedTime, name));
47 SpeechSynthesisEvent::SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name) argument
49 , m_charIndex(charIndex)
H A DSpeechSynthesisEvent.idl29 readonly attribute unsigned long charIndex;
H A DSpeechSynthesisEvent.h39 static PassRefPtr<SpeechSynthesisEvent> create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
41 unsigned long charIndex() const { return m_charIndex; } function in class:WebCore::SpeechSynthesisEvent
49 SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
H A DSpeechSynthesis.h73 virtual void boundaryEventOccurred(PassRefPtr<PlatformSpeechSynthesisUtterance>, SpeechBoundary, unsigned charIndex) OVERRIDE;
77 void fireEvent(const AtomicString& type, SpeechSynthesisUtterance*, unsigned long charIndex, const String& name);
H A DSpeechSynthesis.cpp149 void SpeechSynthesis::fireEvent(const AtomicString& type, SpeechSynthesisUtterance* utterance, unsigned long charIndex, const String& name) argument
151 utterance->dispatchEvent(SpeechSynthesisEvent::create(type, charIndex, (monotonicallyIncreasingTime() - utterance->startTime()), name));
176 void SpeechSynthesis::boundaryEventOccurred(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance, SpeechBoundary boundary, unsigned charIndex) argument
183 fireEvent(eventNames().boundaryEvent, static_cast<SpeechSynthesisUtterance*>(utterance->client()), charIndex, wordBoundaryString);
186 fireEvent(eventNames().boundaryEvent, static_cast<SpeechSynthesisUtterance*>(utterance->client()), charIndex, sentenceBoundaryString);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceHypertext.cpp82 static gint webkitAccessibleHypertextGetLinkIndex(AtkHypertext* hypertext, gint charIndex) argument
94 if (startIndex <= charIndex && charIndex < endIndex)
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkTextIndex.c59 TkTextBTree tree; /* Tree that lineIndex and charIndex refer
139 * character at lineIndex and charIndex (or the closest existing
150 TkTextMakeCharIndex(tree, lineIndex, charIndex, indexPtr)
151 TkTextBTree tree; /* Tree that lineIndex and charIndex refer
155 int charIndex; /* Index of desired character. */
166 charIndex = 0;
168 if (charIndex < 0) {
169 charIndex = 0;
174 charIndex = 0;
202 if (charIndex
424 int lineIndex, charIndex; local
569 int numBytes, charIndex; local
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsglyphgenerator.py6 def insertGlyphs_length_forStartingGlyphAtIndex_characterIndex_(self, glyphs, length, glyphIndex, charIndex):
7 self.glyphs = (glyphs, length, glyphIndex, charIndex)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsglyphgenerator.py6 def insertGlyphs_length_forStartingGlyphAtIndex_characterIndex_(self, glyphs, length, glyphIndex, charIndex):
7 self.glyphs = (glyphs, length, glyphIndex, charIndex)
/macosx-10.9.5/Security-55471.14.18/sec/securityd/
H A Dasynchttp.c84 CFIndex charIndex = componentRange.location; local
89 while (charIndex < length) {
90 UniChar ch = CFStringGetCharacterFromInlineBuffer(&inlineBuf, charIndex);
92 componentRange.length = charIndex - componentRange.location;
98 componentRange.location = charIndex;
100 componentEnd = charIndex;
106 charIndex ++;
110 componentRange.length = charIndex - componentRange.location;
115 if (charIndex == length) {
150 componentRange.location = charIndex
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DMPreFixups.cpp89 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success); local
92 glyphStorage.setCharIndex(mpreIndex + i, charIndex, success);
H A DLEGlyphStorage.h398 * @param charIndex the new char index
403 void setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success);
H A DIndicReordering.cpp206 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) argument
212 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
218 void setFeatures ( le_uint32 charIndex, FeatureMask charFeatures) argument
222 fGlyphStorage.setAuxData( charIndex, charFeatures, success );
226 FeatureMask getFeatures ( le_uint32 charIndex )
229 return fGlyphStorage.getAuxData(charIndex,success);
292 void insertCharacter( LEUnicode ch, le_int32 toPosition, le_int32 charIndex, le_uint32 auxData ) { argument
304 fGlyphStorage.setCharIndex(toPosition,charIndex,success);
H A DKhmerReordering.cpp153 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) argument
159 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
H A DLEGlyphStorage.cpp311 void LEGlyphStorage::setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success) argument
327 fCharIndices[glyphIndex] = charIndex;
H A DTibetanReordering.cpp155 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask featureMask) argument
161 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DPlatformSpeechSynthesizer.h56 virtual void boundaryEventOccurred(PassRefPtr<PlatformSpeechSynthesisUtterance>, SpeechBoundary, unsigned charIndex) = 0;
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkTextIndex.c478 * character at lineIndex and charIndex (or the closest existing
490 TkTextBTree tree, /* Tree that lineIndex and charIndex refer
495 int charIndex, /* Index of desired character. */
506 charIndex = 0;
508 if (charIndex < 0) {
509 charIndex = 0;
515 charIndex = 0;
543 if (charIndex == 0) {
547 charIndex--;
552 if (charIndex < segPt
482 TkTextMakeCharIndex( TkTextBTree tree, TkText *textPtr, int lineIndex, int charIndex, TkTextIndex *indexPtr) argument
878 int lineIndex, charIndex; local
1036 int numBytes, charIndex; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/layoutex/
H A DParagraphLayout.cpp979 le_int32 ParagraphLayout::previousBreak(le_int32 charIndex) argument
983 while (charIndex < fCharCount &&
984 (u_isWhitespace(fChars[charIndex]) ||
985 u_iscntrl(fChars[charIndex]))) {
986 charIndex += 1;
1003 return fBreakIterator->preceding(charIndex + 1);
1132 le_int32 ParagraphLayout::getCharRun(le_int32 charIndex) argument
1134 if (charIndex < 0 || charIndex > fCharCount) {
1144 while (charIndex >
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFXMLInputStream.h59 CFIndex charIndex, lineNum; // location in the file member in struct:__CFXMLInputStream
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dubidi.h1383 * @param charIndex is the index of a character within the text, in the
1394 * <code>charIndex</code>.
1410 ubidi_getParagraph(const UBiDi *pBiDi, int32_t charIndex, int32_t *pParaStart,
1451 * @param charIndex the index of a character. It must be in the range
1454 * @return The level for the character at charIndex (0 if charIndex is not
1462 ubidi_getLevelAt(const UBiDi *pBiDi, int32_t charIndex);
1906 * <li>maximum value of the <code>charIndex</code> argument of
1908 * <li>maximum value of the <code>charIndex</code> argument of
/macosx-10.9.5/ICU-511.35/icuSources/layoutex/layout/
H A DParagraphLayout.h591 le_int32 getCharRun(le_int32 charIndex);
595 le_int32 previousBreak(le_int32 charIndex);
/macosx-10.9.5/ICU-511.35/icuSources/test/letest/
H A Dcletest.c636 le_int32 charIndex = 0, lineNumber = 1; local
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
[all...]
H A Dletest.cpp872 le_int32 charIndex = 0, lineNumber = 1; local
908 if (ix != charIndex) {
909 if (ix != charIndex - 1) {
911 i, lineNumber, charIndex, ix);
915 charIndex += 1;
924 * is equal to charIndex and then advance charIndex to the maximum.
940 if (minIndex != charIndex) {
942 run, lineNumber, charIndex, minIndex);
946 charIndex
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dubidiln.c253 ubidi_getLevelAt(const UBiDi *pBiDi, int32_t charIndex) { argument
255 if(!IS_VALID_PARA_OR_LINE(pBiDi) || charIndex<0 || pBiDi->length<=charIndex) {
257 } else if(pBiDi->direction!=UBIDI_MIXED || charIndex>=pBiDi->trailingWSStart) {
258 return GET_PARALEVEL(pBiDi, charIndex);
260 return pBiDi->levels[charIndex];

Completed in 374 milliseconds

12