HomeSort by relevance Sort by last modified time
    Searched refs:escape (Results 101 - 125 of 1027) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/valgrind/none/tests/x86/
faultstatus.c 24 static jmp_buf escape; variable
73 siglongjmp(escape, ok + 1);
151 if (sigsetjmp(escape, 1) == 0) {
  /packages/experimental/procstatlog/
procstatreport.py 155 "filename": cgi.escape(log_filename),
156 "user": cgi.escape(os.environ.get("USER", "unknown")),
157 "date": cgi.escape(time.ctime()),
200 "id": cgi.escape("total_cpu"),
242 "id": cgi.escape("cpu_speed"),
274 "id": cgi.escape("context_switches"),
338 "id": cgi.escape("total_faults"),
369 "id": cgi.escape("binder_calls"),
421 "id": cgi.escape("net%d" % num),
424 "interface": cgi.escape(interface)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializationHandler.java 80 * @param escape true if escaping is to be set on.
82 public boolean setEscaping(boolean escape) throws SAXException;
  /external/autotest/server/site_tests/bluetooth_Sanity_Discovery/
bluetooth_Sanity_Discovery.py 59 html = '%s %s' % (cgi.escape(device['Address']),
60 cgi.escape(device['Alias']))
105 (cgi.escape(self.name),
106 cgi.escape(self.address))))
  /external/autotest/server/site_tests/bluetooth_Sanity_LEDiscovery/
bluetooth_Sanity_LEDiscovery.py 59 html = '%s %s' % (cgi.escape(device['Address']),
60 cgi.escape(device['Alias']))
106 (cgi.escape(self.name),
107 cgi.escape(self.address))))
  /external/bison/src/
print_graph.c 57 obstack_sgrow (oout, escape (r->lhs->tag));
98 obstack_printf (oout, " %s", escape (symbols[*sp]->tag));
103 obstack_printf (oout, " %s", escape (symbols[*sp]->tag));
123 obstack_sgrow (oout, escape (symbols[k]->tag));
  /external/guava/guava/src/com/google/common/escape/
ArrayBasedEscaperMap.java 17 package com.google.common.escape;
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
JsValidateUnquotedLiteral.java 17 package com.google.clearsilver.jsilver.functions.escape;
UrlEscapeFunction.java 17 package com.google.clearsilver.jsilver.functions.escape;
  /external/llvm/include/llvm/Support/
Regex.h 97 static std::string escape(StringRef String);
  /external/opencv3/3rdparty/jinja2/
__init__.py 55 from jinja2.utils import Markup, escape, clear_caches, \
66 'ModuleLoader', 'environmentfilter', 'contextfilter', 'Markup', 'escape',
57 is_undefined namespace
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscapers.java 42 public String escape(String string) {
48 public Appendable escape(final Appendable out) {
76 protected char[] escape(char c) {
116 * safe to use this escaper to escape attribute values. Use the
117 * {@link #xmlEscaper()} escaper to escape attribute values or if you are
509 * and values should be individually encoded. If you escape an entire query
589 * and values should be individually encoded. If you escape an entire query
678 * RFC 2396</a>. Specifically it will not escape "/", ":" and ",". This is
699 * <p><b>Note</b></p>: does not escape single quotes, so use the escaper
709 * Java string literal. Does <em>not</em> escape single-quotes, so us
908 @Override public String escape(String s) { method in class:CharEscapers.FastCharEscaper
932 @Override protected char[] escape(char c) { method in class:CharEscapers.JavaCharEscaper
986 @Override protected char[] escape(char c) { method in class:CharEscapers.JavascriptCharEscaper
1037 @Override protected char[] escape(char c) { method in class:CharEscapers.HtmlCharEscaper
1092 protected char[] escape(char c) { method in class:CharEscapers.FallThroughCharEscaper
    [all...]
  /build/tools/
compare_fileslist.py 86 print " <td class='fn'>%s</td>" % cgi.escape(combo)
98 print " <td class='fn'>%s</td>" % cgi.escape(row[0])
  /external/autotest/server/site_tests/bluetooth_Sanity_Discoverable/
bluetooth_Sanity_Discoverable.py 74 (cgi.escape(self.adapter['Alias']),
75 cgi.escape(self.adapter['Address']))))
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
page_action.py 73 info_msg = 'using element_function "%s"' % re.escape(element_function)
81 info_msg = 'using exact text match "%s"' % re.escape(text)
  /external/chromium-trace/catapult/third_party/WebOb/webob/
util.py 4 escape,
13 """HTML-escape a string or object
33 s = escape(s, True)
  /external/icu/icu4c/source/test/intltest/
nmfmtrt.cpp 247 logln(/*value.getString(temp) +*/ " F> " + escape(s));
252 logln(escape(s) + " P> " /*+ n.getString(temp)*/);
260 logln(/*n.getString(temp) +*/ " F> " + escape(s2));
264 errln("*** STRING ERROR \"" + escape(s) + "\" != \"" + escape(s2) + "\"");
292 escape(s) + " P> " + (n.getType() == Formattable::kDouble ? n.getDouble() : (double)n.getLong())
294 escape(s2));
339 NumberFormatRoundTripTest::escape(UnicodeString& s) function in class:NumberFormatRoundTripTest
incaltst.cpp 26 static UnicodeString escape( const UnicodeString&src) function
427 logln(UnicodeString() + "as Buddhist Calendar: " + escape(str));
430 errln("Expected " + escape(expected) + " but got " + escape(str));
436 errln("Parse incorrect of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(str3));
845 logln(UnicodeString() + "as Persian Calendar: " + escape(str));
848 errln("Expected " + escape(expected) + " but got " + escape(str));
854 errln("Parse incorrect of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(str3));
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
EscapeAnalysis.java 48 * Simple intraprocedural escape analysis. Finds new arrays that don't escape
53 * Struct used to generate and maintain escape analysis results.
58 /** escape state of the object */
59 EscapeState escape; field in class:EscapeAnalysis.EscapeSet
77 escape = escState;
85 * Lattice values used to indicate escape state for an object. Analysis can
86 * only raise escape state values, not lower them.
89 * NONE - Object does not escape, and is eligible for scalar replacement.
164 * into is the parent. A child set must always have an escape state a
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
EscapeAnalysis.java 49 * Simple intraprocedural escape analysis. Finds new arrays that don't escape
54 * Struct used to generate and maintain escape analysis results.
59 /** escape state of the object */
60 EscapeState escape; field in class:EscapeAnalysis.EscapeSet
78 escape = escState;
86 * Lattice values used to indicate escape state for an object. Analysis can
87 * only raise escape state values, not lower them.
90 * NONE - Object does not escape, and is eligible for scalar replacement.
165 * into is the parent. A child set must always have an escape state a
    [all...]
  /external/v8/test/mjsunit/regress/
regress-3756.js 6 // \u not followed by 4 hex digits is treated as an identity escape.
45 // \X where X is not a legal escape character is treated as identity escape
  /external/curl/src/
tool_formparse.c 48 char *escape = NULL; local
58 /* remember the first escape position */
59 if(!escape)
60 escape = ptr;
61 /* skip escape of back-slash or double-quote */
68 if(escape) {
69 /* has escape, we restore the unescaped string here */
70 ptr = ptr2 = escape;
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 37 self._writeraw(escape(string), indent=indent)
55 self._writeraw(escape(string), indent=False)
76 data = escape(data)
139 def escape(data): function
147 data = escape(data)
  /external/ltrace/
glob.c 108 int escape = 0; local
112 if (escape) {
130 escape = 0;
133 escape = 1;
165 if (escape) {
  /external/webrtc/webrtc/base/
stringencode.h 33 // Escaping prefixes illegal characters with the escape character. Compact, but
35 size_t escape(char * buffer, size_t buflen,
37 const char * illegal, char escape);
41 char escape);
43 // Encoding replaces illegal characters with the escape character and 2 hex
44 // chars, so it's a little less compact than escape, but completely removes
49 const char * illegal, char escape);
53 char escape);
56 // file, suitable for passing to the 'illegal' member of escape or encode.
60 // and escape character (for use in URLs, obviously)
    [all...]

Completed in 3053 milliseconds

1 2 3 45 6 7 8 91011>>