HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 26 - 50 of 1947) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_query.c 88 static void r600_emit_query_begin(struct r600_context *ctx, struct r600_query *query)
93 r600_need_cs_space(ctx, query->num_cs_dw * 2, TRUE);
95 /* Get a new query buffer if needed. */
96 if (query->buffer.results_end + query->result_size > query->buffer.buf->b.b.width0) {
98 *qbuf = query->buffer;
99 query->buffer.buf = r600_new_query_buffer(ctx, query->type);
100 query->buffer.results_end = 0
255 struct r600_query *query; local
566 struct r600_query *query; local
576 struct r600_query *query; local
587 struct r600_query *query; local
598 struct r600_query *query; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_query.c 88 static void r600_emit_query_begin(struct r600_context *ctx, struct r600_query *query)
93 r600_need_cs_space(ctx, query->num_cs_dw * 2, TRUE);
95 /* Get a new query buffer if needed. */
96 if (query->buffer.results_end + query->result_size > query->buffer.buf->b.b.width0) {
98 *qbuf = query->buffer;
99 query->buffer.buf = r600_new_query_buffer(ctx, query->type);
100 query->buffer.results_end = 0
255 struct r600_query *query; local
566 struct r600_query *query; local
576 struct r600_query *query; local
587 struct r600_query *query; local
598 struct r600_query *query; local
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 40 query = cls.gql('WHERE handle = :1', username)
41 return query.get()
47 query = cls.gql('WHERE handle = :1', username)
48 return query.get().updated
54 query = cls.gql('WHERE handle = :1', username)
55 return query.get().key().id()
61 query = cls.gql('WHERE handle = :1', username)
62 return query.get().status
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
ApplicationsLatency.java 51 for (String query : queries) {
52 checkSource("APPS", APPS_COMPONENT, query);
ContactsLatency.java 50 for (String query : queries) {
51 checkSource("CONTACTS", CONTACTS_COMPONENT, query);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSource.java 30 * Called by QSB to get web suggestions for a query.
32 SourceResult queryInternal(String query);
35 * Called by external apps to get web suggestions for a query.
37 SourceResult queryExternal(String query);
AbstractGoogleSource.java 55 * Called by QSB to get web suggestions for a query.
58 public abstract SourceResult queryInternal(String query);
61 * Called by external apps to get web suggestions for a query.
64 public abstract SourceResult queryExternal(String query);
102 public SourceResult getSuggestions(String query, int queryLimit) {
103 return emptyIfNull(queryInternal(query), query);
106 public SourceResult getSuggestionsExternal(String query) {
107 return emptyIfNull(queryExternal(query), query);
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
QueryParameterUtils.java 36 String query = uri.getEncodedQuery(); local
37 if (query == null) {
41 int queryLength = query.length();
47 index = query.indexOf(parameter, index);
58 if (query.charAt(index) == '=') {
64 int ampIndex = query.indexOf('&', index);
66 value = query.substring(index);
68 value = query.substring(index, ampIndex);
  /device/generic/goldfish/camera/
QemuClient.cpp 38 * Qemu query
87 /* Query name cannot be NULL or an empty string. */
89 ALOGE("%s: NULL or an empty string is passed as query name.",
100 /* Preallocated buffer was too small. Allocate a bigger query buffer. */
103 ALOGE("%s: Unable to allocate %zu bytes for query buffer",
110 /* At this point mQuery buffer is big enough for the query. */
122 /* Save query completion status. */
134 ALOGE("%s: Invalid reply to the query", __FUNCTION__);
145 ALOGE("%s: Invalid query reply: '%s'", __FUNCTION__, mReplyBuffer);
155 ALOGE("%s: Invalid query reply: '%s'", __FUNCTION__, mReplyBuffer)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_query.c 33 static void r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query)
37 r600_context_query_destroy(rctx, (struct r600_query *)query);
40 static void r600_begin_query(struct pipe_context *ctx, struct pipe_query *query)
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)
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,
    [all...]
r600_hw_context.c 44 /* if backend_map query is supported by the kernel */
279 static boolean r600_query_result(struct r600_context *ctx, struct r600_query *query, boolean wait)
281 unsigned results_base = query->results_start;
284 map = ctx->ws->buffer_map(query->buffer->cs_buf, ctx->cs,
291 switch (query->type) {
293 while (results_base != query->results_end) {
294 query->result.u64 +=
296 results_base = (results_base + 16) % query->buffer->b.b.width0;
300 while (results_base != query->results_end) {
301 query->result.b = query->result.b |
536 struct r600_query *query; local
628 struct r600_query *query; local
638 struct r600_query *query; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_query.c 33 static void r600_destroy_query(struct pipe_context *ctx, struct pipe_query *query)
37 r600_context_query_destroy(rctx, (struct r600_query *)query);
40 static void r600_begin_query(struct pipe_context *ctx, struct pipe_query *query)
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)
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,
    [all...]
r600_hw_context.c 44 /* if backend_map query is supported by the kernel */
279 static boolean r600_query_result(struct r600_context *ctx, struct r600_query *query, boolean wait)
281 unsigned results_base = query->results_start;
284 map = ctx->ws->buffer_map(query->buffer->cs_buf, ctx->cs,
291 switch (query->type) {
293 while (results_base != query->results_end) {
294 query->result.u64 +=
296 results_base = (results_base + 16) % query->buffer->b.b.width0;
300 while (results_base != query->results_end) {
301 query->result.b = query->result.b |
536 struct r600_query *query; local
628 struct r600_query *query; local
638 struct r600_query *query; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
SuggestionsProvider.java 64 * Minimum length of query before we start showing contacts suggestions.
81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:SuggestionsProvider
83 String query = selectionArgs[0]; local
91 if (query != null) {
92 // Tokenize the query.
93 String[] tokens = TextUtils.split(query,
95 // There are multiple tokens, so query on the last token only.
97 query = tokens[tokens.length - 1];
108 query = query.trim()
139 public ContactsCursor query(String query) { method in class:SuggestionsProvider.ContactsCursor
170 final StringBuilder query = new StringBuilder(); local
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pServiceRequest.java 50 * query data field.
61 * The hex dump string of query data for the requested service information.
72 * @param query The part of service specific query.
75 protected WifiP2pServiceRequest(int protocolType, String query) {
76 validateQuery(query);
79 mQuery = query;
80 if (query != null) {
81 mLength = query.length()/2 + 2;
93 * @param query The part of service specific query
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSource.java 42 public SuggestionData createSuggestion(String query) {
44 .setText1(query)
46 .setSuggestionQuery(query);
120 public SourceResult getSuggestions(String query, int queryLimit) {
121 if (query.length() == 0) {
124 ListSuggestionCursor cursor = new ListSuggestionCursor(query);
125 cursor.add(createSuggestion(query + "_1"));
126 cursor.add(createSuggestion(query + "_2"));
127 return new Result(query, cursor);
130 public SuggestionData createSuggestion(String query) {
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDirectCursorDriver.java 24 * A cursor driver that uses the given query directly.
43 public Cursor query(CursorFactory factory, String[] selectionArgs) { method in class:SQLiteDirectCursorDriver
44 final SQLiteQuery query = new SQLiteQuery(mDatabase, mSql, mCancellationSignal); local
47 query.bindAllArgsAsStrings(selectionArgs);
50 cursor = new SQLiteCursor(this, mEditTable, query);
52 cursor = factory.newCursor(mDatabase, this, mEditTable, query);
55 query.close();
59 mQuery = query;
  /frameworks/ex/common/java/com/android/common/
Search.java 61 * @param query The search text entered (so far).
62 * @return a cursor with suggestions, or <code>null</null> the suggestion query failed.
64 public static Cursor getSuggestions(Context context, SearchableInfo searchable, String query) {
65 return getSuggestions(context, searchable, query, -1);
72 * @param query The search text entered (so far).
73 * @param limit The query limit to pass to the suggestion provider. This is advisory,
75 * @return a cursor with suggestions, or <code>null</null> the suggestion query failed.
78 String query, int limit) {
91 .query("") // TODO: Remove, workaround for a bug in Uri.writeToParcel()
100 // append standard suggestion query pat
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
SearchConfig.js 8 * @param {string} query
12 WebInspector.SearchConfig = function(query, ignoreCase, isRegex)
14 this._query = query;
24 * @param {{query: string, ignoreCase: boolean, isRegex: boolean}} object
29 return new WebInspector.SearchConfig(object.query, object.ignoreCase, object.isRegex);
36 query: function()
58 * @return {{query: string, ignoreCase: boolean, isRegex: boolean}}
62 return { query: this.query(), ignoreCase: this.ignoreCase(), isRegex: this.isRegex() };
130 _parseUnquotedQuery: function(query)
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
add-free.php 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch();
33 $row = $db->query("SELECT password FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
  /external/chromium_org/third_party/angle/tests/angle_tests/
OcclusionQueriesTest.cpp 71 GLuint query = 0; local
72 glGenQueriesEXT(1, &query);
73 glBeginQueryEXT(GL_ANY_SAMPLES_PASSED_EXT, query);
85 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &ready);
89 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_EXT, &result);
93 glDeleteQueriesEXT(1, &query);
105 GLuint query = 0; local
106 glGenQueriesEXT(1, &query);
107 glBeginQueryEXT(GL_ANY_SAMPLES_PASSED_EXT, query);
116 glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_EXT, &result); // will block waiting for resul
132 GLuint query = 0; local
    [all...]
  /external/smack/src/org/xbill/DNS/
SimpleResolver.java 10 * An implementation of Resolver that sends one query to one server.
42 * Creates a SimpleResolver that will query the specified host
61 * Creates a SimpleResolver. The host to query is either found by using
81 /** Sets the default host (initially localhost) to query */
195 verifyTSIG(Message query, Message response, byte [] b, TSIG tsig) {
198 int error = tsig.verify(response, b, query.getTSIG());
204 applyEDNS(Message query) {
205 if (queryOPT == null || query.getOPT() != null)
207 query.addRecord(queryOPT, Section.ADDITIONAL);
211 maxUDPSize(Message query) {
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/
start_page_observer.h 15 // Invoked when a search query happens from the start page.
16 virtual void OnSpeechResult(const base::string16& query, bool is_final) = 0;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DatabaseQueryView.js 37 this.element.classList.add("query");
42 this._promptElement.className = "database-query-prompt";
134 var query = this._prompt.text;
135 if (!query.length)
138 this._prompt.pushHistoryItem(query);
141 this.database.executeSql(query, this._queryFinished.bind(this, query), this._queryError.bind(this, query));
144 _queryFinished: function(query, columnNames, values)
147 var trimmedQuery = query.trim()
    [all...]
  /external/libcxx/test/utilities/meta/meta.unary.prop.query/
Android.mk 17 test_makefile := external/libcxx/test/utilities/meta/meta.unary.prop.query/Android.mk
19 test_name := utilities/meta/meta.unary.prop.query/alignment_of
23 test_name := utilities/meta/meta.unary.prop.query/rank
27 test_name := utilities/meta/meta.unary.prop.query/extent

Completed in 1474 milliseconds

12 3 4 5 6 7 8 91011>>