HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 101 - 125 of 836) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreTest.java 63 String selection = MediaStore.MEDIA_SCANNER_VOLUME + "=?"; local
68 selection, selectionArgs, null));
77 selection, selectionArgs, null);
  /cts/tests/tests/webkit/src/android/webkit/cts/
MockContentProvider.java 46 public int delete(Uri uri, String selection, String[] selectionArgs) {
61 public Cursor query(Uri uri, String[] projection, String selection,
67 public int update(Uri uri, ContentValues values, String selection,
  /developers/samples/android/common/src/java/com/example/android/common/assetprovider/
AssetProvider.java 119 public Cursor query(Uri uri, String[] projection, String selection,
132 public int delete(Uri uri, String selection, String[] selectionArgs) {
137 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /external/chromium/chrome/browser/ui/gtk/
collected_cookies_gtk.h 44 // True if the selection contains at least one origin node.
45 bool SelectionContainsOriginNode(GtkTreeSelection* selection,
51 // Add exceptions for all origin nodes within the selection.
52 void AddExceptions(GtkTreeSelection* selection,
67 void ShowSelectionInfo(GtkTreeSelection* selection,
  /external/chromium_org/chrome/browser/ui/gtk/
collected_cookies_gtk.h 43 // True if the selection contains at least one host node.
44 bool SelectionContainsHostNode(GtkTreeSelection* selection,
50 // Add exceptions for all origin nodes within the selection.
51 void AddExceptions(GtkTreeSelection* selection,
66 void ShowSelectionInfo(GtkTreeSelection* selection,
  /external/chromium_org/third_party/angle/src/compiler/depgraph/
DependencyGraph.cpp 69 TGraphSelection* selection = new TGraphSelection(intermSelection); local
70 mAllNodes.push_back(selection);
71 return selection;
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 27 * Helper for building selection clauses for {@link SQLiteDatabase}. Each
47 * Append the given selection clause to the internal state. Each clause is
50 public SelectionBuilder append(String selection, Object... selectionArgs) {
51 if (TextUtils.isEmpty(selection)) {
54 "Valid selection required when including arguments");
65 mSelection.append("(").append(selection).append(")");
78 * Return selection string for current internal state.
87 * Return selection arguments for current internal state.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchShortcut.java 45 public void launch(ISelection selection, String mode) {
46 if (selection instanceof IStructuredSelection) {
49 IStructuredSelection structSelect = (IStructuredSelection)selection;
84 // since we force the shortcut to only work on selection in the
  /external/chromium_org/ppapi/cpp/dev/
ime_input_event_dev.h 52 /// @param[in] selection The range returned by <code>GetSelection</code>.
59 const std::pair<uint32_t, uint32_t>& selection);
100 /// @return A pair of integers indicating the selection range.
  /external/chromium_org/third_party/angle/src/compiler/timing/
RestrictFragmentShaderTiming.h 24 virtual void visitSelection(TGraphSelection* selection);
  /frameworks/base/test-runner/src/android/test/mock/
MockIContentProvider.java 49 public int delete(String callingPackage, Uri url, String selection, String[] selectionArgs)
79 public Cursor query(String callingPackage, Uri url, String[] projection, String selection,
85 public EntityIterator queryEntities(Uri url, String selection, String[] selectionArgs,
90 public int update(String callingPackage, Uri url, ContentValues values, String selection,
MockContentProvider.java 69 public int delete(String callingPackage, Uri url, String selection, String[] selectionArgs)
71 return MockContentProvider.this.delete(url, selection, selectionArgs);
100 public Cursor query(String callingPackage, Uri url, String[] projection, String selection,
103 return MockContentProvider.this.query(url, projection, selection,
108 public int update(String callingPackage, Uri url, ContentValues values, String selection,
110 return MockContentProvider.this.update(url, values, selection, selectionArgs);
189 public int delete(Uri uri, String selection, String[] selectionArgs) {
209 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
215 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 117 String selection, String[] selectionArgs) {
121 .withSelection(selection, selectionArgs)
130 public void run(ContentResolver resolver, Uri uri, String selection,
134 .withSelection(selection, selectionArgs)
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SqlInjectionDetectionTest.java 98 final String selection, final String sortOrder) {
99 final Cursor c = mResolver.query(uri, projection, selection, null, sortOrder);
104 final String[] projection, final String selection, final String sortOrder) {
108 final Cursor c = mResolver.query(uri, projection, selection, null, sortOrder);
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryService.java 158 * @param selection A filter declaring which rows to return, formatted as an
161 * @param selectionArgs You may include ?s in selection, which will be
163 * they appear in the selection. The values will be bound as
170 String selection, String[] selectionArgs, String orderBy) {
180 info.selection = selection;
226 * @param selection A filter declaring which rows to update, formatted as an
229 * @param selectionArgs You may include ?s in selection, which will be
231 * they appear in the selection. The values will be bound as
238 String selection, String[] selectionArgs, long delayMillis)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
DetailsPage.java 140 public void selectionChanged(IWorkbenchPart part, ISelection selection) {
142 GLCall selectedCall = getSelectedCall((GLFunctionTraceViewer) part, selection);
150 IGLProperty selectedProperty = getSelectedProperty((StateView) part, selection);
198 private GLCall getSelectedCall(GLFunctionTraceViewer part, ISelection selection) {
203 if (!(selection instanceof TreeSelection)) {
207 Object data = ((TreeSelection) selection).getFirstElement();
215 private IGLProperty getSelectedProperty(StateView view, ISelection selection) {
216 if (!(selection instanceof IStructuredSelection)) {
220 IStructuredSelection ssel = (IStructuredSelection) selection;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 260 // When a selection is made, ask the managed form to propagate an event to
329 // Refresh the tree, preserving the selection if possible.
490 * tree selection and if it is of the appropriate type it re-creates
495 ISelection selection = mTreeViewer.getSelection();
496 if (!selection.isEmpty() && selection instanceof ITreeSelection) {
497 ArrayList<UiElementNode> selected = filterSelection((ITreeSelection) selection);
532 // Can't paste with more than one element selected (the selection is the target)
595 * This is called by the tree when a selection is made.
597 * selection
667 ISelection selection = mTreeViewer.getSelection(); local
691 ISelection selection = mTreeViewer.getSelection(); local
705 ISelection selection = mTreeViewer.getSelection(); local
734 ISelection selection = mTreeViewer.getSelection(); local
    [all...]
  /external/chromium_org/content/browser/web_contents/
touch_editable_impl_aura_browsertest.cc 165 // Tap inside selection to bring up selection handles.
171 std::string selection; local
172 value->GetAsString(&selection);
174 // Check if selection handles are showing.
176 EXPECT_STREQ("Some text we can select", selection.c_str());
178 // Lets move the handles a bit to modify the selection
189 value->GetAsString(&selection);
191 // It is hard to tell what exactly the selection would be now. But it would
193 EXPECT_GT(std::strlen("Some text we can select"), selection.size())
234 std::string selection; local
277 std::string selection; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 181 String selection = BluetoothPbapObexServer.createSelectionPara(type); local
185 callCursor = mResolver.query(myUri, null, selection, null,
200 String selection = BluetoothPbapObexServer.createSelectionPara(type); local
211 callCursor = mResolver.query(myUri, projection, selection, null,
367 String selection; local
369 selection = recordSelection;
371 selection = "(" + typeSelection + ") AND (" + recordSelection + ")";
374 if (V) Log.v(TAG, "Call log query selection is: " + selection);
376 return composeAndSendVCards(op, selection, vcardType21, null, false)
411 final String selection; local
432 String selection = null; local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DeletedContactUtil.java 76 String selection = DeletedContacts.CONTACT_DELETED_TIMESTAMP + ">?"; local
78 Cursor cursor = resolver.query(URI, projection, selection, args, null);
  /developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
105 .where(selection, selectionArgs);
148 public int delete(Uri uri, String selection, String[] selectionArgs) {
156 .where(selection, selectionArgs)
163 .where(selection, selectionArgs)
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
188 .where(selection, selectionArgs)
195 .where(selection, selectionArgs)
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
105 .where(selection, selectionArgs);
148 public int delete(Uri uri, String selection, String[] selectionArgs) {
156 .where(selection, selectionArgs)
163 .where(selection, selectionArgs)
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
188 .where(selection, selectionArgs)
195 .where(selection, selectionArgs)
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
105 .where(selection, selectionArgs);
148 public int delete(Uri uri, String selection, String[] selectionArgs) {
156 .where(selection, selectionArgs)
163 .where(selection, selectionArgs)
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
188 .where(selection, selectionArgs)
195 .where(selection, selectionArgs)
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_utils.h 61 // in |selection|.
62 bool HasBookmarkURLs(const std::vector<const BookmarkNode*>& selection);
65 // in |selection| with incognito mode.
67 const std::vector<const BookmarkNode*>& selection,
  /external/chromium_org/ui/gfx/
render_text_pango.h 30 const SelectionModel& selection,
33 const SelectionModel& selection,
49 // given selection model. Return NULL if not found.
54 // The returned value represents a cursor/caret position without a selection.

Completed in 1599 milliseconds

1 2 3 45 6 7 8 91011>>