HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 76 - 100 of 2957) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webrtc/webrtc/libjingle/xmpp/
mucroomlookuptask.cc 57 XmlElement* query)
58 : IqTask(parent, STR_SET, lookup_server_jid, query) {
69 XmlElement* query = new XmlElement(QN_SEARCH_QUERY, true); local
70 query->AddElement(name_elem);
71 query->AddElement(domain_elem);
72 return query;
79 XmlElement* query = new XmlElement(QN_SEARCH_QUERY); local
80 query->AddElement(jid_elem);
81 return query;
90 XmlElement* query = new XmlElement(QN_SEARCH_QUERY) local
105 XmlElement* query = new XmlElement(QN_SEARCH_QUERY, true); local
    [all...]
mucroomdiscoverytask.cc 25 const XmlElement* query = stanza->FirstNamed(QN_DISCO_INFO_QUERY); local
26 if (query == NULL) {
33 const XmlElement* identity = query->FirstNamed(QN_DISCO_IDENTITY);
49 for (const XmlElement* feature = query->FirstNamed(QN_DISCO_FEATURE);
54 const XmlElement* data_x = query->FirstNamed(QN_XDATA_X);
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/
ObservableQueryResultBinderProvider.kt 22 import androidx.room.solver.query.result.QueryResultAdapter
23 import androidx.room.solver.query.result.QueryResultBinder
37 final override fun provide(declared: DeclaredType, query: ParsedQuery): QueryResultBinder {
39 val adapter = context.typeAdapterStore.findQueryResultAdapter(typeArg, query)
41 query.tables.map { it.name }).toSet()
  /test/vti/test_serving/gae/webapp/src/tasks/
indexing.py 32 build_query = model.BuildModel.query()
37 schedule_query = model.ScheduleModel.query()
42 lab_query = model.LabModel.query()
47 device_query = model.DeviceModel.query()
52 job_query = model.JobModel.query()
68 build_query = model.BuildModel.query()
84 device_query = model.DeviceModel.query()
101 job_query = model.JobModel.query()
118 lab_query = model.LabModel.query()
135 schedule_query = model.ScheduleModel.query()
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/smartdial/util/
SmartDialNameMatcher.java 29 * contact's display name matches a numeric query. The boolean variable {@link #ALLOW_INITIAL_MATCH}
42 private String query; field in class:SmartDialNameMatcher
44 // Controls whether to treat an empty query as a match (with anything).
47 public SmartDialNameMatcher(String query) {
48 this.query = query;
105 * Matches a phone number against a query. Let the test application overwrite the NANP setting.
108 * @param query - Normalized query (only contains numbers from 0-9)
109 * @return {@literal null} if the number and the query don't match, a valid SmartDialMatchPositio
    [all...]
  /external/swiftshader/src/D3D9/
Direct3DQuery9.cpp 30 query = new sw::Query(sw::Query::FRAGMENTS_PASSED);
34 query = 0;
40 if(query)
42 device->removeQuery(query);
44 delete query;
161 query->begin();
162 device->addQuery(query);
167 query->end()
    [all...]
  /packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
CrashingSuggestionProvider.java 48 public Cursor query(Uri uri, String[] projectionIn, String selection, method in class:CrashingSuggestionProvider
50 Log.d(TAG, "query(" + uri + ")");
53 String query = null; local
55 query = path.get(path.size()-1);
58 if ("crash".equals(query)) {
61 } else if ("exit".equals(query)) {
66 if ("icon".equals(query)) {
79 } else if ("icon2".equals(query)) {
HangingSuggestionProvider.java 43 public Cursor query(Uri uri, String[] projectionIn, String selection, method in class:HangingSuggestionProvider
45 Log.d(TAG, "query(" + uri + ")");
48 String query = null; local
50 query = path.get(path.size()-1);
53 if ("hang".equals(query)) {
58 if ("icon".equals(query)) {
71 } else if ("icon2".equals(query)) {
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/processor/
QueryMethodProcessor.kt 19 import androidx.room.Query
27 import androidx.room.solver.query.result.LiveDataQueryResultBinder
28 import androidx.room.solver.query.result.PojoRowAdapter
70 Query::class.java).orNull()
74 val query = if (annotation != null) {
75 val query = SqlParser.parse(
77 context.checker.check(query.errors.isEmpty(), executableElement,
78 query.errors.joinToString("\n"))
80 query.resultInfo = dbVerifier?.analyze(query.original
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
r600_perfcounter.c 105 struct r600_query_pc *query = (struct r600_query_pc *)rquery; local
107 while (query->groups) {
108 struct r600_pc_group *group = query->groups;
109 query->groups = group->next;
113 FREE(query->counters);
131 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
136 if (query->shaders)
137 pc->emit_shaders(ctx, query->shaders);
139 for (group = query->groups; group; group = group->next) {
162 struct r600_query_pc *query = (struct r600_query_pc *)hwquery local
194 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
204 struct r600_query_pc *query = (struct r600_query_pc *)hwquery; local
309 struct r600_query_pc *query; local
    [all...]
  /external/freetype/src/cache/
ftcbasic.c 73 FTC_BasicQuery query = (FTC_BasicQuery)ftcquery; local
76 return FTC_BASIC_ATTR_COMPARE( &family->attrs, &query->attrs );
86 FTC_BasicQuery query = (FTC_BasicQuery)ftcquery; local
91 family->attrs = query->attrs;
290 FTC_BasicQueryRec query; local
320 query.attrs.scaler.face_id = type->face_id;
321 query.attrs.scaler.width = type->width;
322 query.attrs.scaler.height = type->height;
323 query.attrs.load_flags = (FT_UInt)type->flags;
325 query.attrs.scaler.pixel = 1
371 FTC_BasicQueryRec query; local
491 FTC_BasicQueryRec query; local
574 FTC_BasicQueryRec query; local
    [all...]
  /frameworks/support/room/compiler/src/test/kotlin/androidx/room/processor/
RawQueryMethodProcessorTest.kt 24 import androidx.room.Query
53 abstract public int[] foo(SupportSQLiteQuery query);
54 """) { query, _ ->
55 assertThat(query.name, `is`("foo"))
56 assertThat(query.runtimeQueryParam, `is`(
58 paramName = "query",
59 type = SupportDbTypeNames.QUERY
62 assertThat(query.returnType.typeName(),
72 abstract public int[] foo(String query);
82 abstract public LiveData<User> foo(SupportSQLiteQuery query);
    [all...]
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/query/
SearchQueryTask.java 17 package com.android.settings.intelligence.search.query;
49 public QueryWorker(Context context, SiteMapManager siteMapManager, String query) {
52 mQuery = query;
59 return query();
69 protected abstract List<? extends SearchResult> query(); method in class:SearchQueryTask.QueryWorker
  /packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/
DeletedContactUtil.java 40 Cursor cursor = resolver.query(uri, projection, null, null, null);
51 Cursor cursor = resolver.query(URI, projection, null, null, null);
64 public static List<String[]> query(ContentResolver resolver, String[] projection) { method in class:DeletedContactUtil
65 Cursor cursor = resolver.query(URI, projection, null, null, null);
78 Cursor cursor = resolver.query(URI, projection, selection, args, null);
  /external/wpa_supplicant_8/src/ap/
ieee802_11_auth.c 137 static void hostapd_acl_query_free(struct hostapd_acl_query_data *query)
139 if (query == NULL)
141 os_free(query->auth_msg);
142 os_free(query);
148 struct hostapd_acl_query_data *query)
153 query->radius_id = radius_client_get_id(hapd->radius);
154 msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST, query->radius_id);
282 struct hostapd_acl_query_data *query;
294 query = hapd->acl_queries;
295 while (query) {
508 struct hostapd_acl_query_data *query, *prev; local
663 struct hostapd_acl_query_data *query, *prev; local
    [all...]
  /external/autotest/frontend/tko/
rpc_interface.py 47 query = models.TestView.objects.get_query_set_with_joins(filter_data)
49 query = models.TestView.query_objects(filter_data, initial_query=query,
51 count_alias, count_sql = models.TestView.objects.get_count_sql(query)
52 query = query.extra(select={count_alias: count_sql})
54 query = query.extra(select=extra_select_fields)
55 query = models.TestView.apply_presentation(query, filter_data
    [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 (&lt;append chunk 1>&lt;append chunk2>) AND (&lt;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 (&lt;append chunk 1>&lt;append chunk2>) AND (&lt;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
584 StringBuilder query = new StringBuilder(128); local
    [all...]
  /frameworks/support/content/src/androidTest/java/androidx/contentpager/content/
LoaderQueryRunnerTest.java 61 public void onCursorReady(Query query, Cursor cursor) {
65 final Query query = new Query( local
78 mRunner.query(query, mCallback);
83 mCallback.assertQueried(query.getId());
84 mCallback.assertReceivedContent(UNPAGED_URI, query.getId());
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/binderprovider/
CursorQueryResultBinderProvider.kt 23 import androidx.room.solver.query.result.CursorQueryResultBinder
24 import androidx.room.solver.query.result.QueryResultBinder
29 override fun provide(declared: DeclaredType, query: ParsedQuery): QueryResultBinder {
  /art/tools/ahat/src/test/com/android/ahat/
TestHandler.java 33 * Test that the given handler doesn't crash on the given query.
38 Query query = new Query(DocString.uri(uri)); local
39 handler.handle(doc, query);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
resolver_service.hpp 41 // The query type.
53 // Resolve a query to a list of entries.
54 iterator_type resolve(implementation_type&, const query_type& query,
59 socket_ops::getaddrinfo(query.host_name().c_str(),
60 query.service_name().c_str(), query.hints(), &address_info, ec);
64 address_info, query.host_name(), query.service_name());
67 // Asynchronously resolve a query to a list of entries.
70 const query_type& query, Handler& handler
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AndroidAppAssetMatcher.java 30 public AndroidAppAssetMatcher(AndroidAppAsset query) {
31 mQuery = query;
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pUpnpServiceRequest.java 36 * @param query The part of service specific query.
39 protected WifiP2pUpnpServiceRequest(String query) {
40 super(WifiP2pServiceInfo.SERVICE_TYPE_UPNP, query);
  /frameworks/support/core/ktx/src/androidTest/java/androidx/core/database/sqlite/
SQLiteDatabaseTest.kt 48 val query = db.rawQuery("SELECT COUNT(*) FROM test", emptyArray())
49 query.moveToFirst()
50 assertEquals(0L, query.getLong(0))
51 query.close()
  /frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/
SupportSQLiteDatabase.java 44 * @param sql The sql query.
259 * Runs the given query on the database. If you would like to have typed bind arguments,
260 * use {@link #query(SupportSQLiteQuery)}.
262 * @param query The SQL query that includes the query and can bind into a given compiled
266 * @see #query(SupportSQLiteQuery)
268 Cursor query(String query); method in interface:SupportSQLiteDatabase
271 * Runs the given query on the database. If you would like to have bind arguments
281 Cursor query(String query, Object[] bindArgs); method in interface:SupportSQLiteDatabase
294 Cursor query(SupportSQLiteQuery query); method in interface:SupportSQLiteDatabase
310 Cursor query(SupportSQLiteQuery query, CancellationSignal cancellationSignal); method in interface:SupportSQLiteDatabase
    [all...]

Completed in 1429 milliseconds

1 2 34 5 6 7 8 91011>>