Searched defs:query (Results 1 - 25 of 415) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A D2008-05-07-CrazyOffsetOf.cpp6 char * query; member in struct:bork
8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10;
/external/clang/test/Sema/
H A Dmemset-invalid-1.c11 incomplete query = 0; local
12 memset(query, 0, sizeof(query)); // expected-warning {{'memset' call operates on objects of type 'struct __incomplete' while the size is based on a different type 'incomplete'}} \
/external/chromium_org/ui/gfx/
H A Dfont_render_params_android.cc33 FontRenderParams GetFontRenderParams(const FontRenderParamsQuery& query, argument
36 if (!query.is_empty() || family_out)
H A Dfont_render_params_mac.cc29 FontRenderParams GetFontRenderParams(const FontRenderParamsQuery& query, argument
32 if (!query.is_empty() || family_out)
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Durl_util_unittest.cc20 // Pretty print the JSON escaped in the query string.
21 std::string PrettyPrintEscapedJson(const std::string& query) { argument
23 query, net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
50 // Confirm that "%20" is used instead of "+" in the query.
51 EXPECT_TRUE(url.query().find("+") == std::string::npos);
52 EXPECT_TRUE(url.query().find("%20") != std::string::npos);
53 // The escaped query is hard to read. Pretty print the escaped JSON.
65 PrettyPrintEscapedJson(url.query()));
98 // Confirm that "%20" is used instead of "+" in the query.
99 EXPECT_TRUE(url.query()
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dwebstore_installer_unittest.cc30 std::string query = url.query(); local
32 Contains(query, StringPrintf("os=%s", OmahaQueryParams::GetOS())));
34 Contains(query, StringPrintf("arch=%s", OmahaQueryParams::GetArch())));
36 query, StringPrintf("nacl_arch=%s", OmahaQueryParams::GetNaclArch())));
38 Contains(query,
42 query,
/external/chromium_org/content/common/gpu/client/
H A Dgpu_context_tests.h32 void TestSignalQuery(blink::WebGLId query) { argument
35 query,
62 unsigned query = context_->createQueryEXT(); local
63 context_->beginQueryEXT(GL_COMMANDS_ISSUED_CHROMIUM, query);
66 TestSignalQuery(query);
67 context_->deleteQueryEXT(query);
74 blink::WebGLId query = context_->createQueryEXT();
75 TestSignalQuery(query);
76 context_->deleteQueryEXT(query);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMURLUtilsReadOnly.cpp69 String query = kurl.query(); local
70 return query.isEmpty() ? emptyString() : "?" + query;
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dfriendinvitesendtask.cc41 XmlElement* query = new XmlElement(QN_ROSTER_QUERY); local
45 query->AddElement(item);
46 iq->AddElement(query);
/external/smack/src/org/xbill/DNS/
H A DResolveThread.java14 private Message query; field in class:ResolveThread
21 ResolveThread(Resolver res, Message query, Object id, argument
25 this.query = query;
32 * Performs the query, and executes the callback.
37 Message response = res.send(query);
/external/chromium_org/chrome/browser/ui/app_list/search/common/
H A Dwebservice_search_provider.cc47 bool WebserviceSearchProvider::IsValidQuery(const base::string16& query) { argument
48 // If |query| contains sensitive data, bail out and do not create the place
50 if (IsSensitiveInput(query) ||
51 (query.size() < kMinimumQueryLength) ||
59 // Returns whether or not the user's input string, |query|, might contain any
61 bool WebserviceSearchProvider::IsSensitiveInput(const base::string16& query) { argument
62 const GURL query_as_url(query);
85 !query_as_url.query().empty() ||
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dhistory.cc44 void History::AddLaunchEvent(const std::string& query, argument
47 data_->Add(NormalizeString(query), result_id);
51 const std::string& query) const {
53 return data_->GetKnownResults(NormalizeString(query)).Pass();
H A Dsearch_webstore_result.cc21 const std::string& query)
23 query_(query),
24 launch_url_(extension_urls::GetWebstoreSearchPageUrl(query)) {
28 set_title(base::UTF8ToUTF16(query));
20 SearchWebstoreResult(Profile* profile, const std::string& query) argument
/external/chromium_org/components/omnibox/
H A Danswers_cache.cc22 AnswersQueryData AnswersCache::GetTopAnswerEntry(const base::string16& query) { argument
23 base::string16 collapsed_query = base::CollapseWhitespace(query, false);
25 // If the query text starts with trimmed input, this is valid prefetch data.
/external/chromium_org/media/base/
H A Dtest_data_util.cc29 std::string query = ""; local
33 query.append("&");
34 query.append(itr->first + "=" + itr->second);
36 return query;
/external/chromium_org/remoting/host/setup/
H A Doauth_helper.cc69 url::Component query = url_parsed.query; local
72 while (ExtractQueryKeyValue(url.c_str(), &query, &key, &value)) {
/external/chromium_org/sync/engine/net/
H A Durl_translator.cc39 // This method appends the query string to the sync server path.
48 string query; local
49 query += kParameterClient;
50 query += "=" + CgiEscapeString(kClientName);
51 query += "&";
52 query += kParameterClientID;
53 query += "=" + CgiEscapeString(client_id);
54 return query;
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DOcclusionQueriesTest.cpp74 GLuint query = 0; local
75 glGenQueriesEXT(1, &query);
76 glBeginQueryEXT(GL_ANY_SAMPLES_PASSED_EXT, query);
88 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &ready);
92 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_EXT, &result);
96 glDeleteQueriesEXT(1, &query);
108 GLuint query = 0; local
109 glGenQueriesEXT(1, &query);
110 glBeginQueryEXT(GL_ANY_SAMPLES_PASSED_EXT, query);
119 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_EX
135 GLuint query = 0; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Ddiscoitemsquerytask.cc50 const XmlElement* query = stanza->FirstNamed(QN_DISCO_ITEMS_QUERY); local
51 if (query) {
53 for (const buzz::XmlChild* child = query->FirstChild(); child;
H A Dmucroomdiscoverytask.cc42 const XmlElement* query = stanza->FirstNamed(QN_DISCO_INFO_QUERY); local
43 if (query == NULL) {
50 const XmlElement* identity = query->FirstNamed(QN_DISCO_IDENTITY);
66 for (const XmlElement* feature = query->FirstNamed(QN_DISCO_FEATURE);
71 const XmlElement* data_x = query->FirstNamed(QN_XDATA_X);
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Duri.h27 * Note: query is a deprecated field which is incorrectly unescaped.
28 * query_raw takes precedence over query if the former is set.
41 char *query; /* the query string (deprecated - use with caution) */ member in struct:_xmlURI
44 char *query_raw; /* the query string (as it appears in the URI) */
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_query.c39 unsigned query; member in struct:i915_query
45 struct i915_query *query = CALLOC_STRUCT( i915_query ); local
47 return (struct pipe_query *)query;
51 struct pipe_query *query)
53 FREE(query);
57 struct pipe_query *query)
61 static void i915_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
66 struct pipe_query *query,
50 i915_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
56 i915_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
65 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_context.c105 struct pipe_query *query,
110 llvmpipe->render_cond_query = query;
104 llvmpipe_render_condition( struct pipe_context *pipe, struct pipe_query *query, uint mode ) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dr600_query.c33 static void r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
37 r600_context_query_destroy(rctx, (struct r600_query *)query);
40 static void r600_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
43 struct r600_query *rquery = (struct r600_query *)query;
47 r600_query_begin(rctx, (struct r600_query *)query);
51 static void r600_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
54 struct r600_query *rquery = (struct r600_query *)query;
61 struct pipe_query *query,
65 struct r600_query *rquery = (struct r600_query *)query;
71 struct pipe_query *query,
60 r600_get_query_result(struct pipe_context *ctx, struct pipe_query *query, boolean wait, union pipe_query_result *vresult) argument
70 r600_render_condition(struct pipe_context *ctx, struct pipe_query *query, uint mode) argument
[all...]
/external/chromium_org/ui/app_list/search/
H A Dtokenized_string_match_unittest.cc36 const char* query; member in struct:app_list::test::__anon16544
39 { "", "query" },
49 EXPECT_FALSE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text))
52 << ", query=" << kTestCases[i].query;
59 const char* query; member in struct:app_list::test::__anon16545
78 EXPECT_TRUE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text));

Completed in 4201 milliseconds

1234567891011>>