Searched refs:currentCharacter (Results 1 – 8 of 8) sorted by relevance
74 int currentCharacter = m_currentCharacter; in advance() local75 const UChar* cp = m_run.data(currentCharacter); in advance()86 while (currentCharacter < offset) { in advance()94 UChar32 normalized = normalizeVoicingMarks(currentCharacter); in advance()106 if (currentCharacter + 1 >= m_run.length()) in advance()173 if (currentCharacter != 0 && !Font::treatAsSpace(cp[-1]) && m_font->wordSpacing()) in advance()180 currentCharacter += clusterLength; in advance()196 …if ((m_run.applyWordRounding() && currentCharacter < m_run.length() && Font::isRoundingHackCharact… in advance()197 || (m_run.applyRunRounding() && currentCharacter >= m_end)) { in advance()210 m_currentCharacter = currentCharacter; in advance()[all …]
53 UChar32 normalizeVoicingMarks(int currentCharacter);
64 inline const UChar* Lexer::currentCharacter() const in currentCharacter() function in JSC::Lexer71 return currentCharacter() - m_codeStart; in currentOffset()565 const UChar* stringStart = currentCharacter(); in lex()571 m_buffer16.append(stringStart, currentCharacter() - stringStart); in lex()576 lvalp->ident = makeIdentifier(stringStart, currentCharacter() - stringStart); in lex()662 const UChar* identifierStart = currentCharacter(); in lex()667 lvalp->ident = makeIdentifier(identifierStart, currentCharacter() - identifierStart); in lex()670 m_buffer16.append(identifierStart, currentCharacter() - identifierStart); in lex()
80 const UChar* currentCharacter() const;
215 char currentCharacter = currentLine.charAt(currentIndex); in nextWord() local216 if (isDelimiter(currentCharacter) || in nextWord()217 Character.isWhitespace(currentCharacter)) in nextWord()
802 SVGChar& currentCharacter = *itSearch; in cummulatedWidthOrHeightOfTextChunk() local811 length += currentCharacter.x - lastCharacter.x - lastGlyphWidth; in cummulatedWidthOrHeightOfTextChunk()814 length += currentCharacter.y - lastCharacter.y - lastGlyphHeight; in cummulatedWidthOrHeightOfTextChunk()1284 …const UChar* currentCharacter = text->characters() + (textBox->direction() == RTL ? textBox->end()… in buildLayoutInformationForTextBox() local1300 …if (currentCharacter && Font::treatAsSpace(*currentCharacter) && lastCharacter && !Font::treatAsSp… in buildLayoutInformationForTextBox()1307 … float orientationAngle = glyphOrientationToAngle(svgStyle, isVerticalText, *currentCharacter); in buildLayoutInformationForTextBox()
4807 (JSC::Lexer::currentCharacter): Added.4808 (JSC::Lexer::currentOffset): Changed to call currentCharacter for clarity.4832 function, currentCharacter function, and changed the arguments to the makeIdentifier
41124 (WebCore::WidthIterator::advance): pass currentCharacter to normalizeVoicingMarks41125 (WebCore::WidthIterator::normalizeVoicingMarks): turn the currentCharacter variable