Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/graphics/
DWidthIterator.cpp82 int currentCharacter = m_currentCharacter; in advance() local
83 const UChar* cp = m_run.data(currentCharacter); in advance()
93 while (currentCharacter < offset) { in advance()
101 UChar32 normalized = normalizeVoicingMarks(currentCharacter); in advance()
113 if (currentCharacter + 1 >= m_run.length()) in advance()
179 …if (m_run.allowsTrailingExpansion() || (m_run.ltr() && currentCharacter + clusterLength < static_c… in advance()
180 || (m_run.rtl() && currentCharacter)) { in advance()
190 … if (treatAsSpace && currentCharacter && !Font::treatAsSpace(cp[-1]) && m_font->wordSpacing()) in advance()
198 if (!currentCharacter) in advance()
207 currentCharacter += clusterLength; in advance()
[all …]
DWidthIterator.h58 UChar32 normalizeVoicingMarks(int currentCharacter);
/external/webkit/Source/WebCore/rendering/svg/
DSVGTextLayoutEngineSpacing.cpp70 …ngAndSpacing(const SVGRenderStyle* style, SVGElement* lengthContext, const UChar* currentCharacter) in calculateCSSKerningAndSpacing() argument
80 m_lastCharacter = currentCharacter; in calculateCSSKerningAndSpacing()
86 if (currentCharacter && lastCharacter && m_font.wordSpacing()) { in calculateCSSKerningAndSpacing()
87 if (Font::treatAsSpace(*currentCharacter) && !Font::treatAsSpace(*lastCharacter)) in calculateCSSKerningAndSpacing()
DSVGTextLayoutAttributesBuilder.cpp114 const UChar& currentCharacter = characters[textPosition]; in processRenderSVGInlineText() local
115 if (characterIsSpace(currentCharacter) && characterIsSpaceOrNull(lastCharacter)) in processRenderSVGInlineText()
118 lastCharacter = currentCharacter; in processRenderSVGInlineText()
201 const UChar& currentCharacter = characters[textPosition]; in propagateLayoutAttributes() local
217 …if (!preserveWhiteSpace && characterIsSpace(currentCharacter) && characterIsSpaceOrNull(lastCharac… in propagateLayoutAttributes()
233 lastCharacter = currentCharacter; in propagateLayoutAttributes()
DSVGTextLayoutEngineSpacing.h39 …KerningAndSpacing(const SVGRenderStyle*, SVGElement* lengthContext, const UChar* currentCharacter);
DSVGTextLayoutEngine.cpp505 const UChar* currentCharacter = characters + m_visualCharacterOffset; in layoutTextOnLineOrPath() local
506 …gle = baselineLayout.calculateGlyphOrientationAngle(m_isVerticalText, svgStyle, *currentCharacter); in layoutTextOnLineOrPath()
523 …t spacing = spacingLayout.calculateCSSKerningAndSpacing(svgStyle, lengthContext, currentCharacter); in layoutTextOnLineOrPath()
/external/webkit/Source/JavaScriptCore/parser/
DLexer.cpp236 ALWAYS_INLINE const UChar* Lexer::currentCharacter() const in currentCharacter() function in JSC::Lexer
244 return currentCharacter() - m_codeStart; in currentOffset()
405 const UChar* identifierStart = currentCharacter(); in parseIdentifier()
418 if (identifierStart != currentCharacter()) in parseIdentifier()
419 m_buffer16.append(identifierStart, currentCharacter() - identifierStart); in parseIdentifier()
430 identifierStart = currentCharacter(); in parseIdentifier()
434 identifierLength = currentCharacter() - identifierStart; in parseIdentifier()
436 if (identifierStart != currentCharacter()) in parseIdentifier()
437 m_buffer16.append(identifierStart, currentCharacter() - identifierStart); in parseIdentifier()
461 const UChar* stringStart = currentCharacter(); in parseString()
[all …]
DLexer.h105 ALWAYS_INLINE const UChar* currentCharacter() const;
/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/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
DRenderFontJme.java115 …public int getCharacterAdvance(final char currentCharacter, final char nextCharacter, final float … in getCharacterAdvance() argument
116 return Math.round(font.getCharacterAdvance(currentCharacter, nextCharacter, size)); in getCharacterAdvance()
/external/webkit/Source/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
DChangeLog-2011-02-1621461 (JSC::Lexer::currentCharacter):
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3141124 (WebCore::WidthIterator::advance): pass currentCharacter to normalizeVoicingMarks
41125 (WebCore::WidthIterator::normalizeVoicingMarks): turn the currentCharacter variable