/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
HttpUrl.java | 54 * As another example, this code prints the human-readable query parameters of a Twitter search: 122 * <h4>Query</h4> 123 * The query is optional: it can be null, empty, or non-empty. For many HTTP URLs the query string 125 * query as the single string, or as individual name-value parameters. With name-value parameters 129 * The fragment is optional: it can be null, empty, or non-empty. Unlike host, port, path, and query 134 * string {@code cute #puppies} is encoded as {@code cute%20%23puppies} when used as a query 145 * start of the URL's query. But within the query and fragment components, the {@code ?} character 150 * .query("_Who?_" 523 public String query() { method in class:HttpUrl 800 public Builder query(String query) { method in class:HttpUrl.Builder [all...] |
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
ShadowContentResolverTest.java | 100 @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { 202 assertThat(shadowContentResolver.query(null, null, null, null, null)).isNull(); 205 assertThat((BaseCursor) shadowContentResolver.query(null, null, null, null, null)).isSameAs(cursor); 210 assertThat(shadowContentResolver.query(null, null, null, null, null, new CancellationSignal())).isNull(); 213 assertThat((BaseCursor) shadowContentResolver.query(null, null, null, null, null, new CancellationSignal())).isSameAs(cursor); 218 assertThat(shadowContentResolver.query(uri21, null, null, null, null)).isNull(); 219 assertThat(shadowContentResolver.query(uri22, null, null, null, null)).isNull(); 226 assertThat((BaseCursor) shadowContentResolver.query(uri21, null, null, null, null)).isSameAs(cursor21); 227 assertThat((BaseCursor) shadowContentResolver.query(uri22, null, null, null, null)).isSameAs(cursor22); 240 Cursor cursor = shadowContentResolver.query(uri21, projection, selection, selectionArgs, sortOrder) 854 public Cursor query(Uri uri, String[] strings, String s, String[] strings1, String s1) { method in class:ShadowContentResolverTest.MyContentProvider [all...] |
SQLiteDatabaseTest.java | 107 Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, null, null, null, null); 210 Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, null, null, null, null); 250 Cursor cursor = database.query("blob_table", new String[]{"blob_col"}, "id=1", null, null, null, null); 258 cursor = database.query("blob_table", new String[]{"blob_col"}, "id=2", null, null, null, null); 274 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null); 287 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null); 301 Cursor cursor = database.query("table_name", new String[]{"id", "name"}, null, null, null, null, null); 460 Cursor cursor = database.query("table_name", new String[]{"big_int"}, null, null, null, null, null); 562 String query = "SELECT name FROM table_name where id = " + id; local 563 Cursor cursor = executeQuery(query); 571 final String query = "SELECT first_column FROM table_name WHERE id = "; local [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/ |
ViewInflater.java | 816 String query = ""; local 821 query = value.substring(0, i) + "."; 824 query += "R"; 827 query += "$" + value.substring(0, i); 830 Class<?> clazz = Class.forName(query); [all...] |
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
ScriptManager.java | 153 private void updateAndFilterScriptList(final String query) { 163 return file.getName().toLowerCase().contains(query.toLowerCase()); 169 if (!mQuery.equals(query)) { 170 if (query != null || !query.equals(EMPTY)) { 171 mQuery = query; 199 String query = intent.getStringExtra(SearchManager.QUERY); local 200 updateAndFilterScriptList(query);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
CFLAndersAliasAnalysis.cpp | 571 // reaches here. The may-alias query essentially becomes integer 844 AliasResult CFLAndersAAResult::query(const MemoryLocation &LocA, function in class:CFLAndersAAResult 884 // ConstantExpr, but every query needs to have at least one Value tied to a 889 AliasResult QueryResult = query(LocA, LocB); [all...] |
/external/webrtc/webrtc/base/ |
httpcommon.h | 267 const string& query() const { return query_; } function in class:rtc::Url
|
/frameworks/av/media/codec2/hidl/client/ |
client.cpp | 196 c2_status_t Codec2ConfigurableClient::query( function in class:android::Codec2ConfigurableClient 206 LOG(WARNING) << "query -- null stack param encountered."; 221 Return<void> transStatus = mBase->query( 228 LOG(DEBUG) << "query -- call failed: " 234 LOG(ERROR) << "query -- error while parsing params."; 245 LOG(WARNING) << "query -- null stack param."; 253 LOG(ERROR) << "query -- unexpected error."; 258 LOG(WARNING) << "query -- param skipped: " 265 LOG(WARNING) << "query -- param update failed: " 271 LOG(WARNING) << "query -- null heap param." [all...] |
/bionic/libc/dns/resolv/ |
res_cache.c | 61 * - it takes raw DNS query packet data as input, and returns raw DNS 73 * - the implementation is just a (query-data) => (answer-data) hash table 85 * - the client calls _resolv_cache_lookup() before performing a query 124 * * 1) we've added IPv6 support so each dns query results in 2 responses 145 /* set to 1 to debug query data */ 333 /* dump the content of a query of packet to the log */ 365 * ID : 16 : 16-bit unique query identification field 389 * QNAME : variable : Query DNS NAME 390 * TYPE : 16 : type of query (A=1, PTR=12, MX=15, AAAA=28, ALL=255) 391 * CLASS : 16 : class of query (IN=1 1055 const uint8_t* query; member in struct:Entry [all...] |
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
ContactsTest.java | 89 // Retry directory query so we can make sure directory info in cp2 is updated 519 final Cursor cursor = mResolver.query(Directory.ENTERPRISE_CONTENT_URI, [all...] |
/cts/libs/testserver/src/android/webkit/cts/ |
CtsTestServer.java | 565 String query = uri.getQuery(); local 647 if (query == null || !query.contains(NOLENGTH_POSTFIX)) { [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
ContentResolverTest.java | 313 mCursor = mContentResolver.query(TABLE1_URI, null, null, null); 336 mCursor = mContentResolver.query(TABLE1_URI, null, queryArgs, null); 349 mCursor = mContentResolver.query(TABLE1_URI, null, queryArgs, null); 363 * of MockContentProvider#query, specifically the facts: 365 * - it does *not* override the query w/ Bundle methods 397 mCursor = mContentResolver.query(TABLE1_URI, sortCols, queryArgs, null); 417 mCursor = mContentResolver.query(TABLE1_URI, null, queryArgs, null); 441 mCursor = mContentResolver.query( 472 mContentResolver.query(null, null, null, null, null); 482 mCursor = mContentResolver.query(REMOTE_CRASH_URI, null, null, null, null) [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
MediaControllerTest.java | 285 final String query = "test-query"; local 286 controls.playFromSearch(query, extras); 289 assertEquals(query, mCallback.mQuery); 345 controls.prepareFromSearch(query, extras); 348 assertEquals(query, mCallback.mQuery); 592 public void onPlayFromSearch(String query, Bundle extras) { 595 mQuery = query; 667 public void onPrepareFromSearch(String query, Bundle extras) { 670 mQuery = query; [all...] |
/device/generic/goldfish/audio/ |
audio_hw.c | 354 struct str_parms *query = str_parms_create_str(keys); local 361 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value)); 369 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_SUP_FORMATS)) { 376 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_FORMAT)) { 390 str_parms_destroy(query); 892 struct str_parms *query = str_parms_create_str(keys); local 899 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value)); 905 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_SUP_FORMATS)) { 912 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_FORMAT)) { 926 str_parms_destroy(query); [all...] |
/device/google/cuttlefish_common/guest/hals/audio/ |
audio_hw.c | 357 struct str_parms *query = str_parms_create_str(keys); local 364 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value)); 372 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_SUP_FORMATS)) { 379 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_FORMAT)) { 393 str_parms_destroy(query); 895 struct str_parms *query = str_parms_create_str(keys); local 902 ret = str_parms_get_str(query, AUDIO_PARAMETER_STREAM_ROUTING, value, sizeof(value)); 908 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_SUP_FORMATS)) { 915 if (str_parms_has_key(query, AUDIO_PARAMETER_STREAM_FORMAT)) { 929 str_parms_destroy(query); [all...] |
/external/curl/lib/ |
http.c | 728 * @param path pointer to the requested path; should include query part 1936 const char *query = data->state.up.query; local [all...] |
/external/deqp-deps/glslang/SPIRV/ |
SpvBuilder.cpp | 2034 Instruction* query = new Instruction(getUniqueId(), resultType, opCode); local [all...] |
/external/linux-kselftest/tools/testing/selftests/bpf/ |
test_progs.c | 758 struct perf_event_query_bpf *query; local 781 query = malloc(sizeof(*query) + sizeof(__u32) * num_progs); 811 /* check NULL prog array query */ 812 query->ids_len = num_progs; 813 err = ioctl(pmu_fd[i], PERF_EVENT_IOC_QUERY_BPF, query); 814 if (CHECK(err || query->prog_cnt != 0, 816 "err %d errno %d query->prog_cnt %u\n", 817 err, errno, query->prog_cnt)) 828 query->ids_len = 0 [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_threaded_context.c | 352 struct threaded_query *tq = threaded_query(payload->query); 357 pipe->destroy_query(pipe, payload->query); 361 tc_destroy_query(struct pipe_context *_pipe, struct pipe_query *query) 365 tc_add_small_call(tc, TC_CALL_destroy_query)->query = query; 371 pipe->begin_query(pipe, payload->query); 375 tc_begin_query(struct pipe_context *_pipe, struct pipe_query *query) 380 payload->query = query; 386 struct pipe_query *query; member in struct:tc_end_query_payload 442 struct pipe_query *query; member in struct:tc_query_result_resource 481 struct pipe_query *query; member in struct:tc_render_condition [all...] |
/external/mesa3d/src/gallium/drivers/ddebug/ |
dd_pipe.h | 124 struct pipe_query *query; member in struct:call_get_query_result_resource 193 struct pipe_query *query; member in struct:dd_query 216 struct dd_query *query; member in struct:dd_draw_state::__anon33299 352 dd_query(struct pipe_query *query) 354 return (struct dd_query *)query; 358 dd_query_unwrap(struct pipe_query *query) 360 if (query) { 361 return dd_query(query)->query;
|
/external/mesa3d/src/gallium/state_trackers/nine/ |
device9.c | 3845 struct NineQuery9 *query; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_common_context.h | 220 /* occlusion query */ 227 /* Double linked list of not flushed query objects */ 449 } query; member in struct:radeon_context
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_handlers_p2p.c | 2602 struct wpabuf *query = NULL; local 2688 struct wpabuf *query = NULL; local [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_context.h | 496 /* Bitmask of used query IDs */ 523 unsigned query:1; member in struct:svga_context::__anon33926::__anon33927 531 struct svga_winsys_gb_query *gb_query; /**< gb query object, one per context */ 532 unsigned gb_query_len; /**< gb query object size */ 533 struct util_bitmask *gb_query_alloc_mask; /**< gb query object allocation mask */ 535 /**< query mem block mapping */
|
/external/python/apitools/samples/bigquery_sample/bigquery_v2/ |
bigquery_v2_messages.py | 3 A data platform for customers to create, manage, share and query data. 125 jobId: [Required] Job ID of the query job 129 projectId: [Required] Project ID of the query job 131 timeoutMs: How long to wait for the query to complete, in milliseconds, 221 projectId: Project ID of the project billed for the query 462 in the table schema and their values are read as BYTES. During a query 463 only the column families referenced in that query are read from 1017 query = _messages.MessageField('JobConfigurationQuery', 5) variable in class:JobConfiguration 1286 query = _messages.StringField(10) variable in class:JobConfigurationQuery 1411 query = _messages.MessageField('JobStatistics2', 5) variable in class:JobStatistics 1620 query = _messages.StringField(6) variable in class:QueryRequest 2046 query = _messages.StringField(1) variable in class:ViewDefinition [all...] |