HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 1 - 25 of 507) 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/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;
ClipboardSupport.java 85 * This sanitizes the selection, so it must be a copy. It then inserts the
86 * selection both as text and as {@link SimpleElement}s in the clipboard.
90 * @param selection A list of selection items to add to the clipboard;
94 public void copySelectionToClipboard(List<SelectionItem> selection) {
95 SelectionManager.sanitize(selection);
107 if (selection.isEmpty()) {
118 SelectionItem.getAsElements(selection),
119 message != null ? message : SelectionItem.getAsText(mCanvas, selection)
134 * This sanitizes the selection, so it must be a copy. It uses th
147 selection); local
    [all...]
  /cts/tests/appsecurity-tests/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,
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.
284 DeviceSelection selection = getSelection();
287 if (selection.device != null) {
288 dlg.setDeviceName(selection.device.getName());
289 dlg.setXDpi(selection.device.getXDpi());
290 dlg.setYDpi(selection.device.getYDpi());
292 if (selection.config != null) {
293 dlg.setConfigName(selection.config.getName());
294 dlg.setConfig(selection.config.getConfig());
307 if (selection.device == null)
463 TreeSelection selection = (TreeSelection)mTreeViewer.getSelection(); local
    [all...]
  /cts/tests/src/android/content/cts/
MockContentProvider.java 83 public int delete(Uri uri, String selection, String[] selectionArgs) {
90 if (null == selection) {
92 selection = "1";
94 count = db.delete("TestTable1", selection, selectionArgs);
99 (!TextUtils.isEmpty(selection) ? " AND (" + selection + ')' : ""),
103 count = db.delete("TestTable2", selection, selectionArgs);
108 (!TextUtils.isEmpty(selection) ? " AND (" + selection + ')' : ""),
177 public Cursor query(Uri uri, String[] projection, String selection,
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
CatResponseMessage.java 35 public void setMenuSelection(int selection) {
36 this.usersMenuSelection = selection;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ClearLintMarkersAction.java 29 public void selectionChanged(IAction action, ISelection selection) {
30 mSelection = 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) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
ExportAction.java 48 IStructuredSelection selection = (IStructuredSelection)mSelection; local
50 if (selection.size() == 1) {
51 Object element = selection.getFirstElement();
79 public void selectionChanged(IAction action, ISelection selection) {
80 mSelection = selection;
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
DeviceSelector.java 263 TreeSelection selection = (TreeSelection) mTreeViewer.getSelection();
265 if (selection.getFirstElement() instanceof Window
266 && ((Window) selection.getFirstElement()).getDevice() == device) {
267 mTreeViewer.setSelection(selection, true);
284 TreeSelection selection = (TreeSelection) mTreeViewer.getSelection();
286 if (selection.getFirstElement() instanceof Window
287 && ((Window) selection.getFirstElement()).getDevice() == device) {
288 mTreeViewer.setSelection(selection, true);
299 Object selection = ((TreeItem) e.item).getData(); local
300 if (selection instanceof IDevice && mDoPixelPerfectStuff)
308 Object selection = ((TreeItem) e.item).getData(); local
    [all...]

Completed in 850 milliseconds

1 2 3 4 5 6 7 8 91011>>