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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
Font.h 221 static inline UChar normalizeSpaces(UChar character)
232 static String normalizeSpaces(const LChar*, unsigned length);
233 static String normalizeSpaces(const UChar*, unsigned length);
Font.cpp 297 normalized.append(Font::normalizeSpaces(characters[i]));
302 String Font::normalizeSpaces(const LChar* characters, unsigned length)
307 String Font::normalizeSpaces(const UChar* characters, unsigned length)
FontFastPath.cpp 275 // FIXME: Unclear if this should normalizeSpaces above 0xFFFF.
279 characterToRender = Font::normalizeSpaces(characterToRender);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontData.cpp 145 remainingTextInRun = Font::normalizeSpaces(remainingTextInRun.characters8(), remainingTextInRun.length());
148 remainingTextInRun = Font::normalizeSpaces(remainingTextInRun.characters16(), remainingTextInRun.length());
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js 27 goog.string.canonicalizeNewlines=function(a){return a.replace(/(\r\n|\r|\n)/g,"\n")};goog.string.normalizeWhitespace=function(a){return a.replace(/\xa0|\s/g," ")};goog.string.normalizeSpaces=function(a){return a.replace(/\xa0|[ \t]+/g," ")};goog.string.collapseBreakingSpaces=function(a){return a.replace(/[\t\r\n ]+/g," ").replace(/^[\t\r\n ]+|[\t\r\n ]+$/g,"")};goog.string.trim=function(a){return a.replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")};
    [all...]
chromeVoxChromeOptionsScript.js     [all...]
chromeVoxChromePageScript.js 27 goog.string.canonicalizeNewlines=function(a){return a.replace(/(\r\n|\r|\n)/g,"\n")};goog.string.normalizeWhitespace=function(a){return a.replace(/\xa0|\s/g," ")};goog.string.normalizeSpaces=function(a){return a.replace(/\xa0|[ \t]+/g," ")};goog.string.collapseBreakingSpaces=function(a){return a.replace(/[\t\r\n ]+/g," ").replace(/^[\t\r\n ]+|[\t\r\n ]+$/g,"")};goog.string.trim=function(a){return a.replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")};
    [all...]

Completed in 8978 milliseconds