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

  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 42 public final String escapedString;
63 this.escapedString = makeEscaped(rawString); // overwrites hasQE
92 this.escapedString = makeEscaped(rawString);
95 this.escapedString = hexString;
112 this.escapedString = hexString;
115 this.escapedString = makeEscaped(rawString);
335 return escapedString;
340 int lastIndex = escapedString.length() - 2;
342 if (escapedString.charAt(i) == '\\' && escapedString.charAt(i + 1) == ' ')
    [all...]
AttributeTypeAndValue.java 252 if (value.escapedString == value.getHexString()) {
254 } else if (value.escapedString.length() != value.rawString.length()) {
258 sb.append(value.escapedString);
293 sb.append(value.escapedString);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 22 var escapedString = this.gsub(object, /[\x00-\x1f\\]/, function(match) {
26 if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"';
27 return "'" + escapedString.replace(/'/g, '\\\'') + "'";
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
v8-raytrace.html 316 var escapedString = this.replace(/\\/g, '\\\\');
318 return '"' + escapedString.replace(/"/g, '\\"') + '"';
320 return "'" + escapedString.replace(/'/g, '\\\'') + "'";
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 479 var escapedString = this.gsub(/[\x00-\x1f\\]/, function(match) {
483 if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"';
484 return "'" + escapedString.replace(/'/g, '\\\'') + "'";
    [all...]
concat-jquery-mootools-prototype.js     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
prototype-1.7.js 681 var escapedString = this.replace(/[\x00-\x1f\\]/g, function(character) {
687 if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"';
688 return "'" + escapedString.replace(/'/g, '\\\'') + "'";
    [all...]

Completed in 114 milliseconds