Home
last modified time | relevance | path

Searched refs:softHyphen (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/text/
DUnicodeUtilities.cpp56 case softHyphen: in foldQuoteMarkOrSoftHyphen()
81 s.replace(softHyphen, 0); in foldQuoteMarksAndSoftHyphens()
DUnicodeUtilitiesTest.cpp134 softHyphen in TEST()
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
DCharacterNames.h77 const UChar softHyphen = 0x00AD; variable
132 using WTF::Unicode::softHyphen;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DCharacter.h56 …exScript(UChar c) { return c < 0x20 || (c >= 0x7F && c < 0xA0) || c == softHyphen || c == zeroWidt… in treatAsZeroWidthSpaceInComplexScript()
DGlyphPageTreeNode.cpp170 buffer[softHyphen] = zeroWidthSpace; in initializePage()
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DBreakingContextInlineHeaders.h195 …bool notJustWhitespace = current != ' ' && current != '\t' && current != softHyphen && (current !=…
605 if (c == softHyphen && m_autoWrap && !hyphenWidth) { in handleText()
697 …ength() && toRenderText(m_lineBreak.object())->characterAt(m_lineBreak.offset() - 1) == softHyphen) in handleText()
823 if (!hyphenated && m_lineBreak.previousInSameNode() == softHyphen) { in handleText()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderText.cpp992 } else if (c == softHyphen) { in computePreferredLogicalWidths()
1003 while (c != '\n' && c != ' ' && c != '\t' && (c != softHyphen)) { in computePreferredLogicalWidths()
1008 if (isBreakable(breakIterator, j, nextBreakable) && characterAt(j - 1) != softHyphen) in computePreferredLogicalWidths()
1038 if (c == softHyphen) in computePreferredLogicalWidths()
DInlineIterator.h457 if (character == ' ' || character == '\t' || character == softHyphen) in isCollapsibleSpace()