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

1 2 34 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_queryobj.c 37 struct radeon_query_object *query = (struct radeon_query_object *)q; local
42 "%s: query id %d, result %d\n",
43 __func__, query->Base.Id, (int) query->Base.Result);
45 radeon_bo_map(query->bo, GL_FALSE);
46 result = query->bo->ptr;
48 query->Base.Result = 0;
49 for (i = 0; i < query->curr_offset/sizeof(uint32_t); ++i) {
50 query->Base.Result += LE32_TO_CPU(result[i]);
54 radeon_bo_unmap(query->bo)
59 struct radeon_query_object *query; local
75 struct radeon_query_object *query = (struct radeon_query_object *)q; local
89 struct radeon_query_object *query = (struct radeon_query_object *)q; local
106 struct radeon_query_object *query = (struct radeon_query_object *)q; local
129 struct radeon_query_object *query = radeon->query.current; local
166 struct radeon_query_object *query = (struct radeon_query_object *)q; local
196 struct radeon_query_object *query = radeon->query.current; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_perfmon.h 31 struct pipe_query *query; member in struct:st_perf_counter_object
  /external/opencensus-java/contrib/zpages/src/main/java/io/opencensus/contrib/zpages/
ZPageHttpHandler.java 73 String query = uri.getQuery(); local
74 if (query == null) {
78 for (String param : Splitter.on("&").split(query)) {
  /external/perfetto/src/trace_processor/
wasm_bridge.cc 93 protos::RawQueryArgs query; local
94 bool parsed = query.ParseFromArray(query_data, len);
103 auto it = g_trace_processor->ExecuteQuery(query.sql_query().c_str());
  /external/python/cpython2/Mac/Modules/ah/
_AHmodule.c 28 CFStringRef query; local
31 CFStringRefObj_Convert, &query))
34 query);
112 PyDoc_STR("(CFStringRef bookname, CFStringRef query) -> None")},
  /external/selinux/libsemanage/src/
database_policydb.h 76 /* Query policy record - return the record
78 record_policydb_table_query_t query; member in struct:record_policydb_table
  /external/skia/bench/
RTreeBench.cpp 83 SkRect query; variable
84 query.fLeft = rand.nextRangeF(0, GENERATE_EXTENTS);
85 query.fTop = rand.nextRangeF(0, GENERATE_EXTENTS);
86 query.fRight = query.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/2);
87 query.fBottom = query.fTop + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/2);
88 fTree.search(query, &hits);
  /external/skqp/bench/
RTreeBench.cpp 83 SkRect query; variable
84 query.fLeft = rand.nextRangeF(0, GENERATE_EXTENTS);
85 query.fTop = rand.nextRangeF(0, GENERATE_EXTENTS);
86 query.fRight = query.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/2);
87 query.fBottom = query.fTop + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/2);
88 fTree.search(query, &hits);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
TelephonyTestProvider.java 50 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:TelephonyTestProvider
  /external/webrtc/webrtc/libjingle/xmpp/
jingleinfotask.cc 92 const XmlElement * query = stanza->FirstNamed(QN_JINGLE_INFO_QUERY); local
93 if (query == NULL)
95 const XmlElement *stun = query->FirstNamed(QN_JINGLE_INFO_STUN);
107 const XmlElement *relay = query->FirstNamed(QN_JINGLE_INFO_RELAY);
  /art/tools/ahat/src/main/com/android/ahat/
BitmapHandler.java 39 Query query = new Query(exchange.getRequestURI()); local
40 long id = query.getLong("id", 0);
Query.java 25 * A class for getting and modifying query parameters.
27 class Query {
34 public Query(URI uri) {
38 String query = uri.getQuery(); local
39 if (query != null) {
40 for (String param : query.split("&")) {
52 * Return the value of a query parameter with the given name.
53 * If there is no query parameter with that name, returns the default value.
54 * If there are multiple query parameters with that name, the value of the
55 * last query parameter is returned
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/src/com/android/cts/splitapp/
FeatureProvider.java 61 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:FeatureProvider
  /cts/tests/tests/database/apps/src/com/android/cts/providerapp/
DummyProvider.java 48 public Cursor query(Uri uri, String[] projection, String selection, method in class:DummyProvider
50 Log.d(TAG, "query uri: " + uri);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_DumpFileProviderTest.java 78 mResolver.query(uri, null, null, null, null);
84 mResolver.query(uri, null, null, null, null);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
VideoContentProvider.java 66 * the search query as the first element.
70 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:VideoContentProvider
72 // Use the UriMatcher to see what kind of query we have and format the db query accordingly
86 private Cursor getSuggestions(String query) {
87 query = query.toLowerCase();
107 return mVideoDatabase.getWordMatch(query, columns);
111 * This method is required in order to query the supported types.
112 * It's also useful in our own query() method to determine the type of Uri received
    [all...]
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
MainActivity.java 28 * and uses it as a query to search the contacts database via the Contactables
34 public static final String QUERY_KEY = "query";
61 // SearchManager.QUERY is the key that a SearchManager will use to send a query string
63 String query = intent.getStringExtra(SearchManager.QUERY); local
65 // We need to create a bundle containing the query string to send along to the
68 bundle.putString(QUERY_KEY, query);
72 // Start the loader with the new query, and an object that will handle all callbacks.
  /developers/build/prebuilts/gradle/ShareActionProvider/Application/src/main/java/com/example/android/shareactionprovider/content/
AssetProvider.java 64 public Cursor query(@NonNull Uri uri, String[] projection, String selection, method in class:AssetProvider
67 // Do not support query requests.
  /developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/
AssetProvider.java 131 public Cursor query(Uri uri, String[] projection, String selection, method in class:AssetProvider
  /developers/samples/android/content/ShareActionProvider/Application/src/main/java/com/example/android/shareactionprovider/content/
AssetProvider.java 64 public Cursor query(@NonNull Uri uri, String[] projection, String selection, method in class:AssetProvider
67 // Do not support query requests.
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherDataProvider.java 83 public synchronized Cursor query(Uri uri, String[] projection, String selection, method in class:WeatherDataProvider
87 // In this sample, we only query without any parameters, so we can just return a cursor to
  /developers/samples/android/content/contacts/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
MainActivity.java 28 * and uses it as a query to search the contacts database via the Contactables
34 public static final String QUERY_KEY = "query";
61 // SearchManager.QUERY is the key that a SearchManager will use to send a query string
63 String query = intent.getStringExtra(SearchManager.QUERY); local
65 // We need to create a bundle containing the query string to send along to the
68 bundle.putString(QUERY_KEY, query);
72 // Start the loader with the new query, and an object that will handle all callbacks.
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 88 public synchronized Cursor query(Uri uri, String[] projection, String selection, method in class:WeatherDataProvider
92 // In this sample, we only query without any parameters, so we can just return a cursor to
  /development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/
MainActivity.java 28 * and uses it as a query to search the contacts database via the Contactables
34 public static final String QUERY_KEY = "query";
61 // SearchManager.QUERY is the key that a SearchManager will use to send a query string
63 String query = intent.getStringExtra(SearchManager.QUERY); local
65 // We need to create a bundle containing the query string to send along to the
68 bundle.putString(QUERY_KEY, query);
72 // Start the loader with the new query, and an object that will handle all callbacks.
  /development/samples/browseable/ShareActionProvider/src/com.example.android.shareactionprovider/content/
AssetProvider.java 64 public Cursor query(@NonNull Uri uri, String[] projection, String selection, method in class:AssetProvider
67 // Do not support query requests.

Completed in 4062 milliseconds

1 2 34 5 6 7 8 91011>>