/frameworks/support/v4/java/android/support/v4/content/ |
CursorLoader.java | 97 public CursorLoader(Context context, Uri uri, String[] projection, String selection, 103 mSelection = selection; 174 public void setSelection(String selection) { 175 mSelection = selection;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
XmlEditorMultiOutline.java | 166 public void setSelection(ISelection selection) { 167 mSelection = selection; 169 SelectionChangedEvent e = new SelectionChangedEvent(this, selection); 218 public void setSelection(ISelection selection) {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
DOMExtension.js | 278 var selection = window.getSelection(); 279 if (!selection.rangeCount || !selection.isCollapsed) 281 var selectionRange = selection.getRangeAt(0); 454 var selection = this.ownerDocument.defaultView.getSelection(); 455 selection.removeAllRanges(); 459 selection.addRange(range); 465 // Calculate selection offset relative to the current element. 467 var selection = window.getSelection(); 468 if (!selection.containsNode(this, true) [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppProvider.java | 303 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 355 sb.append("selection is "); 356 sb.append(selection); 377 Cursor ret = qb.query(db, projection, selection, selectionArgs, null, null, sortOrder); 390 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { 401 if (selection != null) { 403 myWhere = "( " + selection + " )"; 405 myWhere = "( " + selection + " ) AND "; 434 public int delete(Uri uri, String selection, String[] selectionArgs) { 442 if (selection != null) [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
TelephonyProviderTest.java | 87 String selection = Carriers.CURRENT + " IS NOT NULL"; local 90 APN_PROJECTION, selection, selectionArgs, null);
|
/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_context_menu.cc | 25 const std::vector<const BookmarkNode*>& selection) 28 this, profile, page_navigator, parent, selection))),
|
/external/chromium-trace/trace-viewer/src/tracing/analysis/ |
analysis_results.css | 41 .selection-changing-link {
|
/external/chromium_org/chrome/browser/ui/gtk/bookmarks/ |
bookmark_utils_gtk_unittest.cc | 51 std::string selection(reinterpret_cast<char*>(data.data), data.length); 52 EXPECT_EQ("<a href=\"http://www.google.com/\">Google</a>", selection);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
DeleteSelectionCommand.h | 41 static PassRefPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false, bool sanitizeMarkup = true) 43 return adoptRef(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements, sanitizeMarkup));
|
EditCommand.cpp | 43 setStartingSelection(m_document->frame()->selection().selection());
|
/external/chromium_org/third_party/angle/src/compiler/timing/ |
RestrictFragmentShaderTiming.cpp | 109 void RestrictFragmentShaderTiming::visitSelection(TGraphSelection* selection) 111 beginError(selection->getIntermSelection());
|
/external/chromium_org/ui/gfx/ |
render_text_mac.h | 22 // but not text selection or cursor movement. 38 const SelectionModel& selection, 41 const SelectionModel& selection,
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowContentProviderOperationBuilder.java | 32 public Builder withSelection(String selection, String[] selectionArgs) { 33 shadowContentProviderOperation.getSelections().put(selection, selectionArgs);
|
/frameworks/base/core/java/android/content/ |
ContentProviderClient.java | 112 public Cursor query(Uri url, String[] projection, String selection, 114 return query(url, projection, selection, selectionArgs, sortOrder, null); 118 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, 128 return mContentProvider.query(mPackageName, url, projection, selection, selectionArgs, 231 public int delete(Uri url, String selection, String[] selectionArgs) 235 return mContentProvider.delete(mPackageName, url, selection, selectionArgs); 247 public int update(Uri url, ContentValues values, String selection, 251 return mContentProvider.update(mPackageName, url, values, selection, selectionArgs);
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
SnoozeAlarmsService.java | 72 String selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED + " AND " + local 76 resolver.update(uri, dismissValues, selection, null);
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
LocalSource.java | 131 String selection = MediaStore.Images.Media.BUCKET_ID + " = '" + data.albumId + "'"; local 133 data.cursor = mResolver.query(data.uri, projection, selection, null, null); 193 String selection = ""; local 198 if (selection.length() > 0) { 199 selection += " OR "; 201 selection += MediaStore.Images.Media.BUCKET_ID + " = '" + parts[1] + "'"; 205 if (selection.isEmpty()) { 208 Cursor cursor = mResolver.query(uri, projection, selection, null, null);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
CreateAssetSetWizard.java | 217 final TreeSelection selection = new TreeSelection(paths); local 219 provider.setSelection(selection); 229 provider.setSelection(selection); 243 public void init(IWorkbench workbench, IStructuredSelection selection) { 246 mInitialProject = guessProject(selection); 250 private IProject guessProject(IStructuredSelection selection) { 251 if (selection == null) { 255 for (Object element : selection.toList()) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
ImportProjectWizard.java | 60 public void init(IWorkbench workbench, IStructuredSelection selection) { 61 mSelection = selection;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
DefaultContactListAdapter.java | 146 StringBuilder selection = new StringBuilder(); local 161 selection.append(Contacts.STARRED + "!=0"); 165 selection.append(Contacts.HAS_PHONE_NUMBER + "=1"); 169 selection.append(Contacts.IN_VISIBLE_GROUP + "=1"); 171 selection.append(" AND " + Contacts.HAS_PHONE_NUMBER + "=1"); 176 // We use query parameters for account filter, so no selection to add here. 180 loader.setSelection(selection.toString());
|
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
MockProvider.java | 47 * query() does not allow non-null selection, selectionArgs, or sortOrder arguments; the 52 * delete() and update() do not allow non-null selection or selectionArgs arguments; the 100 public int delete(Uri uri, String selection, String[] selectionArgs) { 101 if (selection != null || selectionArgs != null) { 142 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 144 if (selection != null || selectionArgs != null || sortOrder != null || projection == null) { 181 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) { 182 if (selection != null || selectionArgs != null) {
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/ |
TestProvider.java | 50 * query() does not allow non-null selection, selectionArgs, or sortOrder arguments; the 54 * delete() and update() do not allow non-null selection or selectionArgs arguments; the presence 100 public int delete(Uri uri, String selection, String[] selectionArgs) { 101 if (selection != null || selectionArgs != null) { 142 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 144 if (selection != null || selectionArgs != null || sortOrder != null || projection == null) { 181 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) { 182 if (selection != null || selectionArgs != null) {
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
AbstractContactsProvider.java | 148 public int delete(Uri uri, String selection, String[] selectionArgs) { 151 int deleted = deleteInTransaction(uri, selection, selectionArgs); 163 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { 166 int updated = updateInTransaction(uri, values, selection, selectionArgs); 307 protected abstract int deleteInTransaction(Uri uri, String selection, String[] selectionArgs); 309 protected abstract int updateInTransaction(Uri uri, ContentValues values, String selection,
|
FastScrollingIndexCache.java | 121 private static String buildCacheKey(Uri queryUri, String selection, String[] selectionArgs, 127 appendIfNotNull(sb, selection); 198 public Bundle get(Uri queryUri, String selection, String[] selectionArgs, String sortOrder, 202 final String key = buildCacheKey(queryUri, selection, selectionArgs, sortOrder, 230 public void put(Uri queryUri, String selection, String[] selectionArgs, String sortOrder, 234 final String key = buildCacheKey(queryUri, selection, selectionArgs, sortOrder,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
PlayAnimationMenu.java | 53 * run on the selection 90 List<SelectionItem> selection = selectionManager.getSelections(); local 91 if (selection.size() != 1) { 145 List<SelectionItem> selection = selectionManager.getSelections(); local 146 SelectionItem canvasSelection = selection.get(0); 240 IStructuredSelection selection = new StructuredSelection(pair); local 241 wizard.init(workbench, selection);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/ |
ImageCanvas.java | 169 int selection = mHorizontalScrollBar.getSelection(); local 170 int destX = -selection - mOrigin.x; 173 mOrigin.x = -selection; 181 int selection = mVerticalScrollBar.getSelection(); local 182 int destY = -selection - mOrigin.y; 185 mOrigin.y = -selection;
|