HomeSort by relevance Sort by last modified time
    Searched refs:cgi (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/chromium_org/net/data/websocket/
protocol-test_wsh.py 5 import cgi namespace
13 param = cgi.parse_qs(r[1])
  /external/chromium_org/tools/json_schema_compiler/highlighters/
none_highlighter.py 5 import cgi namespace
14 return '<pre>' + cgi.escape(code) + '</pre>'
  /external/chromium_org/tools/gn/bin/
help_as_html.py 14 import cgi namespace
37 output_line.append('<a href="#' + cgi.escape(command) + '">')
38 output_line.append(cgi.escape(command))
41 output_line.extend([sep + cgi.escape(rest) + '</li>'])
44 output.append('<h2>' + cgi.escape(line) + '</h2>')
56 output.append('<h3><a name="' + cgi.escape(command) + '">' +
57 cgi.escape(name + sep + rest) + '</a></h3>')
71 output.append('<h4>' + cgi.escape(line[:-1]) + '</h4>')
73 output.append(cgi.escape(line))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cgi.py 2 import cgi namespace
10 # will completely confuse the test of the cgi module
14 cgi.sys = HackedSysModule()
53 return cgi.parse(fp, env, strict_parsing=1)
113 form = cgi.FieldStorage(fp=fake_stdin, environ=environ)
124 self.assertEqual("test &amp; string", cgi.escape("test & string"))
125 self.assertEqual("&lt;test string&gt;", cgi.escape("<test string>"))
126 self.assertEqual("&quot;test string&quot;", cgi.escape('"test string"', True))
137 fcd = cgi.FormContentDict(env)
138 sd = cgi.SvFormContentDict(env
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cgi.py 2 import cgi namespace
10 # will completely confuse the test of the cgi module
14 cgi.sys = HackedSysModule()
53 return cgi.parse(fp, env, strict_parsing=1)
113 form = cgi.FieldStorage(fp=fake_stdin, environ=environ)
124 self.assertEqual("test &amp; string", cgi.escape("test & string"))
125 self.assertEqual("&lt;test string&gt;", cgi.escape("<test string>"))
126 self.assertEqual("&quot;test string&quot;", cgi.escape('"test string"', True))
137 fcd = cgi.FormContentDict(env)
138 sd = cgi.SvFormContentDict(env
    [all...]
  /external/chromium_org/rlz/win/lib/
machine_deal.h 43 // Get the DCC cgi argument string to append to a daily or financial ping.
44 static bool GetAsCgi(char* cgi, int cgi_size);
machine_deal.cc 226 bool MachineDealCode::GetAsCgi(char* cgi, int cgi_size) {
227 if (!cgi || cgi_size <= 0) {
232 cgi[0] = 0;
243 base::strlcpy(cgi, cgi_arg.c_str(), cgi_size);
245 if (!Get(cgi + cgi_arg_length, cgi_size - cgi_arg_length)) {
246 cgi[0] = 0;
  /external/chromium_org/rlz/lib/
financial_ping.cc 142 char cgi[kMaxCgiLength + 1]; local
143 cgi[0] = 0;
144 bool has_events = GetProductEventsAsCgi(product, cgi, arraysize(cgi));
146 base::StringAppendF(request, "&%s", cgi);
166 // This will also include the RLZ Exchange Protocol CGI Argument.
167 cgi[0] = 0;
169 cgi, arraysize(cgi)))
170 base::StringAppendF(request, "&%s", cgi);
370 char cgi[kMaxCgiLength + 1]; local
    [all...]
rlz_lib.cc 166 bool GetProductEventsAsCgiHelper(rlz_lib::Product product, char* cgi,
169 // Prepend the CGI param key to the buffer.
177 cgi[index] = cgi_arg[index];
188 cgi[index] = '\0';
195 strncpy(cgi + index + divider, events[num_values].c_str(), size);
197 cgi[index] = rlz_lib::kEventsCgiSeparator;
202 cgi[index] = '\0';
217 bool GetProductEventsAsCgi(Product product, char* cgi, size_t cgi_size) {
218 if (!cgi || cgi_size <= 0) {
223 cgi[0] = 0
    [all...]
  /build/tools/
compare_fileslist.py 18 import cgi, os, string, sys namespace
86 print " <td class='fn'>%s</td>" % cgi.escape(combo)
98 print " <td class='fn'>%s</td>" % cgi.escape(row[0])
  /external/chromium_org/components/breakpad/tools/
dmp2minidump.py 10 from cgi import parse_multipart
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 106 my %cgi;
115 $cgi{(split '=', $element)[0]} = (split '=', $element)[1];
118 unless ( defined $cgi{'hostname'} ) {
122 if ( !exists $cgi{'myip'} ) {
123 $cgi{'myip'} = $client->peerhost();
126 if ( authorize($user, $pass, $cgi{'hostname'}, $cgi{'myip'}) == 0 ) {
127 print_http_response($client, $cgi{'myip'}, "good");
128 update_dns(\%cgi);
  /packages/experimental/procstatlog/
procstatreport.py 17 import cgi namespace
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)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PAccessNetworkInfo.java 96 * @param cgi -- String CGI value
100 public void setCGI3GPP(String cgi) throws ParseException {
102 if (cgi == null)
105 + "P-Access-Network-Info, setCGI3GPP(), the cgi parameter is null.");
107 setParameter(ParameterNamesIms.CGI_3GPP, cgi);
113 * @return String CGI value
  /external/eigen/lapack/
clacgv.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/clacgv.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/clacgv.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/clacgv.f">
cladiv.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cladiv.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/cladiv.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/cladiv.f">
dladiv.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dladiv.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dladiv.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dladiv.f">
dlapy2.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlapy2.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dlapy2.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dlapy2.f">
dlapy3.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlapy3.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dlapy3.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dlapy3.f">
sladiv.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/sladiv.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/sladiv.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/sladiv.f">
slapy2.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slapy2.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/slapy2.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/slapy2.f">
slapy3.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slapy3.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/slapy3.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/slapy3.f">
zlacgv.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zlacgv.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zlacgv.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zlacgv.f">
zladiv.f 10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zladiv.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zladiv.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zladiv.f">
  /packages/apps/Launcher2/
print_db.py 3 import cgi namespace
53 cgi.escape(cell, True)
67 out.write(cgi.escape(str(cell)))
87 title = "title=\"%s\"" % cgi.escape(cell["intent"], True)
99 out.write(cgi.escape(cell["title"]) + " <br/><i>(app)</i>")
103 out.write(cgi.escape(cell["title"]) + " <br/><i>(shortcut)</i>")

Completed in 587 milliseconds

1 2 3 4 5