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

1 2

  /external/cmockery/cmockery_0_1_2/src/example/
customer_database.c 33 char query_string[256]; local
36 snprintf(query_string, sizeof(query_string),
38 number_of_results = connection->query_database(connection, query_string,
database.h 24 DatabaseConnection* const connection, const char * const query_string,
customer_database_test.c 28 DatabaseConnection* const connection, const char * const query_string,
  /external/libbrillo/brillo/
url_utils.cc 61 std::string query_string = url->substr(query_pos);
63 return query_string;
74 std::string query_string = TrimOffQueryString(&result); local
84 result += query_string;
90 std::string query_string; local
93 query_string = url.substr(query_pos, query_len);
95 return query_string;
101 std::string query_string = GetQueryString(url, true); local
102 if (!query_string.empty() && query_string.front() == '?'
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
report.py 23 query_string = self._GetQueryStringForOldUri()
24 if query_string:
25 self.redirect('/report?' + query_string)
73 query_string = 'sid=' + state_id
75 query_string += '&start_rev=' + self.request.get('start_rev')
77 query_string += '&end_rev=' + self.request.get('end_rev')
79 query_string += '&rev=' + self.request.get('rev')
80 return query_string
auto_bisect.py 32 if 'stats' in self.request.query_string:
  /external/chromium-trace/catapult/third_party/Paste/paste/
cgiapp.py 41 query_string=None):
51 assert query_string is None, (
53 "give a query_string (%r)" % (script, query_string))
54 script, query_string = script.split('?', 1)
68 self.query_string = query_string
84 if self.query_string is not None:
85 old = cgi_environ.get('QUERY_STRING', '')
88 cgi_environ['QUERY_STRING'] = old + self.query_strin
    [all...]
  /external/chromium-trace/catapult/perf_insights/perf_insights/
perf_insights_corpus_driver.py 46 query_string = urllib.quote_plus(query.AsQueryString())
48 '%s/query?q=%s' % (self.server, query_string))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/auth/
test_stsanon.py 65 query_string = auth._build_query_string(self.request.params)
66 self.assertEqual(query_string, 'Action=AssumeRoleWithWebIdentity' + \
test_sigv4.py 80 query_string = auth.canonical_query_string(request)
81 self.assertEqual(query_string, 'Foo.1=aaa&Foo.10=zzz')
92 query_string = auth.query_string(request)
93 self.assertEqual(query_string, 'Message=We%20%E2%99%A5%20utf-8')
  /external/chromium-trace/catapult/perf_insights/perf_insights_build/
perf_insights_dev_server_config.py 60 query_string = self.request.get('corpus_query', 'True')
61 query = corpus_query.CorpusQuery.FromString(query_string)
127 query_string = self.request.get('corpus_query', 'True')
128 query = corpus_query.CorpusQuery.FromString(query_string)
132 query_string = query.AsQueryString()
135 'query': query_string,
  /device/generic/goldfish/camera/
QemuClient.h 82 * query_string - Query string. This constructor can also be used to
86 explicit QemuQuery(const char* query_string);
QemuClient.cpp 53 QemuQuery::QemuQuery(const char* query_string)
62 mQueryDeliveryStatus = QemuQuery::createQuery(query_string, NULL);
  /external/chromium-trace/catapult/third_party/WebOb/webob/
static.py 145 if req.query_string:
146 new_url += '?' + req.query_string
163 if req.query_string:
164 url += '?' + req.query_string
request.py 218 query_string=t.transcode_query(self.query_string),
230 fs_environ['QUERY_STRING'] = ''
323 query_string = environ_getter('QUERY_STRING', '') variable in class:BaseRequest
475 The URL including SCRIPT_NAME and PATH_INFO, but not QUERY_STRING
495 qs = self.environ.get('QUERY_STRING')
503 The full request URL, including QUERY_STRING
506 qs = self.environ.get('QUERY_STRING')
796 fs_environ['QUERY_STRING'] = '
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
auth.py 342 def query_string(self, http_request): member in class:HmacAuthV4Handler
508 qs = self.query_string(req)
522 qs_to_post = self.query_string(kwargs['unmangled_req'])
807 boto.log.debug('query_string in body: %s' % qs)
830 boto.log.debug('query_string: %s Signature: %s' % (qs, signature))
    [all...]
  /external/autotest/server/
frontend.py 472 query_string = '&'.join(params)
473 url = '%s/tko/compose_query.cgi?%s' % (base_url, query_string)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/manager/
xmlmanager.py 398 def query_gql(self, query_string, *args, **kwds):
sdbmanager.py 655 def query_gql(self, query_string, *args, **kwds):
  /external/autotest/scheduler/
monitor_db_unittest.py 150 query_string=('afe_jobs.priority DESC, '
157 order_by=query_string))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgi.py 159 if 'QUERY_STRING' in environ:
161 qs = qs + environ['QUERY_STRING']
165 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
166 elif 'QUERY_STRING' in environ:
167 qs = environ['QUERY_STRING']
173 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
431 if 'QUERY_STRING' in environ:
432 qs = environ['QUERY_STRING']
448 if 'QUERY_STRING' in environ:
449 self.qs_on_post = environ['QUERY_STRING']
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgi.py 159 if 'QUERY_STRING' in environ:
161 qs = qs + environ['QUERY_STRING']
165 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
166 elif 'QUERY_STRING' in environ:
167 qs = environ['QUERY_STRING']
173 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
431 if 'QUERY_STRING' in environ:
432 qs = environ['QUERY_STRING']
448 if 'QUERY_STRING' in environ:
449 self.qs_on_post = environ['QUERY_STRING']
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgi.py 159 if 'QUERY_STRING' in environ:
161 qs = qs + environ['QUERY_STRING']
165 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
166 elif 'QUERY_STRING' in environ:
167 qs = environ['QUERY_STRING']
173 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
431 if 'QUERY_STRING' in environ:
432 qs = environ['QUERY_STRING']
448 if 'QUERY_STRING' in environ:
449 self.qs_on_post = environ['QUERY_STRING']
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgi.py 159 if 'QUERY_STRING' in environ:
161 qs = qs + environ['QUERY_STRING']
165 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
166 elif 'QUERY_STRING' in environ:
167 qs = environ['QUERY_STRING']
173 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
431 if 'QUERY_STRING' in environ:
432 qs = environ['QUERY_STRING']
448 if 'QUERY_STRING' in environ:
449 self.qs_on_post = environ['QUERY_STRING']
    [all...]
  /external/deqp/modules/egl/
teglNegativeApiTests.cpp     [all...]

Completed in 1208 milliseconds

1 2