HomeSort by relevance Sort by last modified time
    Searched refs:currentCharacter (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/
WidthIterator.cpp 82 int currentCharacter = m_currentCharacter;
83 const UChar* cp = m_run.data(currentCharacter);
93 while (currentCharacter < offset) {
101 UChar32 normalized = normalizeVoicingMarks(currentCharacter);
113 if (currentCharacter + 1 >= m_run.length())
179 if (m_run.allowsTrailingExpansion() || (m_run.ltr() && currentCharacter + clusterLength < static_cast<size_t>(m_run.length()))
180 || (m_run.rtl() && currentCharacter)) {
190 if (treatAsSpace && currentCharacter && !Font::treatAsSpace(cp[-1]) && m_font->wordSpacing())
198 if (!currentCharacter)
207 currentCharacter += clusterLength
    [all...]
WidthIterator.h 58 UChar32 normalizeVoicingMarks(int currentCharacter);
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngineSpacing.cpp 70 float SVGTextLayoutEngineSpacing::calculateCSSKerningAndSpacing(const SVGRenderStyle* style, SVGElement* lengthContext, const UChar* currentCharacter)
80 m_lastCharacter = currentCharacter;
86 if (currentCharacter && lastCharacter && m_font.wordSpacing()) {
87 if (Font::treatAsSpace(*currentCharacter) && !Font::treatAsSpace(*lastCharacter))
SVGTextLayoutEngineSpacing.h 39 float calculateCSSKerningAndSpacing(const SVGRenderStyle*, SVGElement* lengthContext, const UChar* currentCharacter);
SVGTextLayoutAttributesBuilder.cpp 114 const UChar& currentCharacter = characters[textPosition];
115 if (characterIsSpace(currentCharacter) && characterIsSpaceOrNull(lastCharacter))
118 lastCharacter = currentCharacter;
201 const UChar& currentCharacter = characters[textPosition];
217 if (!preserveWhiteSpace && characterIsSpace(currentCharacter) && characterIsSpaceOrNull(lastCharacter)) {
233 lastCharacter = currentCharacter;
SVGTextLayoutEngine.cpp 505 const UChar* currentCharacter = characters + m_visualCharacterOffset;
506 float orientationAngle = baselineLayout.calculateGlyphOrientationAngle(m_isVerticalText, svgStyle, *currentCharacter);
523 float spacing = spacingLayout.calculateCSSKerningAndSpacing(svgStyle, lengthContext, currentCharacter);
  /external/proguard/src/proguard/
WordReader.java 215 char currentCharacter = currentLine.charAt(currentIndex);
216 if (isDelimiter(currentCharacter) ||
217 Character.isWhitespace(currentCharacter))
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.cpp 236 ALWAYS_INLINE const UChar* Lexer::currentCharacter() const
244 return currentCharacter() - m_codeStart;
405 const UChar* identifierStart = currentCharacter();
418 if (identifierStart != currentCharacter())
419 m_buffer16.append(identifierStart, currentCharacter() - identifierStart);
430 identifierStart = currentCharacter();
434 identifierLength = currentCharacter() - identifierStart;
436 if (identifierStart != currentCharacter())
437 m_buffer16.append(identifierStart, currentCharacter() - identifierStart);
461 const UChar* stringStart = currentCharacter();
    [all...]
Lexer.h 105 ALWAYS_INLINE const UChar* currentCharacter() const;
  /prebuilt/common/ecj/
ecj.jar 

Completed in 141 milliseconds