HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 1 - 25 of 575) 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));
  /packages/apps/Calendar/src/com/android/calendar/alerts/
DismissAlarmsService.java 61 String selection; local
65 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED + " AND " +
68 selection = buildMultipleEventsQuery(eventIds);
70 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED;
76 resolver.update(uri, values, selection, null);
98 StringBuilder selection = new StringBuilder(); local
99 selection.append(CalendarAlerts.STATE);
100 selection.append("=");
101 selection.append(CalendarAlerts.STATE_FIRED);
103 selection.append(" AND (")
    [all...]
  /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...]
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/bytecode/
TestProvider.class.data 
  /external/webkit/Source/WebKit/wx/
WebDOMSelection.h 54 wxWebKitSelection(WebCore::SelectionController* selection)
55 : m_selection(selection)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 149 int selection = mScrollbar.getSelection(); local
153 if (selection + thumb > maximum) {
154 selection = maximum - thumb;
155 if (selection < 0) {
156 selection = 0;
160 mScrollbar.setValues(selection, mScrollbar.getMinimum(), maximum, thumb, mScrollbar
163 mTranslate = selection;
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
PermissionContentProvider.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public Cursor query(Uri uri, String[] projection, String selection,
57 public int update(Uri uri, ContentValues values, String selection,
PermissionContentProviderGranting.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public Cursor query(Uri uri, String[] projection, String selection,
57 public int update(Uri uri, ContentValues values, String selection,
PermissionContentProviderPath.java 14 public int delete(Uri uri, String selection, String[] selectionArgs) {
35 public Cursor query(Uri uri, String[] projection, String selection,
41 public int update(Uri uri, ContentValues values, String selection,
PermissionContentProviderPathRestricting.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public Cursor query(Uri uri, String[] projection, String selection,
57 public int update(Uri uri, ContentValues values, String selection,
PrivateContentProvider.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public Cursor query(Uri uri, String[] projection, String selection,
57 public int update(Uri uri, ContentValues values, String selection,
PrivateContentProviderGranting.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public Cursor query(Uri uri, String[] projection, String selection,
57 public int update(Uri uri, ContentValues values, String selection,
  /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) {
  /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/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebContextMenuClientMac.mm 44 m_page->performDictionaryLookupForSelection(DictionaryPopupInfo::ContextMenu, frame, frame->selection()->selection());
72 if (selectionFrame->selection()->isRange())
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigManagerDialog.java 83 * simple class representing the tree selection with the proper types.
297 DeviceSelection selection = getSelection();
300 if (selection.device != null) {
301 dlg.setDeviceName(selection.device.getName());
302 dlg.setXDpi(selection.device.getXDpi());
303 dlg.setYDpi(selection.device.getYDpi());
305 if (selection.config != null) {
306 dlg.setConfigName(selection.config.getName());
307 dlg.setConfig(selection.config.getConfig());
320 if (selection.device == null)
476 TreeSelection selection = (TreeSelection)mTreeViewer.getSelection(); local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
CatResponseMessage.java 35 public void setMenuSelection(int selection) {
36 this.usersMenuSelection = selection;
  /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 {
  /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) {
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SystemTest.java 80 String selection = System.NAME + "=\"" + intField + "\""; local
81 cr.delete(System.CONTENT_URI, selection, null);
83 selection = System.NAME + "=\"" + longField + "\"";
84 cr.delete(System.CONTENT_URI, selection, null);
86 selection = System.NAME + "=\"" + floatField + "\"";
87 cr.delete(System.CONTENT_URI, selection, null);
89 selection = System.NAME + "=\"" + stringField + "\"";
90 cr.delete(System.CONTENT_URI, selection, null);
92 selection = System.NAME + "=\"" + System.SHOW_GTALK_SERVICE_STATUS + "\"";
93 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 536 milliseconds

1 2 3 4 5 6 7 8 91011>>