HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 126 - 150 of 1949) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/freetype/src/cache/
ftccmap.c 51 /* compute a query/node hash */
56 /* the charmap query */
117 FTC_CMapQuery query = (FTC_CMapQuery)ftcquery; local
126 node->face_id = query->face_id;
127 node->cmap_index = query->cmap_index;
128 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) *
152 /* compare a cmap node to a given query */
160 FTC_CMapQuery query = (FTC_CMapQuery)ftcquery; local
166 if ( node->face_id == query->face_id &&
167 node->cmap_index == query->cmap_index
241 FTC_CMapQueryRec query; local
    [all...]
  /external/freetype/src/cache/
ftccmap.c 51 /* compute a query/node hash */
56 /* the charmap query */
117 FTC_CMapQuery query = (FTC_CMapQuery)ftcquery; local
126 node->face_id = query->face_id;
127 node->cmap_index = query->cmap_index;
128 node->first = (query->char_code / FTC_CMAP_INDICES_MAX) *
152 /* compare a cmap node to a given query */
160 FTC_CMapQuery query = (FTC_CMapQuery)ftcquery; local
166 if ( node->face_id == query->face_id &&
167 node->cmap_index == query->cmap_index
241 FTC_CMapQueryRec query; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/
SenderInfoLoader.java 66 * Limit the query params to avoid hitting the maximum of 99. We choose a number smaller than
67 * 99 since the contacts provider may wrap our query in its own and insert more params.
120 Trace.beginSection("build first query");
128 // Build first query
129 StringBuilder query = new StringBuilder() local
132 appendQuestionMarks(query, emailsList);
133 query.append(')');
141 Trace.beginSection("query 1");
142 cursor = resolver.query(Data.CONTENT_URI, DATA_COLS,
143 query.toString(), toStringArray(emailsList), sortOrder)
    [all...]
  /external/chromium_org/chrome/common/cloud_print/
cloud_print_helpers.cc 80 std::string query = base::StringPrintf("proxy=%s", proxy_id.c_str()); local
81 replacements.SetQueryStr(query);
97 std::string query = base::StringPrintf("printerid=%s", printer_id.c_str()); local
98 replacements.SetQueryStr(query);
108 std::string query = base::StringPrintf( local
110 replacements.SetQueryStr(query);
120 std::string query = base::StringPrintf( local
122 replacements.SetQueryStr(query);
132 std::string query = base::StringPrintf( local
134 replacements.SetQueryStr(query);
143 std::string query = base::StringPrintf("jobid=%s", job_id.c_str()); local
155 std::string query = base::StringPrintf( local
167 std::string query = base::StringPrintf("code=%s", message_id.c_str()); local
180 std::string query = base::StringPrintf("oauth_client_id=%s&proxy=%s", local
    [all...]
  /external/qemu/android/
sdk-controller-socket.h 59 * - Sending a "handshake" query to the SdkController.
79 * 1.2. Handshake query.
81 * Handshake query is a special type of query that SDKCtlSocket sends to the
82 * SdkController upon successful socket connection. This query served two
91 * SdkController responds to the handshake query, thus, completing the connection.
107 * - A query - A message that require a reply, and
108 * - A query reply - A message that delivers query reply.
120 /* Declares SDK controller query descriptor. *
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQueryBuilder.java 56 * Mark the query as DISTINCT.
58 * @param distinct if true the query is DISTINCT, otherwise it isn't
74 * Sets the list of tables to query. Multiple tables can be specified to perform a join.
79 * @param inTables the list of tables to query on
86 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
87 * by parenthesis and ANDed with the selection passed to {@link #query}. The final
90 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
105 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
106 * by parenthesis and ANDed with the selection passed to {@link #query}. The final
109 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>
212 StringBuilder query = new StringBuilder(120); local
291 public Cursor query(SQLiteDatabase db, String[] projectionIn, method in class:SQLiteQueryBuilder
330 public Cursor query(SQLiteDatabase db, String[] projectionIn, method in class:SQLiteQueryBuilder
372 public Cursor query(SQLiteDatabase db, String[] projectionIn, method in class:SQLiteQueryBuilder
595 StringBuilder query = new StringBuilder(128); local
    [all...]
SQLiteQuery.java 25 * Represents a query that reads the resulting rows into a {@link SQLiteQuery}.
36 SQLiteQuery(SQLiteDatabase db, String query, CancellationSignal cancellationSignal) {
37 super(db, query, null, cancellationSignal);
48 * If it won't fit, then the query should discard part of what it filled.
49 * @param countAllRows True to count all rows that the query would
70 Log.e(TAG, "exception: " + ex.getMessage() + "; query: " + getSql());
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerDataHelper.java 103 * Query tracker data, filtering by given tag
108 public Cursor query(String tag, int limit) { method in class:TrackerDataHelper
111 Cursor cursor = mContext.getContentResolver().query(
128 public Cursor query(int limit) { method in class:TrackerDataHelper
129 return query(null, limit);
133 * Query tracker data, filtering by given tag. mo limit to number of rows
139 public Cursor query(String tag) { method in class:TrackerDataHelper
140 return query(tag, Integer.MAX_VALUE);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionUtils.java 38 String query = suggestion.getSuggestionQuery(); local
52 if (query != null) {
53 intent.putExtra(SearchManager.QUERY, query);
73 String query = makeKeyComponent(normalizeUrl(suggestion.getSuggestionQuery())); local
76 int size = action.length() + 2 + data.length() + query.length();
82 .append(query)
Source.java 111 Intent createSearchIntent(String query, Bundle appData);
123 * @param query The user query.
127 SourceResult getSuggestions(String query, int queryLimit);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSuggestionProvider.java 66 private SourceResult emptyIfNull(SourceResult result, GoogleSource source, String query) {
67 return result == null ? new CursorBackedSourceResult(source, query) : result;
71 public Cursor query(Uri uri, String[] projection, String selection, method in class:GoogleSuggestionProvider
74 if (DBG) Log.d(TAG, "query uri=" + uri);
78 String query = getQuery(uri); local
80 emptyIfNull(mSource.queryExternal(query), mSource, query));
  /external/chromium_org/chrome/browser/ui/app_list/search/
history_data_store.cc 51 // "user typed query": {
98 const std::string& query = it.key(); local
99 HistoryData::Data& association_data = (*data.get())[query];
137 void HistoryDataStore::SetPrimary(const std::string& query,
139 base::DictionaryValue* entry_dict = GetEntryDict(query);
146 const std::string& query,
152 base::DictionaryValue* entry_dict = GetEntryDict(query);
157 void HistoryDataStore::SetUpdateTime(const std::string& query,
159 base::DictionaryValue* entry_dict = GetEntryDict(query);
166 void HistoryDataStore::Delete(const std::string& query) {
    [all...]
omnibox_provider.h 27 virtual void Start(const base::string16& query) OVERRIDE;
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
MediaStoreThumbFetcher.java 113 public Cursor query(Context context, Uri uri); method in interface:MediaStoreThumbFetcher.ThumbnailQuery
119 private ThumbnailQuery query; field in class:MediaStoreThumbFetcher.ThumbnailStreamOpener
121 public ThumbnailStreamOpener(ThumbnailQuery query) {
122 this(DEFAULT_SERVICE, query);
125 public ThumbnailStreamOpener(FileService service, ThumbnailQuery query) {
127 this.query = query;
134 final Cursor cursor = query.query(context, uri);
160 public Cursor query(Context context, Uri uri) method in class:MediaStoreThumbFetcher.ImageThumbnailQuery
172 public Cursor query(Context context, Uri uri) { method in class:MediaStoreThumbFetcher.VideoThumbnailQuery
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
SearchFragment.java 68 private static final String ARG_QUERY = ARG_PREFIX + ".query";
79 * an ObjectAdapter that will contain the results to future updates of the search query.</p>
89 * <p>Method invoked when the search query is updated.</p>
91 * <p>This is called as soon as the query changes; it is up to the application to add a
97 * @param newQuery The current search query.
98 * @return whether the results changed as a result of the new query.
103 * Method invoked when the search query is submitted, either by dismissing the keyboard,
104 * pressing search or next on the keyboard or when voice has detected the end of the query.
106 * @param query The query entered
606 String query = mPendingQuery; local
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/common/
webservice_cache.cc 43 const std::string& query) {
44 std::string typed_query = PrependType(type, query);
58 const std::string& query,
61 std::string typed_query = PrependType(type, query);
91 // In case we don't have a valid payload associated with a given query,
92 // clean up that query from our data store.
150 QueryType type, const std::string& query) {
153 return kWebstoreQueryPrefix + query;
155 return kPeopleQueryPrefix + query;
157 return query;
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
fileicon_source.cc 38 // Assuming the url is of the form '/path?query', convert the path portion into
39 // a FilePath and return the resulting |file_path| and |query|. The path
43 std::string* query) {
52 query->assign(gurl.query());
63 // Simple parser for data on the query.
64 void ParseQueryParams(const std::string& query,
73 base::SplitStringIntoKeyValuePairs(query, '=', '&', &parameters);
135 std::string query; local
139 GetFilePathAndQuery(url_path, &file_path, &query);
    [all...]
  /external/chromium_org/net/base/
url_util.cc 19 std::string query(url.query());
21 if (!query.empty())
22 query += "&";
24 query += (EscapeQueryParamValue(name, true) + "=" +
27 replacements.SetQueryStr(query);
38 const std::string input = url.query();
78 query_ = url.parsed_for_possibly_invalid_spec().query;
  /external/wpa_supplicant_8/hs20/server/www/
add-mo.php 28 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch();
34 $userrow = $db->query("SELECT identity FROM users WHERE identity='$user' AND realm='$realm'")->fetch();
signup.php 18 $row = $db->query("SELECT realm FROM sessions WHERE id='$id'")->fetch();
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch();
  /frameworks/base/core/java/android/hardware/camera2/marshal/
Marshaler.java 45 * @param query an instance of {@link MarshalQueryable}
56 MarshalQueryable<T> query, TypeReference<T> typeReference, int nativeType) {
60 if (!query.isTypeMappingSupported(typeReference, nativeType)) {
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pDnsSdServiceRequest.java 34 * @param query The part of service specific query.
37 private WifiP2pDnsSdServiceRequest(String query) {
38 super(WifiP2pServiceInfo.SERVICE_TYPE_BONJOUR, query);
  /external/chromium_org/chrome/browser/extensions/activity_log/
fullstream_ui_policy.cc 128 // Ensure data is flushed to the database first so that we query over all
138 // Build up the query based on which parameters were specified.
168 sql::Statement query(db->GetUniqueStatement(query_str.c_str()));
171 query.BindString(++i, extension_id);
173 query.BindString(++i, api_name);
175 query.BindInt(++i, static_cast<int>(type));
177 query.BindString(++i, page_url + "%");
179 query.BindString(++i, arg_url + "%");
184 query.BindInt64(++i, early_bound);
185 query.BindInt64(++i, late_bound)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreTest.java 41 Cursor c = mContentResolver.query(mScannerUri, PROJECTION, null, null, null);
67 assertNull(mContentResolver.query(mScannerUri, PROJECTION,
75 // query
76 Cursor c = mContentResolver.query(mScannerUri, PROJECTION,
85 assertNull(mContentResolver.query(mScannerUri, PROJECTION, null, null, null));
  /external/chromium_org/chrome/browser/resources/sync_internals/
search.js 15 $('sync-search-query'));
18 $('sync-search-query'),

Completed in 2511 milliseconds

1 2 3 4 56 7 8 91011>>