/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-trace/trace-viewer/src/tracing/analysis/ |
analysis_link.js | 10 base.require('tracing.selection'); 22 * A clickable link that requests a change of selection to the return value of 38 event.selection = this.selectionGenerator(); 44 * Changes the selection to the given ObjectSnapshot when clicked. 69 * Changes the selection to the given ObjectInstance when clicked.
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
timeline_view.css | 6 #timeline-view-selection-div { 11 #timeline-view-selection-toggle { 28 #timeline-view-selection-div ul { 33 #timeline-view-selection-div li { 79 #timeline-view-selection-div .timeline-view-hidden {
|
/external/chromium_org/chrome/browser/resources/ntp4/ |
nav_dot.css | 51 .dot .selection-bar { 88 .dot:focus .selection-bar, 89 .dot:hover .selection-bar, 90 .dot.drag-target .selection-bar { 94 .dot.selected .selection-bar {
|
/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/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/database/ |
SimpleTestCursorTest.java | 39 contentResolver.query(uri, new String[]{"projection"}, "selection", new String[]{"selection"}, "sortOrder"); 42 assertThat(cursor.selection, equalTo("selection")); 43 assertThat(cursor.selectionArgs[0], equalTo("selection"));
|
/frameworks/base/core/java/android/text/method/ |
MovementMethod.java | 25 * Provides cursor positioning, scrolling and text selection functionality in a {@link TextView}. 53 * Returns true if this movement method allows arbitrary selection 54 * of any text; false if it has no selection (like a movement method 55 * that only scrolls) or a constrained selection (for example 57 * if arbitrary selection is not allowed.
|
BaseKeyListener.java | 42 * a {@link TextView}. If there is a selection, deletes the selection; otherwise, 54 * key in a {@link TextView}. If there is a selection, deletes the selection; otherwise, 72 // If there is a current selection, delete it. 85 final int start = Selection.getSelectionEnd(content); 101 int selectionStart = Selection.getSelectionStart(content); 102 int selectionEnd = Selection.getSelectionEnd(content); 119 final int line = layout.getLineForOffset(Selection.getSelectionStart(content)); 183 int selectionStart = Selection.getSelectionStart(content) [all...] |
MultiTapKeyListener.java | 95 int a = Selection.getSelectionStart(content); 96 int b = Selection.getSelectionEnd(content); 154 // that the selection is our fault but the key has changed 155 // or the text no longer matches, so move the selection over 161 Selection.setSelection(content, selEnd, selEnd); 169 // We have a valid key. Replace the selection or insertion point 187 Selection.setSelection(content, selEnd); 196 selEnd = Selection.getSelectionEnd(content); 199 Selection.setSelection(content, oldStart, selEnd); 236 if (what == Selection.SELECTION_END) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/ |
ExportAction.java | 50 IStructuredSelection selection = (IStructuredSelection)mSelection; local 52 if (selection.size() == 1) { 53 Object element = selection.getFirstElement(); 82 public void selectionChanged(IAction action, ISelection selection) { 83 mSelection = selection;
|
OpenWizardAction.java | 110 // This code from NewWizardShortcutAction#run() gets the current window selection 111 // and converts it to a workbench structured selection for the wizard, if possible. 112 ISelection selection = mSelection; local 113 if (selection == null) { 114 selection = window.getSelectionService().getSelection(); 118 if (selection instanceof IStructuredSelection) { 119 selectionToPass = (IStructuredSelection) selection; 121 // Build the selection from the IFile of the editor 135 // Create the wizard and initialize it with the selection 172 public void selectionChanged(IAction action, ISelection selection) { [all...] |
ExportWizardAction.java | 51 IStructuredSelection selection = (IStructuredSelection)mSelection; local 54 if (selection.size() == 1) { 55 Object element = selection.getFirstElement(); 78 // call the export wizard on the current selection. 80 wizard.init(mWorkbench, selection); 91 public void selectionChanged(IAction action, ISelection selection) { 92 mSelection = selection;
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
EditorCommand.cpp | 89 // Certain operations continue to use the target control's selection even if the event handler 90 // already moved the selection outside of the text control. 136 RefPtr<EditingStyle> selectionStyle = EditingStyle::styleAtSelectionStart(frame.selection().selection()); 161 // Mac: present at the beginning of selection 162 // other: present throughout the selection 212 VisibleSelection selection = frame.selection().selection(); local 213 selection.expandUsingGranularity(granularity) 1030 RefPtr<Range> selection = frame.editor().selectedRange(); local 1079 const VisibleSelection& selection = frame.selection().selection(); local 1189 const VisibleSelection& selection = frame.editor().selectionForCommand(event); local 1208 const VisibleSelection& selection = frame.editor().selectionForCommand(event); local 1215 const VisibleSelection& selection = frame.editor().selectionForCommand(event); local 1419 const VisibleSelection& selection = frame.selection().selection(); local [all...] |
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
list_single_selection_model.js | 10 * Creates a new selection model that is to be used with lists. This only 13 * @param {number=} opt_length The number items in the selection. 75 // Select all is not allowed on a single selection model 79 * Clears the selection 101 // Only allow selection 159 * The leadIndex is used with multiple selection and it is the index that 177 * The anchorIndex is used with multiple selection. 188 * Whether the selection model supports multiple selected items. 196 * Adjusts the selection after reordering of items in the table. 203 * Adjust the selection by adding or removing a certain numbers of items [all...] |
/external/chromium-trace/trace-viewer/src/tracing/tracks/ |
object_instance_track.js | 169 loWX, hiWX, viewPixWidthWorld, selection) { 175 selection.addObjectSnapshot(that, snapshot); 191 selection.addObjectInstance(that, instance); 203 * selection. 206 * @param {Selection} selection The selection to add a hit to, 211 addItemNearToProvidedHitToSelection: function(hit, offset, selection) { 216 selection.addObjectSnapshot(this, this.objectSnapshots_[newIndex]); 223 selection.addObjectInstance(this, this.objectInstances_[newIndex]) [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/ |
list_single_selection_model.js | 9 * Creates a new selection model that is to be used with lists. This only 12 * @param {number=} opt_length The number items in the selection. 74 // Select all is not allowed on a single selection model 78 * Clears the selection 100 // Only allow selection 158 * The leadIndex is used with multiple selection and it is the index that 176 * The anchorIndex is used with multiple selection. 187 * Whether the selection model supports multiple selected items. 195 * Adjusts the selection after reordering of items in the table. 209 * Adjusts selection model length [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TextPrompt.js | 154 // Append a break element instead of setting textContent to make sure the selection is inside the prompt. 359 var selection = window.getSelection(); variable 360 selection.removeAllRanges(); 361 selection.addRange(selectionRange); 383 var selection = window.getSelection(); variable 384 if (!selection.rangeCount) 387 var selectionRange = selection.getRangeAt(0); 392 else if (!selection.isCollapsed) 407 this._loadCompletions(this.proxyElement, wordPrefixRange, force, this._completionsReady.bind(this, selection, wordPrefixRange, !!reverse)); 416 * @param {!Selection} selectio 567 var selection = window.getSelection(); variable 603 var selection = window.getSelection(); variable [all...] |
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/selfbraille/ |
WriteData.java | 68 * Sets the start position in the text of a text selection or cursor that 70 * no selection will be added. 85 * Sets the end of the text selection to be marked on the display. This 86 * value should only be non-negative if the selection start is 87 * non-negative. If this value is <= the selection start, the selection 88 * is a cursor. Otherwise, the selection covers the range from 91 * @see {@link android.text.Selection}. 127 "Selection can't be set without text"); 132 "Selection end without start") [all...] |
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
list_single_selection_model.js | 9 * Creates a new selection model that is to be used with lists. This only 12 * @param {number=} opt_length The number items in the selection. 82 // Select all is not allowed on a single selection model 86 * Clears the selection 108 // Only allow selection 179 * The leadIndex is used with multiple selection and it is the index that 204 * The anchorIndex is used with multiple selection. 215 * Whether the selection model supports multiple selected items. 223 * Adjusts the selection after reordering of items in the table. 237 * Adjusts selection model length [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
MainPanel.java | 53 private void selection(int position, boolean value) { method in class:MainPanel 155 selection(mCurrentSelected, false); method 160 selection(mCurrentSelected, true); method 168 selection(mCurrentSelected, false); method 173 selection(mCurrentSelected, true); method 184 selection(mCurrentSelected, false); method 189 selection(mCurrentSelected, true); method 197 selection(mCurrentSelected, false); method 202 selection(mCurrentSelected, true); method 212 selection(mCurrentSelected, false) method 217 selection(mCurrentSelected, true); method [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
MarqueeGesture.java | 31 * A {@link MarqueeGesture} is a gesture for swiping out a selection rectangle. 33 * instead of added to the new selection set. 42 /** A copy of the initial selection, when we're toggling the marquee. */ 46 * Creates a new marquee selection (selection swiping). 48 * @param canvas The canvas where selection is performed. 56 List<SelectionItem> selection = canvas.getSelectionManager().getSelections(); local 57 mInitialSelection = new ArrayList<CanvasViewInfo>(selection.size()); 58 for (SelectionItem item : selection) { 79 // Compute selection overlap [all...] |
/external/chromium_org/ash/wm/overview/ |
window_overview.h | 37 // a window by clicking or tapping on it. It also displays a selection widget 38 // used to indicate the current selection when alt-tabbing between windows. 44 // on |window_selector| when a window is selected or selection is canceled. 79 // Position all of the windows based on the current selection mode. 87 // Creates the selection widget. 90 // Returns the bounds for the selection widget for the windows_ at |index|. 105 // selection changes rows and use a different animation.
|
/external/chromium_org/ppapi/api/dev/ |
ppb_text_input_dev.idl | 73 * call, informs the browser about the current text selection and surrounding 75 * of text selection in the plugin. <code>caret</code> is the byte-index of 78 * it is the other edge of selection different from <code>caret</code>. If 79 * there are no selection, <code>anchor</code> is equal to <code>caret</code>. 91 * the selection to IME (e.g., when the surrounding text is containing 101 * Informs the browser when a range of text selection is changed in a plugin. 102 * When the browser needs to know the content of the updated selection, it
|
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/ |
MockContentProvider.java | 82 public Query withSelection(String selection, String... selectionArgs) { 83 mSelection = selection; 123 public boolean equals(Uri uri, String[] projection, String selection, 133 if (!mAnySelection && !equals(selection, mSelection)) { 249 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, 254 if (query.equals(uri, projection, selection, selectionArgs, sortOrder)) { 265 + queryToString(uri, projection, selection, selectionArgs, sortOrder)); 273 queryToString(uri, projection, selection, selectionArgs, sortOrder)); 279 public int delete(Uri uri, String selection, String[] selectionArgs) { 304 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) [all...] |
/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...] |