/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastContentProvider.java | 84 * @param selection the selection criteria to apply when filtering rows, or null. 85 * @param selectionArgs values to replace ?s in selection string. 91 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 120 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, orderBy); 163 * @param selection an optional restriction to apply to rows when deleting. 167 public int delete(Uri uri, String selection, String[] selectionArgs) { 176 * @param selection an optional filter to match rows to update. 180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
AccountWithDataSet.java | 96 final String selection; local 99 selection = BASE_SELECTION + " AND " + RawContacts.DATA_SET + " IS NULL"; 102 selection = BASE_SELECTION + " AND " + RawContacts.DATA_SET + " = ?"; 107 ID_PROJECTION, selection, args, null);
|
/packages/apps/Email/tests/src/com/android/email/ |
DBTestHelper.java | 93 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 97 mPassedSelection = selection; 104 public int delete(Uri uri, String selection, String[] selectionArgs) { 124 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
/packages/apps/Nfc/nci/jni/ |
RouteDataSet.h | 206 ** selection: which database. 211 Database* getDatabase (DatabaseSelection selection);
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
SearchRecentSuggestionsProvider.java | 153 public int delete(Uri uri, String selection, String[] selectionArgs) { 164 count = db.delete(sSuggestions, selection, selectionArgs); 287 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 318 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsProvider.java | 75 String selection, String[] selectionArgs, String sortOrder) { 209 Cursor ret = qb.query(db, projection, selection, 534 public int delete(Uri uri, String selection, 589 String finalSelection = concatSelections(selection, extraSelection); 611 String selection, String[] selectionArgs, Uri uri) { 613 selection, selectionArgs, null, null, null); 631 int count = db.delete(TABLE_PDU, selection, selectionArgs); 643 private static int deleteParts(SQLiteDatabase db, String selection, 645 return deleteDataRows(db, TABLE_PART, selection, selectionArgs); 648 private static int deleteTempDrmData(SQLiteDatabase db, String selection, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/ |
AvdManagerAction.java | 70 public void selectionChanged(IAction action, ISelection selection) { 71 // nothing related to the current selection.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
RunLintAction.java | 66 public void selectionChanged(IAction action, ISelection selection) { 67 mSelection = selection; 80 static List<IProject> getProjects(ISelection selection, boolean warn) { 81 List<IProject> projects = AdtUtils.getSelectedProjects(selection);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
TestTargetPage.java | 111 // No initial selection: force the user to choose 136 // in the list, even when the selection is explicitly set to an empty 137 // array. This means the user is looking at a selection, so we need 140 // selection. 170 // pass itself as the selection event, it passes a reference to some internal 182 Object[] selection = mProjectList.getSelection(); local 183 IProject project = selection != null && selection.length == 1 184 ? ((IJavaProject) selection[0]).getProject() : null; 265 // Ensure that the user sees the page and makes a selection [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/actions/ |
SdkManagerAction.java | 69 public void selectionChanged(IAction action, ISelection selection) {
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
AdapterViewICS.java | 97 * Indicates whether to sync based on the selection or position. Possible 373 * @param parent The AdapterView where the selection happened 381 * Callback method to be invoked when the selection disappears from this 382 * view. The selection can disappear for instance when touch is activated 576 int selection = getSelectedItemPosition(); local 577 if (adapter != null && adapter.getCount() > 0 && selection >= 0) { 578 return adapter.getItem(selection); 884 // we fire selection events here not in View 894 int selection = this.getSelectedItemPosition(); local 895 if (selection >= 0) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
FileDialog.py | 1 """File selection dialog classes. 23 """Standard file selection dialog -- no checks on selected file. 40 behavior of the Macintosh file selection dialogs.) 44 title = "File Selection Dialog" 58 self.selection = Entry(self.top) 59 self.selection.pack(side=BOTTOM, fill=X) 60 self.selection.bind('<Return>', self.ok_event) 121 self.selection.focus_set() 196 file = self.selection.get() 216 self.selection.delete(0, END [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
FileDialog.py | 1 """File selection dialog classes. 23 """Standard file selection dialog -- no checks on selected file. 40 behavior of the Macintosh file selection dialogs.) 44 title = "File Selection Dialog" 58 self.selection = Entry(self.top) 59 self.selection.pack(side=BOTTOM, fill=X) 60 self.selection.bind('<Return>', self.ok_event) 121 self.selection.focus_set() 196 file = self.selection.get() 216 self.selection.delete(0, END [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
ReferenceChooserDialog.java | 115 // get the selection 138 // setup the initial selection 226 * @return the <code>TreePath</code> object or <code>null</code> if there was no selection. 229 ISelection selection = mFilteredTree.getViewer().getSelection(); local 230 if (selection instanceof TreeSelection) { 231 TreeSelection treeSelection = (TreeSelection)selection; 234 // the selection mode is SWT.SINGLE, so we just get the first one. 269 * Updates the new res button when the list selection changes. 324 TreePath selection = getSelection(); local 325 if (selection != null && selection.getSegmentCount() > 0) [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/css/ |
wallpaper_manager.css | 309 #wallpaper-selection-container #content div { 313 #wallpaper-selection-container #warning span { 317 #wallpaper-selection-container select { 321 #wallpaper-selection-container input[type='file']::-webkit-file-upload-button { 325 #wallpaper-selection-container .remember-icon {
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTextFormControlElement.cpp | 313 frame->selection().setSelection(newSelection); 356 return indexForVisiblePosition(frame->selection().start()); 375 return indexForVisiblePosition(frame->selection().end()); 414 const VisibleSelection& selection = frame->selection().selection(); local 415 return selection.isDirectional() ? (selection.isBaseFirst() ? SelectionHasForwardDirection : SelectionHasBackwardDirection) : SelectionHasNoDirection; 429 PassRefPtr<Range> HTMLTextFormControlElement::selection() const function in class:WebCore::HTMLTextFormControlElement 480 // selectionStart() or selectionEnd() will return cached selection when this node doesn't have focu [all...] |
/external/chromium/chrome/browser/renderer_host/ |
gtk_im_context_wrapper.cc | 464 composition_.selection.start(), 465 composition_.selection.end()); 532 // TODO(suzhe): due to a bug of webkit, we currently can't use selection range 534 composition_.selection = ui::Range(cursor_position); 554 composition_.text, underlines, composition_.selection.start(), 555 composition_.selection.end());
|
/external/chromium_org/ui/gfx/ |
render_text.h | 63 void DrawSelection(const std::vector<Rect>& selection, SkColor color); 152 // visual layout. Support is built in for a cursor, a selection, simple styling, 245 const Range& selection() const { return selection_model_.selection(); } function in class:gfx::RenderText 252 // If |select| is false, the selection start is moved to the same position. 257 // Set the selection_model_ to the value of |selection|. 258 // The selection range is clamped to text().length() if out of range. 259 // Returns true if the cursor position or selection range changed. 265 // If |select| is false, the selection start is moved to the same position. 266 // Returns true if the cursor position or selection range changed [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
CallerInfoAsyncQuery.java | 347 String selection; local 371 selection = "upper(" + Data.DATA1 + ")=?" 379 selection = null; 385 Rlog.d(LOG_TAG, "==> selection: " + selection); 415 selection, // selection
|
/packages/apps/Calendar/src/com/android/calendar/ |
AsyncQueryServiceHelper.java | 59 public String selection; field in class:AsyncQueryServiceHelper.OperationInfo 123 builder.append(",\n\t selection= "); 124 builder.append(selection); 287 cursor = resolver.query(args.uri, args.projection, args.selection, 310 args.result = resolver.update(args.uri, args.values, args.selection, 316 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);
|
/packages/apps/InCallUI/src/com/android/incallui/ |
CallerInfoAsyncQuery.java | 343 String selection; local 367 selection = "upper(" + Data.DATA1 + ")=?" 375 selection = null; 381 Log.d(LOG_TAG, "==> selection: " + selection); 411 selection, // selection
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
GlobalSearchSupport.java | 190 String selection = null; local 193 cursor, db, projection, selection, searchClause, limit, cancellationSignal); 225 String[] projection, String selection, String filter, String limit, 247 if (selection != null) { 248 sb.append(" WHERE ").append(selection);
|
ContactsProvider2.java | 3119 String selection = null; local 4306 final String selection = RawContactsColumns.CONCRETE_ID + " = ?"; local 7796 final String selection = Contacts._ID + " IN " + inBuilder.toString(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
OutlinePage.java | 134 * It sets itself as a listener on the site's selection service in order to be 135 * notified of the canvas' selection changes. 136 * The underlying page is also a selection provider (via IContentOutlinePage) 137 * and as such it will broadcast selection changes to the site's selection service 442 // Front properties panel; its selection is already linked 451 TreeItem[] selection = getTreeViewer().getTree().getSelection(); 452 if (selection.length > 0) { 453 CanvasViewInfo vi = getViewInfo(selection[0].getData()); 464 // Listen to selection changes from the layout edito 1201 TreeItem[] selection = getTreeViewer().getTree().getSelection(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
JavaScriptSourceFrame.js | 88 var textSelection = this.textEditor.selection(); 106 var selection = this.textEditor.selection(); 107 if (!selection || selection.isEmpty()) 109 WebInspector.evaluateInConsole(this.textEditor.copyRange(selection)); 153 var textSelection = this.textEditor.selection(); 155 var selection = this.textEditor.copyRange(textSelection); 157 contextMenu.appendItem(addToWatchLabel, this._innerAddToWatch.bind(this, selection)); 159 contextMenu.appendItem(evaluateLabel, WebInspector.evaluateInConsole.bind(WebInspector, selection)); [all...] |