Searched refs:noBreakSpace (Results 1 – 19 of 19) sorted by relevance
66 const UChar noBreakSpace = 0x00A0; variable122 using WTF::Unicode::noBreakSpace;
44 …COMPILE_ASSERT((static_cast<unsigned char>('\xA0') == noBreakSpace), ConvertedSpaceStringSpaceIsNo… in convertHTMLTextToInterchangeFormat()
242 return c == noBreakSpace || c == ' ' || c == '\n' || c == '\t'; in isWhitespace()
379 rebalancedString.append(noBreakSpace); in stringWithRebalancedWhitespace()400 DEFINE_STATIC_LOCAL(String, nonBreakingSpaceString, (&noBreakSpace, 1)); in nonBreakingSpaceString()
62 { noBreakSpace, nbspReference, EntityNbsp }, in appendCharactersReplacingEntities()
248 if ((!isSpaceOrNewline(c) && c != noBreakSpace) || c == '\n') in appendTrailingWhitespace()
1266 …return isCharacterSmartReplaceExempt(character == noBreakSpace ? ' ' : character, previousCharacte… in isCharacterSmartReplaceExemptConsideringNonBreakingSpace()
45 case noBreakSpace: in isBreakableSpace()143 return ch > asciiLineBreakTableLastChar && ch != noBreakSpace; in needsLineBreakIterator()
107 stringWithPrevious[0] = previous == noBreakSpace ? ' ' : previous; in makeCapitalized()110 if (input[i - 1] == noBreakSpace) in makeCapitalized()127 …result.append(input[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevio… in makeCapitalized()
144 } else if (c == '\n' || c == noBreakSpace) in quoteAndEscapeNonPrintables()
4704 return isSpaceOrNewline(c) || c == noBreakSpace || isPunctuationForFirstLetter(c); in shouldSkipForFirstLetter()
53 …if (string[i] != noBreakSpace && (string[i] <= 0x7F ? !isASCIISpace(string[i]) : (direction(string… in stripLeadingWhiteSpace()
121 static bool isCodepointSpace(UChar c) { return c == ' ' || c == noBreakSpace || c == '\n'; } in isCodepointSpace()
147 result.append(noBreakSpace); in nextToken()
216 …atic bool treatAsSpace(UChar c) { return c == ' ' || c == '\t' || c == '\n' || c == noBreakSpace; } in treatAsSpace()
241 …_run.allowTabs()) && (textIterator.currentCharacter() || character == noBreakSpace) && m_font->wor… in advanceInternal()
175 buffer[noBreakSpace] = ' '; in initializePage()
1062 …if (considerNonCollapsibleWhitespace ? (isSpaceOrNewline(c) || c == noBreakSpace) : isCollapsibleW… in leadingWhitespacePosition()1081 …if (considerNonCollapsibleWhitespace ? (isSpaceOrNewline(c) || c == noBreakSpace) : isCollapsibleW… in trailingWhitespacePosition()
306 if (string[i] != noBreakSpace in stripLeadingWhiteSpace()