HomeSort by relevance Sort by last modified time
    Searched refs:escape (Results 126 - 150 of 479) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/smack/src/com/kenai/jbosh/
ComposableBody.java 300 * Escape the value of an attribute to ensure we maintain valid
303 * @param value value to escape
306 private String escape(final String value) { method in class:ComposableBody
330 builder.append(escape(entry.getValue())); method
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
PercentEscaper.java 189 public String escape(String s) { method in class:PercentEscaper
205 protected char[] escape(int cp) { method in class:PercentEscaper
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
PercentEscaper.java 190 public String escape(String s) { method in class:PercentEscaper
206 protected char[] escape(int cp) { method in class:PercentEscaper
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
html.py 48 'escape': escape,
178 html.append(escape(tok_text))
180 tok_html = escape(tok_text) or ' '
307 def escape(t): function
308 """HTML-escape the text in `t`."""
  /external/chromium_org/tools/
licenses.py 410 def EvaluateTemplate(template, env, escape=True):
414 if escape and not key.endswith("_unescaped"):
415 val = cgi.escape(val)
449 escape=False)
  /external/chromium_org/ui/views/window/
dialog_client_view.cc 67 ui::Accelerator escape(ui::VKEY_ESCAPE, ui::EF_NONE);
76 ok_button_->AddAccelerator(escape);
89 cancel_button_->AddAccelerator(escape);
99 // Use the escape key to close the window if there are no dialog buttons.
101 AddAccelerator(escape);
  /external/chromium_org/v8/test/mjsunit/
char-escape.js 40 // Do the single escape chars have the right value?
51 // Do the hex and unicode escape chars have the right value?
  /external/icu4c/test/intltest/
dtfmttst.h 45 // internal utility routine (genrates escape sequences for characters)
46 static UnicodeString& escape(UnicodeString& s);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
AutoEscaper.java 103 // entire tree in a <?cs escape ?> node.
135 AEscapeCommand escape = local
139 node.replaceBy(escape);
291 AEscapeCommand escape = new AEscapeCommand(position, escapeExpr, (PCommand) node.clone()); local
293 node.replaceBy(escape);
  /external/v8/test/mjsunit/
char-escape.js 40 // Do the single escape chars have the right value?
51 // Do the hex and unicode escape chars have the right value?
  /external/zlib/src/
zlib2ansi 148 [^/"'\\]* ## Chars which doesn't start a comment, string or escape
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
residual.cpp 158 int escape, numPrefix, sufmask, suffix, shift, sign, value, absvalue, vlcnum, level_two_or_higher; local
333 escape = (15 << shift) + 1;
337 if (value < escape)
343 status = BitstreamWriteBits(stream, 28, (1 << 12) | ((value - escape) << 1) | sign);
  /libcore/json/src/main/java/org/json/
JSONTokener.java 186 * character escape sequences encountered along the way. The opening quote
191 * @throws NumberFormatException if any unicode escape sequences are
196 * For strings that are free of escape sequences, we can just extract
197 * the result as a substring of the input. But if we encounter an escape
219 throw syntaxError("Unterminated escape sequence");
239 * @throws NumberFormatException if any unicode escape sequences are
247 throw syntaxError("Unterminated escape sequence");
  /external/chromium/net/tools/dump_cache/
url_to_filename_encoder_unittest.cc 85 const char escape = UrlToFilenameEncoder::kEscapeChar; local
86 base::snprintf(escaped, sizeof(escaped), "%c%02X%c", escape, ch, escape);
146 ","; // The escape char has to be escaped
331 // check that one backslash, plus the escape ",-", and the ending , got added.
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
eclipse.py 20 from xml.sax.saxutils import escape namespace
222 (escape(key), escape(defines[key])))
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMSerializer.java 59 private void escape(Writer writer, String s) throws IOException { method in class:DOMSerializer
152 escape(writer, node.getNodeValue()); method
156 escape(writer, node.getNodeValue()); method
  /external/sepolicy/tools/
insertkeys.py 137 self._out.write(' %s="%s"' % (name, saxutils.escape(key)))
139 self._out.write(' %s="%s"' % (name, saxutils.escape(value)))
155 self._out.write(saxutils.escape(content))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
util.py 106 expr = r'[^\(\)\s]*lib%s\.[^\(\)\s]*' % re.escape(name)
184 ename = re.escape(name)
244 expr = r'\s+(lib%s\.[^\s]+)\s+\(%s' % (re.escape(name), abi_type)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
util.py 106 expr = r'[^\(\)\s]*lib%s\.[^\(\)\s]*' % re.escape(name)
184 ename = re.escape(name)
244 expr = r'\s+(lib%s\.[^\s]+)\s+\(%s' % (re.escape(name), abi_type)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 111 strong(pydoc.html.escape(str(etype))),
122 link = '<a href="file://%s">%s</a>' % (file, pydoc.html.escape(file))
173 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))),
174 pydoc.html.escape(str(evalue)))]
190 ''' % pydoc.html.escape(
cgi.py 63 "print_environ_usage", "escape"]
930 escape("".join(list[:-1])),
931 escape(list[-1]),
943 print "<DT>", escape(key), "<DD>", escape(environ[key])
957 print "<DT>" + escape(key) + ":",
959 print "<i>" + escape(repr(type(value))) + "</i>"
960 print "<DD>" + escape(repr(value))
1030 def escape(s, quote=None): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 111 strong(pydoc.html.escape(str(etype))),
122 link = '<a href="file://%s">%s</a>' % (file, pydoc.html.escape(file))
173 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))),
174 pydoc.html.escape(str(evalue)))]
190 ''' % pydoc.html.escape(
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 17 def escape (s): return s member in class:ColorFormatter.Null
33 def escape (s): return s member in class:ColorFormatter.ANSI
45 def escape (s): return cgi.escape (s) member in class:ColorFormatter.HTML
89 oo = [o + self.formatter.escape (l[2:]) for o in oo]
96 oo[i] += self.formatter.escape (l[2:])
109 yield self.formatter.escape (l).replace ('\n', self.formatter.newline ())
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 79 params.append('%s="%s"' % (k, escape(v)))
84 def escape(s): function
85 """Escape a URL including any /."""
313 stringy_params = ((k, escape(str(v))) for k, v in oauth_params)
717 escape(request.method),
718 escape(request.normalized_url),
719 escape(request.get_normalized_parameters()),
722 key = '%s&' % escape(consumer.secret)
724 key += escape(token.secret)
751 sig = '%s&' % escape(consumer.secret
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 79 params.append('%s="%s"' % (k, escape(v)))
84 def escape(s): function
85 """Escape a URL including any /."""
313 stringy_params = ((k, escape(str(v))) for k, v in oauth_params)
717 escape(request.method),
718 escape(request.normalized_url),
719 escape(request.get_normalized_parameters()),
722 key = '%s&' % escape(consumer.secret)
724 key += escape(token.secret)
751 sig = '%s&' % escape(consumer.secret
    [all...]

Completed in 750 milliseconds

1 2 3 4 56 7 8 91011>>