/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | CSSTokenizer-in.cpp | 226 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 …]
|
D | CSSTokenizer.h | 80 inline CharacterType*& currentCharacter();
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
D | QuotedPrintable.cpp | 69 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()
|
D | SurrogatePairAwareTextIterator.h | 34 …SurrogatePairAwareTextIterator(const UChar*, int currentCharacter, int lastCharacter, int endChara… 56 int currentCharacter() const { return m_currentCharacter; } in currentCharacter() function
|
D | SurrogatePairAwareTextIterator.cpp | 33 …erator::SurrogatePairAwareTextIterator(const UChar* characters, int currentCharacter, int lastChar… in SurrogatePairAwareTextIterator() argument 35 , m_currentCharacter(currentCharacter) in SurrogatePairAwareTextIterator()
|
D | TextRun.h | 216 …const TextRun&, WidthIterator&, UChar32 character, bool mirror, int currentCharacter, unsigned& ad…
|
/external/proguard/src/proguard/ |
D | WordReader.java | 222 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/ |
D | SVGTextLayoutEngineSpacing.cpp | 86 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()
|
D | SVGTextRunRenderingContext.h | 42 …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
|
D | SVGTextLayoutAttributesBuilder.cpp | 95 UChar currentCharacter = text->characterAt(textPosition); in processRenderSVGInlineText() local 96 if (currentCharacter == ' ' && lastCharacter == ' ') in processRenderSVGInlineText() 99 lastCharacter = currentCharacter; in processRenderSVGInlineText()
|
D | SVGTextLayoutEngineSpacing.h | 36 float calculateCSSSpacing(UChar currentCharacter);
|
D | SVGTextRunRenderingContext.cpp | 153 …& 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()
|
D | SVGTextLayoutEngine.cpp | 494 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/ |
D | Latin1TextIterator.h | 33 …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
|
D | WidthIterator.cpp | 189 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/ |
D | SVGFontData.cpp | 150 …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()
|
D | SVGFontData.h | 48 …applySVGGlyphSelection(WidthIterator&, GlyphData&, bool mirror, int currentCharacter, unsigned& ad…
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | SharedBufferChunkReader.cpp | 81 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/ |
D | BreakingContextInlineHeaders.h | 488 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/ |
D | HarfBuzzShaper.cpp | 663 …CandidateRun run = { character, startIndexOfCurrentRun, iterator.currentCharacter(), currentFontDa… in collectCandidateRuns() 666 startIndexOfCurrentRun = iterator.currentCharacter(); in collectCandidateRuns()
|