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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
Latin1TextIterator.h 31 // The passed in LChar pointer starts at 'currentCharacter'. The iterator operates on the range [currentCharacter, lastCharacter].
33 Latin1TextIterator(const LChar* characters, int currentCharacter, int lastCharacter, int /*endCharacter*/)
35 , m_currentCharacter(currentCharacter)
56 int currentCharacter() const { return m_currentCharacter; }
WidthIterator.cpp 73 GlyphData WidthIterator::glyphDataForCharacter(UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength)
79 return renderingContext->glyphDataForCharacter(*m_font, m_run, *this, character, mirror, currentCharacter, advanceLength);
155 const GlyphData& glyphData = glyphDataForCharacter(character, rtl, textIterator.currentCharacter(), advanceLength);
225 if (m_run.allowsTrailingExpansion() || (m_run.ltr() && textIterator.currentCharacter() + advanceLength < static_cast<size_t>(m_run.length()))
226 || (m_run.rtl() && textIterator.currentCharacter())) {
236 if (treatAsSpace && (character != '\t' || !m_run.allowTabs()) && (textIterator.currentCharacter() || character == noBreakSpace) && m_font->fontDescription().wordSpacing())
251 if (!textIterator.currentCharacter())
278 if ((m_run.applyWordRounding() && textIterator.currentCharacter() < m_run.length() && Character::isRoundingHackCharacter(*(textIterator.characters())))
279 || (m_run.applyRunRounding() && textIterator.currentCharacter() >= m_run.length())) {
304 unsigned consumedCharacters = textIterator.currentCharacter() - m_currentCharacter
    [all...]
WidthIterator.h 83 GlyphData glyphDataForCharacter(UChar32, bool mirror, int currentCharacter, unsigned& advanceLength);
  /external/chromium_org/third_party/WebKit/Source/platform/text/
QuotedPrintable.cpp 69 char currentCharacter = input[i];
72 if ((currentCharacter < ' ' || currentCharacter > '~' || currentCharacter == '=') && currentCharacter != '\t')
76 if (!requiresEncoding && (currentCharacter == '\t' || currentCharacter == ' ') && (isLastCharacter || lengthOfLineEndingAtIndex(input, inputLength, i + 1)))
106 out.append(upperNibbleToASCIIHexDigit(currentCharacter));
107 out.append(lowerNibbleToASCIIHexDigit(currentCharacter));
110 out.append(currentCharacter);
    [all...]
SurrogatePairAwareTextIterator.h 32 // The passed in UChar pointer starts at 'currentCharacter'. The iterator operatoes on the range [currentCharacter, lastCharacter].
34 SurrogatePairAwareTextIterator(const UChar*, int currentCharacter, int lastCharacter, int endCharacter);
56 int currentCharacter() const { return m_currentCharacter; }
SurrogatePairAwareTextIterator.cpp 33 SurrogatePairAwareTextIterator::SurrogatePairAwareTextIterator(const UChar* characters, int currentCharacter, int lastCharacter, int endCharacter)
35 , m_currentCharacter(currentCharacter)
TextRun.h 222 virtual GlyphData glyphDataForCharacter(const Font&, const TextRun&, WidthIterator&, UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTokenizer-in.cpp 226 static inline bool isIdentifierStartAfterDash(CharacterType* currentCharacter)
228 return isASCIIAlpha(currentCharacter[0]) || currentCharacter[0] == '_' || currentCharacter[0] >= 128
229 || (currentCharacter[0] == '\\' && isCSSEscape(currentCharacter[1]));
260 static CharacterType* checkAndSkipEscape(CharacterType* currentCharacter)
264 ASSERT(*currentCharacter == '\\');
266 ++currentCharacter;
267 if (!isCSSEscape(*currentCharacter))
    [all...]
CSSTokenizer.h 80 inline CharacterType*& currentCharacter();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.cpp 87 float SVGTextLayoutEngineSpacing::calculateCSSSpacing(UChar currentCharacter)
90 m_lastCharacter = currentCharacter;
96 if (currentCharacter && lastCharacter && m_font.fontDescription().wordSpacing()) {
97 if (Character::treatAsSpace(currentCharacter) && !Character::treatAsSpace(lastCharacter))
SVGTextLayoutEngineSpacing.h 36 float calculateCSSSpacing(UChar currentCharacter);
SVGTextRunRenderingContext.h 45 virtual GlyphData glyphDataForCharacter(const Font&, const TextRun&, WidthIterator&, UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength) OVERRIDE;
49 virtual GlyphData glyphDataForCharacter(const Font&, const TextRun&, WidthIterator&, UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength) OVERRIDE { return 0; }
SVGTextLayoutAttributesBuilder.cpp 95 UChar currentCharacter = text->characterAt(textPosition);
96 if (currentCharacter == ' ' && lastCharacter == ' ')
99 lastCharacter = currentCharacter;
SVGTextRunRenderingContext.cpp 178 GlyphData SVGTextRunRenderingContext::glyphDataForCharacter(const Font& font, const TextRun& run, WidthIterator& iterator, UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength)
229 if (svgFontData->applySVGGlyphSelection(iterator, glyphData, mirror, currentCharacter, advanceLength))
SVGTextLayoutEngine.cpp 496 UChar currentCharacter = text->characterAt(m_visualCharacterOffset);
497 float orientationAngle = baselineLayout.calculateGlyphOrientationAngle(m_isVerticalText, svgStyle, currentCharacter);
514 float spacing = spacingLayout.calculateCSSSpacing(currentCharacter);
  /external/proguard/src/proguard/
WordReader.java 222 char currentCharacter = currentLine.charAt(currentIndex);
223 if (isFileDelimiter(currentCharacter) ||
224 ((isOption(currentCharacter) ||
225 isComment(currentCharacter)) &&
254 char currentCharacter = currentLine.charAt(currentIndex);
255 if (isDelimiter(currentCharacter) ||
256 Character.isWhitespace(currentCharacter) ||
257 isComment(currentCharacter)) {
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontData.cpp 150 bool SVGFontData::applySVGGlyphSelection(WidthIterator& iterator, GlyphData& glyphData, bool mirror, int currentCharacter, unsigned& advanceLength) const
154 ASSERT(int(run.charactersLength()) >= currentCharacter);
160 remainingTextInRun = String(run.data8(currentCharacter), run.charactersLength() - currentCharacter);
163 remainingTextInRun = String(run.data16(currentCharacter), run.charactersLength() - currentCharacter);
169 if (!currentCharacter && arabicForms.isEmpty())
226 if (!isCompatibleGlyph(svgGlyph, isVerticalText, language, arabicForms, currentCharacter, currentCharacter + svgGlyph.unicodeStringLength))
SVGFontData.h 48 virtual bool applySVGGlyphSelection(WidthIterator&, GlyphData&, bool mirror, int currentCharacter, unsigned& advanceLength) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/platform/
SharedBufferChunkReader.cpp 81 char currentCharacter = m_segment[m_segmentIndex++];
82 if (currentCharacter != m_separator[m_separatorIndex]) {
88 chunk.append(currentCharacter);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 481 inline void nextCharacter(UChar& currentCharacter, UChar& lastCharacter, UChar& secondToLastCharacter)
484 lastCharacter = currentCharacter;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp 644 CandidateRun run = { character, startIndexOfCurrentRun, iterator.currentCharacter(), currentFontData, currentScript };
647 startIndexOfCurrentRun = iterator.currentCharacter();
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar 

Completed in 976 milliseconds

1 2