/external/chromium_org/chrome/browser/ui/gtk/omnibox/ |
omnibox_view_gtk.cc | 120 // Copied from GTK+. Called when we lose the primary selection. This will clear 121 // the selection in the text buffer. 427 // If any text has been selected, register it as the PRIMARY selection so it 446 // Move the marks for the cursor and the other end of the selection to the 532 CharRange selection = GetSelection(); local 533 *start = static_cast<size_t>(selection.cp_min); 534 *end = static_cast<size_t>(selection.cp_max); 540 // PRIMARY selection here. 549 // Don't inline autocomplete when the caret/selection isn't at the end of 632 // PRIMARY selection from being changed 1570 CharRange selection = GetSelection(); local 1874 const CharRange selection = GetSelection(); local [all...] |
/frameworks/base/core/java/android/content/ |
ContentProviderNative.java | 95 // String selection, String[] selectionArgs... 96 String selection = data.readString(); local 112 Cursor cursor = query(callingPkg, url, projection, selection, selectionArgs, 196 String selection = data.readString(); local 199 int count = delete(callingPkg, url, selection, selectionArgs); 212 String selection = data.readString(); local 215 int count = update(callingPkg, url, values, selection, selectionArgs); 378 public Cursor query(String callingPkg, Uri url, String[] projection, String selection, 397 data.writeString(selection); 522 public int delete(String callingPkg, Uri url, String selection, String[] selectionArgs [all...] |
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PicasaSource.java | 108 String selection = PICASA_ALBUM_ID + " = '" + data.albumId + "'"; local 115 projection, selection, null, null); 193 StringBuilder selection = new StringBuilder(); local 197 if (selection.length() > 0) { 198 selection.append(" OR "); 201 selection.append(PICASA_ALBUM_ID + " = '" + albumId + "'"); 208 if (selection.length() == 0) { 212 log(TAG, "selection is (" + selection.length() + "): " + selection.toString()) 291 String selection = (PICASA_ALBUM_USER + " = '" + parts[2] + "' AND " + local [all...] |
/development/samples/Spinner/src/com/android/example/spinner/ |
SpinnerActivity.java | 57 * selection when the activity is not loaded. 74 * The key or label for "selection" in the preferences file 76 public static final String SELECTION_KEY = "Selection"; 88 * 3) Instantiates a callback listener for handling selection from the 140 * The test will fail because the selection listener for the 187 * @param pos - the 0-based position of the selection in the mLocalAdapter 188 * @param row - the 0-based row number of the selection in the View 371 public void setSpinnerSelection(String selection) { 372 this.mSelection = selection;
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
list_selection_controller.js | 7 * Creates a selection controller that is to be used with lists. This is 13 * @param {cr.ui.ListSelectionModel} selectionModel The selection model to 26 * The selection model we are interacting with. 55 * by default but override this for icon view and horizontal selection 67 * by default but override this for icon view and horizontal selection 127 // On Mac we always clear the selection if the user clicks a blank area. 128 // On Windows, we only clear the selection if neither Shift nor Ctrl are 142 // Selection is handled at mouseUp on windows/linux, mouseDown on mac. 160 // Right click for a context menu needs to not clear the selection.
|
/external/chromium-trace/trace-viewer/src/tracing/ |
timeline_view.js | 9 * tracing.Timeline component and adds in selection summary and control buttons. 265 // Do things that are selection specific 356 var selection = this.timeline_ ? 357 this.timeline_.selection : 358 new tracing.Selection(); 359 this.analysisEl_.selection = selection; 364 this.timeline_.selection = e.selection;
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/ |
list_selection_controller.js | 7 * Creates a selection controller that is to be used with lists. This is 13 * @param {cr.ui.ListSelectionModel} selectionModel The selection model to 26 * The selection model we are interacting with. 55 * by default but override this for icon view and horizontal selection 67 * by default but override this for icon view and horizontal selection 127 // On Mac we always clear the selection if the user clicks a blank area. 128 // On Windows, we only clear the selection if neither Shift nor Ctrl are 142 // Selection is handled at mouseUp on windows/linux, mouseDown on mac. 160 // Right click for a context menu needs to not clear the selection.
|
/external/chromium_org/third_party/WebKit/Source/web/ |
PopupListBox.h | 58 // Whether the selection should be accepted when the popup menu is 60 // Note that when TAB is pressed, the selection is always accepted 64 // Whether we should move the selection to the first/last item when 152 // Moves selection down/up the given number of items, scrolling if necessary. 199 // Returns true if the selection can be changed to index. 211 // Clears the selection (so no row appears selected). 239 // Moves the selection down/up one item, taking care of looping back to the 253 // selection by clicking or pressing enter yet however. 258 // selection to change immediately, and is only used if the settings
|
/external/chromium_org/third_party/ots/src/ |
os2.cc | 106 !table.ReadU16(&os2->selection) || 118 if (os2->selection & 0x40) { 119 os2->selection &= 0xffdeu; 127 if ((os2->selection & 0x1) && 132 if ((os2->selection & 0x2) && 140 if ((os2->selection & 0x40) && 147 (os2->selection & 0x300)) { 153 os2->selection &= 0x3ff; 251 !out->WriteU16(os2->selection) ||
|
/frameworks/base/core/java/android/widget/ |
RadioGroup.java | 39 * <p>The selection is identified by the unique id of the radio button as defined 55 // holds the checked id; the selection is empty by default 145 * <p>Sets the selection to the radio button whose identifier is passed in 146 * parameter. Using -1 as the selection identifier clears the selection; 187 * Upon empty selection, the returned value is -1.</p> 201 * <p>Clears the selection. When the selection is cleared, no radio button 336 * selection is cleared, checkedId is -1.</p>
|
/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/UnifiedEmail/src/com/android/mail/ui/ |
ConversationSelectionSet.java | 40 * selection set (e.g. in a conversation list). This class dispatches changes 119 * Returns true if the given key exists in the conversation selection set. This assumes 131 * Returns true if the given conversation is stored in the selection set. 174 * @return true if the conversation selection set is empty. False otherwise. 244 * Toggles the existence of the given conversation in the selection set. If the conversation is 245 * currently selected, it is deselected. If it doesn't exist in the selection set, then it is 274 * Puts all conversations given in the input argument into the selection set. If there are 275 * any listeners they are notified once after adding <em>all</em> conversations to the selection 344 // conversations that had been in the batch selection, with the items we know have been
|
/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...] |
/developers/build/prebuilts/gradle/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/basiccontactables/ |
ContactablesLoaderCallbacks.java | 63 String selection = local 73 selection, // selection - Which rows to return (condition rows must match) 74 null, // selection args - can be provided separately and subbed into selection.
|
/developers/samples/android/content/contacts/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/basiccontactables/ |
ContactablesLoaderCallbacks.java | 63 String selection = local 73 selection, // selection - Which rows to return (condition rows must match) 74 null, // selection args - can be provided separately and subbed into selection.
|
/development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/ |
ContactablesLoaderCallbacks.java | 63 String selection = local 73 selection, // selection - Which rows to return (condition rows must match) 74 null, // selection args - can be provided separately and subbed into selection.
|
/device/lge/mako/ |
WCNSS_qcom_cfg.ini | 153 # SAP auto channel selection configuration 154 # 0 = disable auto channel selection 155 # 1 = enable auto channel selection, channel provided by supplicant will be ignored 193 #SOFTAP Channel Range selection 197 #SOFTAP Channel Range selection Operating band
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_popup_model.h | 60 // |reset_to_default| is true when the selection is being reset back to the 87 // current selection down (|count| > 0) or up (|count| < 0), clamping to the 88 // first or last result if necessary. If |count| == 0, the selection will be 102 const AutocompleteResult::Selection& manually_selected_match() const { 131 AutocompleteResult::Selection manually_selected_match_;
|
/external/chromium/chrome/browser/tabs/ |
tab_strip_model_observer.h | 64 // Sent when the selection changes. The previously selected tab is identified 66 // the index of |new_contents|. When using multiple selection this may be sent 67 // even when the active tab has not changed. For example, if the selection is 68 // extended this method is invoked to inform observers the selection has 78 // selection.
|
/external/chromium-trace/trace-viewer/src/cc/ |
picture_ops_list_view.js | 10 base.require('cc.selection'); 39 'selection-changed', this.onSelectionChanged_.bind(this)); 100 // Deselect on re-selection. 109 // Set selection on all previous ops. 123 base.dispatchSimpleEvent(this, 'selection-changed', false);
|
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/ |
omnibox_view_mac.h | 131 // the selection to |range|. Otherwise does nothing. 142 // Update the field with |display_text| and set the selection. 147 // any selection. Named to be consistent with GTK and Windows, 168 // Selection at the point where the user started using the 181 // Was the delete key pressed with an empty selection at the end of the edit?
|
/external/chromium_org/chrome/browser/ui/tabs/ |
tab_strip_model_observer.h | 87 // Note: It is possible for the selection to change while the active tab 89 // but does change the selection. In this case |ActiveTabChanged| is not sent. 90 // If you care about any changes to the selection, override 99 // Sent when the selection changes in |tab_strip_model|. More precisely when 101 // of the selection model before the change. See also ActiveTabChanged for
|
/external/chromium_org/ui/views/controls/combobox/ |
combobox.h | 63 // Sets the listener which will be called when a selection has been made. 86 // Callers are responsible for restoring validity with selection changes. 143 // Called when the selection is changed by the user. 164 // The current selected index; -1 and means no selection. 167 // True when the selection is visually denoted as invalid.
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/ |
SQLite.java | 109 * @param selection SQL where clause fragment 110 * @param selectionArgs Array of substitutions for args in selection 113 public static String buildWhereClause(String selection, String[] selectionArgs) throws SQLiteException { 114 String whereClause = selection; 118 for (char c : selection.toCharArray()) {
|
/frameworks/base/core/java/android/view/inputmethod/ |
InputMethodSession.java | 45 * This method is called when the selection or cursor in the current 48 * @param oldSelStart The previous text offset of the cursor selection 50 * @param oldSelEnd The previous text offset of the cursor selection 52 * @param newSelStart The new text offset of the cursor selection 54 * @param newSelEnd The new text offset of the cursor selection
|