HomeSort by relevance Sort by last modified time
    Searched refs:noBreakSpace (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
HTMLInterchange.cpp 44 COMPILE_ASSERT((static_cast<unsigned char>('\xA0') == noBreakSpace), ConvertedSpaceStringSpaceIsNoBreakSpace);
htmlediting.h 247 return c == noBreakSpace || c == ' ' || c == '\n' || c == '\t';
htmlediting.cpp 385 rebalancedString.append(noBreakSpace);
406 DEFINE_STATIC_LOCAL(String, nonBreakingSpaceString, (&noBreakSpace, 1));
    [all...]
MarkupAccumulator.cpp 87 { noBreakSpace, nbspReference, EntityNbsp },
VisibleSelection.cpp 305 if ((!isSpaceOrNewline(c) && c != noBreakSpace) || c == '\n')
ReplaceSelectionCommand.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
Character.h 54 static bool treatAsSpace(UChar c) { return c == ' ' || c == '\t' || c == '\n' || c == noBreakSpace; }
WidthIterator.cpp 236 if (treatAsSpace && (character != '\t' || !m_run.allowTabs()) && (textIterator.currentCharacter() || character == noBreakSpace) && m_font->fontDescription().wordSpacing())
GlyphPageTreeNode.cpp 175 buffer[noBreakSpace] = ' ';
  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/
CharacterNames.h 66 const UChar noBreakSpace = 0x00A0;
122 using WTF::Unicode::noBreakSpace;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TypeAhead.cpp 53 if (string[i] != noBreakSpace && !isSpaceOrNewline(string[i]))
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.h 130 static bool isCodepointSpace(UChar c) { return c == ' ' || c == noBreakSpace || c == '\n'; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
break_lines.cpp 45 case noBreakSpace:
143 return ch > asciiLineBreakTableLastChar && ch != noBreakSpace;
RenderText.cpp 111 stringWithPrevious[0] = previous == noBreakSpace ? ' ' : previous;
114 if (input[i - 1] == noBreakSpace)
131 result.append(input[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]));
    [all...]
RenderTreeAsText.cpp 143 } else if (c == '\n' || c == noBreakSpace)
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTTokenizer.cpp 147 result.append(noBreakSpace);
  /external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.cpp 291 if (string[i] != noBreakSpace
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp     [all...]

Completed in 634 milliseconds