Home
last modified time | relevance | path

Searched refs:currentCharacter (Results 1 – 8 of 8) sorted by relevance

/external/webkit/WebCore/platform/graphics/
DWidthIterator.cpp74 int currentCharacter = m_currentCharacter; in advance() local
75 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 …]
DWidthIterator.h53 UChar32 normalizeVoicingMarks(int currentCharacter);
/external/proguard/src/proguard/
DWordReader.java215 char currentCharacter = currentLine.charAt(currentIndex); in nextWord() local
216 if (isDelimiter(currentCharacter) || in nextWord()
217 Character.isWhitespace(currentCharacter)) in nextWord()
/external/webkit/JavaScriptCore/parser/
DLexer.cpp73 inline const UChar* Lexer::currentCharacter() const in currentCharacter() function in JSC::Lexer
80 return currentCharacter() - m_codeStart; in currentOffset()
573 const UChar* stringStart = currentCharacter(); in lex()
579 m_buffer16.append(stringStart, currentCharacter() - stringStart); in lex()
584 lvalp->ident = makeIdentifier(stringStart, currentCharacter() - stringStart); in lex()
668 const UChar* identifierStart = currentCharacter(); in lex()
673 lvalp->ident = makeIdentifier(identifierStart, currentCharacter() - identifierStart); in lex()
676 m_buffer16.append(identifierStart, currentCharacter() - identifierStart); in lex()
DLexer.h80 const UChar* currentCharacter() const;
/external/webkit/WebCore/rendering/
DSVGRootInlineBox.cpp700 SVGChar& currentCharacter = *itSearch; in cummulatedWidthOrHeightOfTextChunk() local
709 length += currentCharacter.x - lastCharacter.x - lastGlyphWidth; in cummulatedWidthOrHeightOfTextChunk()
712 length += currentCharacter.y - lastCharacter.y - lastGlyphHeight; in cummulatedWidthOrHeightOfTextChunk()
1184 …const UChar* currentCharacter = text->characters() + (textBox->direction() == RTL ? textBox->end()… in buildLayoutInformationForTextBox() local
1200 …if (currentCharacter && Font::treatAsSpace(*currentCharacter) && lastCharacter && !Font::treatAsSp… in buildLayoutInformationForTextBox()
1207 … float orientationAngle = glyphOrientationToAngle(svgStyle, isVerticalText, *currentCharacter); in buildLayoutInformationForTextBox()
/external/webkit/JavaScriptCore/
DChangeLog-2009-06-164807 (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
/external/webkit/WebCore/
DChangeLog-2006-12-3141124 (WebCore::WidthIterator::advance): pass currentCharacter to normalizeVoicingMarks
41125 (WebCore::WidthIterator::normalizeVoicingMarks): turn the currentCharacter variable