/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteProgramTest.java | 124 cursor = mDatabase.query("test", new String[]{"text1"}, "where text1='a'", 135 cursor = mDatabase.query("test", new String[]{"text1"}, "where text1='a'", 178 Cursor cursor = mDatabase.query("test", new String[] { "text1", "text2", "num1", "image" }, 215 Cursor cursor = mDatabase.query("test", new String[] { "text1", "text2", "num1", "image" },
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Gallery2.java | 39 Cursor c = getContentResolver().query(Contacts.CONTENT_URI,
|
List3.java | 40 Cursor c = getContentResolver().query(Phone.CONTENT_URI,
|
SearchViewFilterMode.java | 75 public boolean onQueryTextSubmit(String query) {
|
/development/tools/emulator/system/camera/ |
QemuClient.h | 30 * Qemu query 33 /* Encapsulates a query to the emulator. 36 * 'frame' query where reply is a framebuffer). 37 * Each query is formatted as such: 39 * "<query name>[ <parameters>]", 41 * where <query name> is a string representing query name, and <parameters> are 42 * optional parameters for the query. If parameters are present, they must be 43 * separated from the query name with a single space, and they must be formatted 55 * There are certain restrictions on strings used in the query [all...] |
/external/bluetooth/glib/ |
glib-zip.in | 43 bin/gobject-query.exe 74 share/man/man1/gobject-query.1
|
/external/chromium/chrome/browser/history/ |
text_database.h | 55 // Computes the matches for the query, returning results in decreasing order 123 // Executes the given query. See QueryOptions for more info on input. 134 // QueryParser to this method as the query string. 135 void GetTextMatches(const std::string& query,
|
/external/chromium/chrome/browser/ui/webui/ |
history2_ui.h | 73 string16* query); 75 // Figure out the query options for a month-wide query.
|
history_ui.h | 69 string16* query); 71 // Figure out the query options for a month-wide query.
|
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/ |
screenshot.js | 2 // query param to the url that displays the screenshot. 28 // screenshot includes a query parameter with a unique id, which
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/ |
__init__.py | 183 scheme, netloc, path, params, query, fragment = parts[:6] 184 if query: 185 query = '%s&oauth_verifier=%s' % (query, self.verifier) 187 query = 'oauth_verifier=%s' % self.verifier 189 query, fragment)) 281 scheme, netloc, path, params, query, fragment = urlparse.urlparse(value) 291 # Normalized URL excludes params, query, and fragment. 334 query = base_url.query [all...] |
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
xmpptask.h | 106 static XmlElement *MakeIqResult(const XmlElement* query);
|
/external/libxml2/include/libxml/ |
uri.h | 27 * Note: query is a deprecated field which is incorrectly unescaped. 28 * query_raw takes precedence over query if the former is set. 41 char *query; /* the query string (deprecated - use with caution) */ member in struct:_xmlURI 44 char *query_raw; /* the query string (as it appears in the URI) */
|
/external/opencv/cvaux/include/ |
cvaux.hpp | 114 float query( int* bin ) const function in class:CvCamShiftTracker
|
/external/svox/pico/src/com/svox/pico/providers/ |
SettingsProvider.java | 81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
method in class:SettingsProvider
|
/external/webkit/Source/WebCore/css/ |
MediaQueryMatcher.h | 38 // whenever it is needed and to call the listeners if the corresponding query has changed. 65 MediaQueryList* query() { return m_query.get(); } function in class:WebCore::MediaQueryMatcher::Listener 81 // that a media query result change is notified exactly once.
|
/external/webkit/Source/WebCore/inspector/ |
InspectorDatabaseAgent.h | 67 void executeSQL(ErrorString*, int databaseId, const String& query, bool* success, int* transactionId);
|
/external/webkit/Source/WebCore/inspector/front-end/ |
InspectorFrontendHostStub.js | 80 search: function(sourceRow, query)
|
/external/webkit/Source/WebCore/platform/sql/ |
SQLiteStatement.h | 60 // prepares, steps, and finalizes the query. 94 const String& query() const { return m_query; } function in class:WebCore::SQLiteStatement
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListManagedCursor.java | 39 Cursor c = getContentResolver().query(Settings.System.CONTENT_URI, null, null, null, null);
|
/frameworks/base/include/gui/ |
ISurfaceTexture.h | 97 // query retrieves some information for this surface 99 virtual int query(int what, int* value) = 0;
|
/frameworks/base/include/ui/ |
FramebufferNativeWindow.h | 73 static int query(const ANativeWindow* window, int what, int* value);
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastDatabase.java | 88 * Query for list view adapter. 147 return db.query(false, TABLE_NAME, Columns.QUERY_COLUMNS,
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
JoinContactLoader.java | 59 // First execute the suggestions query, then call super.loadInBackground 63 // In case we only need suggestions, send "0" as the search query, which 76 Cursor cursor = getContext().getContentResolver().query(mSuggestionUri, mProjection,
|
ProfileAndContactsLoader.java | 31 * A loader for use in the default contact list, which will also query for the user's profile 74 Cursor cursor = getContext().getContentResolver().query(Profile.CONTENT_URI, mProjection,
|