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()
247 return c == noBreakSpace || c == ' ' || c == '\n' || c == '\t'; in isWhitespace()
385 rebalancedString.append(noBreakSpace); in stringWithRebalancedWhitespace()406 DEFINE_STATIC_LOCAL(String, nonBreakingSpaceString, (&noBreakSpace, 1)); in nonBreakingSpaceString()
87 { noBreakSpace, nbspReference, EntityNbsp }, in appendCharactersReplacingEntities()
305 if ((!isSpaceOrNewline(c) && c != noBreakSpace) || c == '\n') in appendTrailingWhitespace()
1284 …return isCharacterSmartReplaceExempt(character == noBreakSpace ? ' ' : character, previousCharacte… in isCharacterSmartReplaceExemptConsideringNonBreakingSpace()
54 …atic bool treatAsSpace(UChar c) { return c == ' ' || c == '\t' || c == '\n' || c == noBreakSpace; } in treatAsSpace()
236 …_run.allowTabs()) && (textIterator.currentCharacter() || character == noBreakSpace) && m_font->fon… in advanceInternal()
175 buffer[noBreakSpace] = ' '; in initializePage()
45 case noBreakSpace: in isBreakableSpace()143 return ch > asciiLineBreakTableLastChar && ch != noBreakSpace; in needsLineBreakIterator()
111 stringWithPrevious[0] = previous == noBreakSpace ? ' ' : previous; in makeCapitalized()114 if (input[i - 1] == noBreakSpace) in makeCapitalized()131 …result.append(input[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevio… in makeCapitalized()
143 } else if (c == '\n' || c == noBreakSpace) in quoteAndEscapeNonPrintables()
3957 return isSpaceOrNewline(c) || c == noBreakSpace; in isSpaceForFirstLetter()
53 if (string[i] != noBreakSpace && !isSpaceOrNewline(string[i])) in stripLeadingWhiteSpace()
130 static bool isCodepointSpace(UChar c) { return c == ' ' || c == noBreakSpace || c == '\n'; } in isCodepointSpace()
147 result.append(noBreakSpace); in nextToken()
1043 …if (considerNonCollapsibleWhitespace ? (isSpaceOrNewline(c) || c == noBreakSpace) : isCollapsibleW… in leadingWhitespacePosition()1062 …if (considerNonCollapsibleWhitespace ? (isSpaceOrNewline(c) || c == noBreakSpace) : isCollapsibleW… in trailingWhitespacePosition()
291 if (string[i] != noBreakSpace in stripLeadingWhiteSpace()