Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/css/parser/
DCSSTokenizer-in.cpp226 static inline bool isIdentifierStartAfterDash(CharacterType* currentCharacter) in isIdentifierStartAfterDash() argument
228 …return isASCIIAlpha(currentCharacter[0]) || currentCharacter[0] == '_' || currentCharacter[0] >= 1… in isIdentifierStartAfterDash()
229 || (currentCharacter[0] == '\\' && isCSSEscape(currentCharacter[1])); in isIdentifierStartAfterDash()
260 static CharacterType* checkAndSkipEscape(CharacterType* currentCharacter) in checkAndSkipEscape() argument
264 ASSERT(*currentCharacter == '\\'); in checkAndSkipEscape()
266 ++currentCharacter; in checkAndSkipEscape()
267 if (!isCSSEscape(*currentCharacter)) in checkAndSkipEscape()
270 if (isASCIIHexDigit(*currentCharacter)) { in checkAndSkipEscape()
274 ++currentCharacter; in checkAndSkipEscape()
275 } while (isASCIIHexDigit(*currentCharacter) && --length); in checkAndSkipEscape()
[all …]
DCSSTokenizer.h80 inline CharacterType*& currentCharacter();
/external/chromium_org/third_party/WebKit/Source/platform/text/
DQuotedPrintable.cpp69 char currentCharacter = input[i]; in quotedPrintableEncode() local
72 …if ((currentCharacter < ' ' || currentCharacter > '~' || currentCharacter == '=') && currentCharac… in quotedPrintableEncode()
76 …if (!requiresEncoding && (currentCharacter == '\t' || currentCharacter == ' ') && (isLastCharacter… in quotedPrintableEncode()
106 out.append(upperNibbleToASCIIHexDigit(currentCharacter)); in quotedPrintableEncode()
107 out.append(lowerNibbleToASCIIHexDigit(currentCharacter)); in quotedPrintableEncode()
110 out.append(currentCharacter); in quotedPrintableEncode()
128 char currentCharacter = data[i]; in quotedPrintableDecode() local
129 if (currentCharacter != '=') { in quotedPrintableDecode()
130 out.append(currentCharacter); in quotedPrintableDecode()
136 out.append(currentCharacter); in quotedPrintableDecode()
DSurrogatePairAwareTextIterator.h34 …SurrogatePairAwareTextIterator(const UChar*, int currentCharacter, int lastCharacter, int endChara…
56 int currentCharacter() const { return m_currentCharacter; } in currentCharacter() function
DSurrogatePairAwareTextIterator.cpp33 …erator::SurrogatePairAwareTextIterator(const UChar* characters, int currentCharacter, int lastChar… in SurrogatePairAwareTextIterator() argument
35 , m_currentCharacter(currentCharacter) in SurrogatePairAwareTextIterator()
DTextRun.h216 …const TextRun&, WidthIterator&, UChar32 character, bool mirror, int currentCharacter, unsigned& ad…
/external/proguard/src/proguard/
DWordReader.java222 char currentCharacter = currentLine.charAt(currentIndex); in nextWord() local
223 if (isFileDelimiter(currentCharacter) || in nextWord()
224 ((isOption(currentCharacter) || in nextWord()
225 isComment(currentCharacter)) && in nextWord()
254 char currentCharacter = currentLine.charAt(currentIndex); in nextWord() local
255 if (isDelimiter(currentCharacter) || in nextWord()
256 Character.isWhitespace(currentCharacter) || in nextWord()
257 isComment(currentCharacter)) { in nextWord()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGTextLayoutEngineSpacing.cpp86 float SVGTextLayoutEngineSpacing::calculateCSSSpacing(UChar currentCharacter) in calculateCSSSpacing() argument
89 m_lastCharacter = currentCharacter; in calculateCSSSpacing()
95 if (currentCharacter && lastCharacter && m_font.fontDescription().wordSpacing()) { in calculateCSSSpacing()
96 if (Character::treatAsSpace(currentCharacter) && !Character::treatAsSpace(lastCharacter)) in calculateCSSSpacing()
DSVGTextRunRenderingContext.h42 …const TextRun&, WidthIterator&, UChar32 character, bool mirror, int currentCharacter, unsigned& ad…
46 …const TextRun&, WidthIterator&, UChar32 character, bool mirror, int currentCharacter, unsigned& ad… in glyphDataForCharacter() argument
DSVGTextLayoutAttributesBuilder.cpp95 UChar currentCharacter = text->characterAt(textPosition); in processRenderSVGInlineText() local
96 if (currentCharacter == ' ' && lastCharacter == ' ') in processRenderSVGInlineText()
99 lastCharacter = currentCharacter; in processRenderSVGInlineText()
DSVGTextLayoutEngineSpacing.h36 float calculateCSSSpacing(UChar currentCharacter);
DSVGTextRunRenderingContext.cpp153 …& run, WidthIterator& iterator, UChar32 character, bool mirror, int currentCharacter, unsigned& ad… in glyphDataForCharacter() argument
204 …if (svgFontData->applySVGGlyphSelection(iterator, glyphData, mirror, currentCharacter, advanceLeng… in glyphDataForCharacter()
DSVGTextLayoutEngine.cpp494 UChar currentCharacter = text.characterAt(m_visualCharacterOffset); in layoutTextOnLineOrPath() local
495 …ngle = baselineLayout.calculateGlyphOrientationAngle(m_isVerticalText, svgStyle, currentCharacter); in layoutTextOnLineOrPath()
512 float spacing = spacingLayout.calculateCSSSpacing(currentCharacter); in layoutTextOnLineOrPath()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DLatin1TextIterator.h33 …Latin1TextIterator(const LChar* characters, int currentCharacter, int lastCharacter, int /*endChar… in Latin1TextIterator() argument
35 , m_currentCharacter(currentCharacter) in Latin1TextIterator()
56 int currentCharacter() const { return m_currentCharacter; } in currentCharacter() function
DWidthIterator.cpp189 charData.characterOffset = textIterator.currentCharacter(); in advanceInternal()
230 unsigned consumedCharacters = textIterator.currentCharacter() - m_currentCharacter; in advanceInternal()
231 m_currentCharacter = textIterator.currentCharacter(); in advanceInternal()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGFontData.cpp150 …ion(WidthIterator& iterator, GlyphData& glyphData, bool mirror, int currentCharacter, unsigned& ad… in applySVGGlyphSelection() argument
154 ASSERT(int(run.charactersLength()) >= currentCharacter); in applySVGGlyphSelection()
160 …remainingTextInRun = String(run.data8(currentCharacter), run.charactersLength() - currentCharacter in applySVGGlyphSelection()
163 …remainingTextInRun = String(run.data16(currentCharacter), run.charactersLength() - currentCharacte… in applySVGGlyphSelection()
169 if (!currentCharacter && arabicForms.isEmpty()) in applySVGGlyphSelection()
226 …ibleGlyph(svgGlyph, isVerticalText, language, arabicForms, currentCharacter, currentCharacter + sv… in applySVGGlyphSelection()
DSVGFontData.h48 …applySVGGlyphSelection(WidthIterator&, GlyphData&, bool mirror, int currentCharacter, unsigned& ad…
/external/chromium_org/third_party/WebKit/Source/platform/
DSharedBufferChunkReader.cpp81 char currentCharacter = m_segment[m_segmentIndex++]; in nextChunk() local
82 if (currentCharacter != m_separator[m_separatorIndex]) { in nextChunk()
88 chunk.append(currentCharacter); in nextChunk()
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DBreakingContextInlineHeaders.h488 inline void nextCharacter(UChar& currentCharacter, UChar& lastCharacter, UChar& secondToLastCharact… in nextCharacter() argument
491 lastCharacter = currentCharacter; in nextCharacter()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
DHarfBuzzShaper.cpp663 …CandidateRun run = { character, startIndexOfCurrentRun, iterator.currentCharacter(), currentFontDa… in collectCandidateRuns()
666 startIndexOfCurrentRun = iterator.currentCharacter(); in collectCandidateRuns()