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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SetSelectionCommand.cpp 34 SetSelectionCommand::SetSelectionCommand(const VisibleSelection& selection, FrameSelection::SetSelectionOptions options)
35 : SimpleEditCommand(*selection.base().document())
37 , m_selectionToSet(selection)
43 FrameSelection& selection = document().frame()->selection(); local
44 selection.setSelection(m_selectionToSet, m_options);
50 FrameSelection& selection = document().frame()->selection(); local
51 selection.setSelection(startingSelection(), m_options);
SetSelectionCommand.h 36 static PassRefPtr<SetSelectionCommand> create(const VisibleSelection& selection, FrameSelection::SetSelectionOptions options)
38 return adoptRef(new SetSelectionCommand(selection, options));
Editor.cpp 106 m_editor->m_frame.selection().revealSelection(ScrollAlignment::alignToEdgeIfNeeded, RevealExtent);
109 // When an event handler has moved the selection outside of a text control
110 // we should use the target control's selection for this editing operation.
113 VisibleSelection selection = m_frame.selection().selection(); local
115 return selection;
116 // If the target is a text control, and the current selection is outside of its shadow tree,
117 // then use the saved selection for that text control.
118 HTMLTextFormControlElement* textFormControlOfSelectionStart = enclosingTextFormControl(selection.start())
250 FrameSelection& selection = m_frame.selection(); local
1196 VisibleSelection selection = m_frame.selection().selection(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSelection.cpp 51 Node* node = frame->selection().selection().base().anchorNode();
76 return m_frame->selection().selection();
79 static Position anchorPosition(const VisibleSelection& selection)
81 Position anchor = selection.isBaseFirst() ? selection.start() : selection.end();
85 static Position focusPosition(const VisibleSelection& selection)
87 Position focus = selection.isBaseFirst() ? selection.end() : selection.start()
218 const VisibleSelection& selection = m_frame->selection().selection(); local
233 const VisibleSelection& selection = m_frame->selection().selection(); local
387 const VisibleSelection& selection = m_frame->selection().selection(); local
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/
record_selection_dialog.css 6 .record-selection-dialog {
11 .record-selection-dialog .default-enabled-categories {
15 .record-selection-dialog .default-disabled-categories {
21 .record-selection-dialog .categories {
26 .record-selection-dialog form {
34 .record-selection-dialog .options {
40 .record-selection-dialog td {
44 .record-selection-dialog .options label {
  /external/chromium_org/ui/base/ime/
composition_text.cc 18 selection = gfx::Range();
composition_text.h 22 (this->selection != rhs.selection) ||
46 // Selection range in the composition text. It represents the caret position
50 gfx::Range selection; member in struct:ui::CompositionText
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCursorLoader.java 15 private String selection; field in class:ShadowCursorLoader
23 public void __constructor__(Context context, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
27 this.selection = selection;
54 return selection;
58 public void setSelection(String selection) {
59 this.selection = selection;
  /external/chromium_org/ui/gfx/
selection_model.cc 20 SelectionModel::SelectionModel(const Range& selection,
22 : selection_(selection),
26 return selection_ == sel.selection() &&
32 if (selection().is_empty())
35 str += selection().ToString();
selection_model.h 33 // SelectionModel is used to represent the logical selection and visual
54 // So, besides the logical selection start point and end point, we need extra
64 // selection. The |affinity| is meaningful only when the caret is positioned
68 // Create a SelectionModel representing a selection (which may be empty).
70 SelectionModel(const Range& selection, LogicalCursorDirection affinity);
72 const Range& selection() const { return selection_; } function in class:gfx::SelectionModel
84 // TODO(benrg): Generally the selection start should not be changed without
89 // Logical selection. The logical caret position is the end of the selection.
  /packages/apps/Calendar/src/com/android/calendar/alerts/
DismissAlarmsService.java 74 String selection; local
79 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED + " AND " +
83 selection = buildMultipleEventsQuery(eventIds);
89 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED;
97 resolver.update(uri, values, selection, null);
117 StringBuilder selection = new StringBuilder(); local
118 selection.append(CalendarAlerts.STATE);
119 selection.append("=");
120 selection.append(CalendarAlerts.STATE_FIRED);
122 selection.append(" AND (")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CSSSourceFrame.js 76 var selection = this.textEditor.selection().normalize();
77 var token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn);
79 if (selection.startColumn > 0)
80 token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn - 1);
87 var cssUnitRange = new WebInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn + 1);
93 selection.startColumn = token.startColumn
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
ConfirmationCallback.java 60 private int selection; field in class:ConfirmationCallback
203 return selection;
206 public void setSelectedIndex(int selection) {
208 if (0 <= selection && selection <= options.length) {
209 this.selection = selection;
216 if (selection != YES && selection != NO) {
221 if (selection != YES && selection != NO && selection != CANCEL)
    [all...]
  /external/chromium_org/chrome/browser/history/
history_backend_android.cc 27 const std::string& selection,
36 projections, selection, selection_args, sort_order);
44 const std::string& selection,
53 selection, selection_args, &count);
61 const std::string& selection,
69 result = android_provider_backend_->DeleteHistoryAndBookmarks(selection,
77 const std::string& selection,
85 result = android_provider_backend_->DeleteHistory(selection, selection_args,
135 const std::string& selection,
143 result = android_provider_backend_->UpdateSearchTerms(row, selection,
    [all...]
  /frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DisabledProvider.java 34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
EnabledProvider.java 34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
TestProvider.java 33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
49 public int delete(Uri uri, String selection, String[] selectionArgs) {
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
TestReceiver.java 33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
49 public int delete(Uri uri, String selection, String[] selectionArgs) {
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
NullProvider.java 15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
26 public int delete(Uri uri, String selection, String[] selectionArgs) {
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
NullProvider.java 15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
26 public int delete(Uri uri, String selection, String[] selectionArgs) {
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
Provider.java 32 String selection, String[] selectionArgs,
43 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
file_selection.js 8 * The current selection object.
75 // Collect all of the mime types and push that info into the selection.
149 * This object encapsulates everything related to current selection.
210 * Update the UI when the selection model changes.
217 if (this.selection) this.selection.cancelComputing_();
218 var selection = new FileSelection(this.fileManager_, indexes);
219 this.selection = selection;
224 if (this.selection.totalCount == 1 &
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CursorLoaderTest.java 19 String selection = "_id = ?"; local
25 selection,
31 assertThat(cursorLoader.getSelection(), equalTo(selection));
40 String selection = "_id = ?"; local
46 cursorLoader.setSelection(selection);
52 assertThat(cursorLoader.getSelection(), equalTo(selection));
  /external/chromium_org/remoting/host/linux/
x_server_clipboard.cc 135 OnSetSelectionOwnerNotify(notify_event->selection,
140 void XServerClipboard::OnSetSelectionOwnerNotify(Atom selection,
142 // Protect against receiving new XFixes selection notifications whilst we're
143 // in the middle of waiting for information from the current selection owner.
156 if (selection != clipboard_atom_)
159 // If we own the selection, don't request details for it.
160 if (IsSelectionOwner(selection))
165 // Before getting the value of the chosen selection, request the list of
167 RequestSelectionTargets(selection);
204 // Large selection - just read and ignore these for now
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 110 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
137 return query.query(db, projection, selection, selectionArgs, null, null, sortOrder);
150 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
158 if (selection != null && selection.length() > 0) {
159 selection = idSelection + " AND " + selection;
161 selection = idSelection;
168 if (selection != null && selection.length() > 0)
    [all...]

Completed in 922 milliseconds

1 2 3 4 5 6 7 8 91011>>