Searched refs:currentCharacter (Results 1 – 13 of 13) sorted by relevance
/external/webkit/Source/WebCore/platform/graphics/ |
D | WidthIterator.cpp | 82 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 …]
|
D | WidthIterator.h | 58 UChar32 normalizeVoicingMarks(int currentCharacter);
|
/external/webkit/Source/WebCore/rendering/svg/ |
D | SVGTextLayoutEngineSpacing.cpp | 70 …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()
|
D | SVGTextLayoutAttributesBuilder.cpp | 114 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()
|
D | SVGTextLayoutEngineSpacing.h | 39 …KerningAndSpacing(const SVGRenderStyle*, SVGElement* lengthContext, const UChar* currentCharacter);
|
D | SVGTextLayoutEngine.cpp | 505 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/ |
D | Lexer.cpp | 236 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 …]
|
D | Lexer.h | 105 ALWAYS_INLINE const UChar* currentCharacter() const;
|
/external/proguard/src/proguard/ |
D | WordReader.java | 215 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/ |
D | RenderFontJme.java | 115 …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/ |
D | ChangeLog-2009-06-16 | 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
|
D | ChangeLog-2011-02-16 | 21461 (JSC::Lexer::currentCharacter):
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-12-31 | 41124 (WebCore::WidthIterator::advance): pass currentCharacter to normalizeVoicingMarks 41125 (WebCore::WidthIterator::normalizeVoicingMarks): turn the currentCharacter variable
|