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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/editing/
SetSelectionCommand.cpp 33 SetSelectionCommand::SetSelectionCommand(const VisibleSelection& selection, SelectionController::SetSelectionOptions options)
34 : SimpleEditCommand(selection.base().anchorNode()->document())
36 , m_selectionToSet(selection)
42 SelectionController* selectionController = document()->frame()->selection();
53 SelectionController* selectionController = document()->frame()->selection();
SetSelectionCommand.h 36 static PassRefPtr<SetSelectionCommand> create(const VisibleSelection& selection, SelectionController::SetSelectionOptions options)
38 return adoptRef(new SetSelectionCommand(selection, options));
  /external/webkit/Source/WebCore/page/
DOMSelection.cpp 46 Node* node = frame->selection()->selection().base().anchorNode();
73 return m_frame->selection()->selection();
76 static Position anchorPosition(const VisibleSelection& selection)
78 Position anchor = selection.isBaseFirst() ? selection.start() : selection.end();
82 static Position focusPosition(const VisibleSelection& selection)
84 Position focus = selection.isBaseFirst() ? selection.end() : selection.start()
223 const VisibleSelection& selection = m_frame->selection()->selection(); local
238 const VisibleSelection& selection = m_frame->selection()->selection(); local
384 const VisibleSelection& selection = m_frame->selection()->selection(); local
    [all...]
  /external/chromium-trace/trace-viewer/src/analysis/
selection_analysis.css 5 selection-analysis * {
  /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/webkit/Source/WebKit/wx/
WebDOMSelection.h 54 wxWebKitSelection(WebCore::SelectionController* selection)
55 : m_selection(selection)
  /packages/apps/Calendar/src/com/android/calendar/alerts/
DismissAlarmsService.java 67 String selection; local
72 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED + " AND " +
76 selection = buildMultipleEventsQuery(eventIds);
82 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED;
90 resolver.update(uri, values, selection, null);
110 StringBuilder selection = new StringBuilder(); local
111 selection.append(CalendarAlerts.STATE);
112 selection.append("=");
113 selection.append(CalendarAlerts.STATE_FIRED);
115 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...]
  /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) {
  /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/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebContextMenuClientMac.mm 44 m_page->performDictionaryLookupForSelection(DictionaryPopupInfo::ContextMenu, frame, frame->selection()->selection());
72 if (selectionFrame->selection()->isRange())
  /external/webkit/Source/WebCore/inspector/front-end/
TextPrompt.js 52 // Append a break element instead of setting textContent to make sure the selection is inside the prompt.
143 var selection = window.getSelection(); variable
144 selection.removeAllRanges();
145 selection.addRange(finalSelectionRange);
177 var selection = window.getSelection(); variable
178 selection.removeAllRanges();
179 selection.addRange(selectionRange);
194 var selection = window.getSelection(); variable
195 if (!selection.rangeCount)
198 var selectionRange = selection.getRangeAt(0)
    [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 {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
SimpleTestCursor.java 11 public String selection; field in class:SimpleTestCursor
20 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
23 this.selection = selection;
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/tests/
CrashingIconProvider.java 48 public int delete(Uri uri, String selection, String[] selectionArgs) {
49 if (DBG) Log.d(TAG, "delete(" + uri + ", " + selection + ", " + selectionArgs + ")");
66 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
73 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 178 int selection = mScrollbar.getSelection(); local
182 if (selection + thumb > maximum) {
183 selection = maximum - thumb;
184 if (selection < 0) {
185 selection = 0;
189 mScrollbar.setValues(selection, mScrollbar.getMinimum(), maximum, thumb, mScrollbar
192 mTranslate = selection;
ClipboardSupport.java 87 * This sanitizes the selection, so it must be a copy. It then inserts the
88 * selection both as text and as {@link SimpleElement}s in the clipboard.
92 * @param selection A list of selection items to add to the clipboard;
96 public void copySelectionToClipboard(List<SelectionItem> selection) {
97 SelectionManager.sanitize(selection);
109 if (selection.isEmpty()) {
120 SelectionItem.getAsElements(selection),
121 message != null ? message : SelectionItem.getAsText(mCanvas, selection)
136 * This sanitizes the selection, so it must be a copy. It uses th
147 deleteSelection(mCanvas.getCutLabel(), selection); local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SystemTest.java 45 String selection = System.NAME + "=\"" + INT_FIELD + "\""; local
46 cr.delete(System.CONTENT_URI, selection, null);
48 selection = System.NAME + "=\"" + LONG_FIELD + "\"";
49 cr.delete(System.CONTENT_URI, selection, null);
51 selection = System.NAME + "=\"" + FLOAT_FIELD + "\"";
52 cr.delete(System.CONTENT_URI, selection, null);
54 selection = System.NAME + "=\"" + STRING_FIELD + "\"";
55 cr.delete(System.CONTENT_URI, selection, null);
57 selection = System.NAME + "=\"" + System.SHOW_GTALK_SERVICE_STATUS + "\"";
58 cr.delete(System.CONTENT_URI, selection, null)
    [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;

Completed in 2425 milliseconds

1 2 3 4 5 6 7 8 91011>>