HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 1 - 25 of 816) 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().anchorNode()->document())
37 , m_selectionToSet(selection)
43 FrameSelection* selection = document()->frame()->selection(); local
44 ASSERT(selection);
46 if (selection->shouldChangeSelection(m_selectionToSet) && m_selectionToSet.isNonOrphanedCaretOrRange()) {
47 selection->setSelection(m_selectionToSet, m_options);
54 FrameSelection* selection = document()->frame()->selection(); local
    [all...]
SetSelectionCommand.h 36 static PassRefPtr<SetSelectionCommand> create(const VisibleSelection& selection, FrameSelection::SetSelectionOptions options)
38 return adoptRef(new SetSelectionCommand(selection, options));
Editor.cpp 101 m_editor->m_frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded, RevealExtent);
106 bool isSelectionInTextField(const VisibleSelection& selection)
108 HTMLTextFormControlElement* textControl = enclosingTextFormControl(selection.start());
114 // When an event handler has moved the selection outside of a text control
115 // we should use the target control's selection for this editing operation.
118 VisibleSelection selection = m_frame->selection()->selection(); local
120 return selection;
121 // If the target is a text control, and the current selection is outside of its shadow tree
256 FrameSelection* selection = m_frame->selection(); local
912 RefPtr<Range> selection = selectedRange(); local
1874 VisibleSelection selection = VisibleSelection::selectionFromContentsOfNode(element); local
1942 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
377 const VisibleSelection& selection = m_frame->selection()->selection(); local
    [all...]
  /external/chromium_org/ui/base/ime/
composition_text.h 22 (this->selection != rhs.selection) ||
46 // Selection range in the composition text. It represents the caret position
50 Range selection; member in struct:ui::CompositionText
composition_text.cc 18 selection = Range();
  /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/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 18 SelectionModel::SelectionModel(ui::Range selection,
20 : selection_(selection), caret_affinity_(affinity) {}
23 return selection_ == sel.selection() &&
29 if (selection().is_empty())
32 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(ui::Range selection, LogicalCursorDirection affinity);
72 const ui::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/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...]
  /external/chromium_org/chrome/browser/history/android/
android_provider_backend.h 62 // |selection| is the SQL WHERE clause without 'WHERE'.
67 const std::string& selection,
75 // |selection| is the SQL WHERE clause without 'WHERE'.
78 const std::string& selection,
87 // |selection| is the SQL WHERE clause without 'WHERE'.
90 // if |selection| is empty all history and bookmarks are deleted.
91 bool DeleteHistoryAndBookmarks(const std::string& selection,
99 bool DeleteHistory(const std::string& selection,
108 // |selection| is the SQL WHERE clause without 'WHERE'.
113 const std::string& 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/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...]
  /external/chromium/chrome/browser/resources/gpu_internals/
timeline_view.css 31 .timeline-view .selection {
35 .timeline-view .selection ul {

Completed in 610 milliseconds

1 2 3 4 5 6 7 8 91011>>