HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 201 - 225 of 507) sorted by null

1 2 3 4 5 6 7 891011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 95 StructuredSelection selection = new StructuredSelection(project);
98 wizard.init(PlatformUI.getWorkbench(), selection);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
RenamePackageAction.java 59 * selection)
73 public void selectionChanged(IAction action, ISelection selection) {
74 mSelection = selection;
  /dalvik/vm/mterp/armv5te/
entry.S 80 moveq r2,#kJitTSelectRequestHot @ ask for trace selection
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.h 53 State(const CHARRANGE& selection,
55 : selection(selection),
59 const CHARRANGE selection; member in struct:AutocompleteEditViewWin::State
317 // |cpMax| if the cursor is at the start rather than the end of the selection
318 // (in other words, tracks selection direction as well as offsets).
325 // Like SetSel(), but respects the selection direction implied by |start| and
327 // beginning of the selection.
335 // Places the caret at the given position. This clears any selection.
338 // Returns true if |sel| represents a forward or backward selection of all th
    [all...]
  /external/llvm/test/Scripts/
coff-dump.py 437 selection = value & mask
438 if selection in map:
439 write("\n%s" % map[selection])
441 write("\n%s <%d>" % (name, selection))
  /external/webkit/Source/WebCore/rendering/
RenderTextControl.h 44 PassRefPtr<Range> selection(int start, int end) const;
RenderTreeAsText.cpp 747 VisibleSelection selection = frame->selection()->selection();
748 if (selection.isCaret()) {
749 ts << "caret: position " << selection.start().deprecatedEditingOffset() << " of " << nodePosition(selection.start().deprecatedNode());
750 if (selection.affinity() == UPSTREAM)
753 } else if (selection.isRange())
754 ts << "selection start: position " << selection.start().deprecatedEditingOffset() << " of " << nodePosition(selection.start().deprecatedNode()) << (…)
    [all...]
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 349 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
355 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
361 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
367 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 359 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
365 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
371 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
377 frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : SelectionController::AlterationMove,
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 84 if (frame->selection()->isRange())
102 // Clear the selection.
104 selectedFrame->selection()->clear();
166 IntRect selectionRect = enclosingIntRect(selectedFrame->selection()->bounds());
168 // Selection rect can be empty for matches that are currently obscured from view.
172 // We want the selection rect in window coordinates.
176 selectedFrame->selection()->getClippedVisibleTextRectangles(textRects);
200 // We want the text rects in selection rect coordinates.
  /frameworks/base/core/tests/coretests/src/android/app/
SuggestionProvider.java 63 public Cursor query(Uri url, String[] projectionIn, String selection,
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertActivity.java 84 private static final String SELECTION = CalendarAlerts.STATE + "=?";
105 String selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED; local
107 selection, null /* selectionArgs */, Utils.UNDO_DELAY);
113 String selection = CalendarAlerts._ID + "=" + id; local
115 selection, null /* selectionArgs */, Utils.UNDO_DELAY);
259 mQueryHandler.startQuery(0, null, uri, PROJECTION, SELECTION,
  /packages/apps/Camera/src/com/android/camera/
Thumbnail.java 193 String selection = ImageColumns.MIME_TYPE + "='image/jpeg' AND " + local
199 cursor = resolver.query(query, projection, selection, null, order);
219 String selection = VideoColumns.BUCKET_ID + '=' + Storage.BUCKET_ID; local
224 cursor = resolver.query(query, projection, selection, null, order);
  /packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
CrashingSuggestionProvider.java 48 public Cursor query(Uri uri, String[] projectionIn, String selection,
HangingSuggestionProvider.java 43 public Cursor query(Uri uri, String[] projectionIn, String selection,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
SdkManagerAction.java 127 public void selectionChanged(IAction action, ISelection selection) {
128 // nothing related to the current selection.
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 164 String selection = COLUMN_ID_NAME + "=1"; local
165 mCursor = mContentResolver.query(TABLE1_URI, null, selection, null, null);
176 selection = COLUMN_KEY_NAME + "=\"" + KEY3 + "\"";
177 mCursor = mContentResolver.query(TABLE1_URI, null, selection, null, null);
483 // test delete row using selection
484 String selection = COLUMN_ID_NAME + "=2"; local
485 assertEquals(1, mContentResolver.delete(TABLE1_URI, selection, null));
502 selection = COLUMN_VALUE_NAME + "=3";
503 assertEquals(1, mContentResolver.delete(TABLE1_URI, selection, null));
515 selection = COLUMN_KEY_NAME + "=\"" + KEY1 + "\""
572 String selection = COLUMN_ID_NAME + "=1"; local
    [all...]
  /external/webkit/Source/WebCore/editing/
SelectionController.h 78 const VisibleSelection& selection() const { return m_selection; } function in class:WebCore::SelectionController
80 void setSelection(const VisibleSelection& selection, TextGranularity granularity, DirectionalityPolicy directionality = MakeDirectionalSelection) { setSelection(selection, CloseTyping | ClearTypingStyle, AlignCursorOnScrollIfNeeded, granularity, directionality); }
111 // Return the renderer that is responsible for painting the caret (in the selection start node)
SelectionController.cpp 121 VisibleSelection selection = r ? VisibleSelection(r->startPosition(), r->endPosition(), affinity) : VisibleSelection(Position(), Position(), affinity); local
122 setSelection(selection, options);
161 document->frame()->selection()->setSelection(s, options);
173 // Even if selection was not changed, selection offsets may have been changed.
230 // There can't be a selection inside a fragment, so if a fragment's node is being removed,
231 // the selection in the document that created the fragment needs no adjustment.
245 // FIXME: When endpoints are removed, we should just alter the selection, instead of blowing it away.
251 // selection, since doing so could move the start and end into the node
262 // occupied would be invalidated, but, selection gaps that change as a result of
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutsProvider.java 85 public int delete(Uri uri, String selection, String[] selectionArgs) {
90 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
96 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/
OutlinePage.java 107 * It sets itself as a listener on the site's selection service in order to be
108 * notified of the canvas' selection changes.
109 * The underlying page is also a selection provider (via IContentOutlinePage)
110 * and as such it will broadcast selection changes to the site's selection service
249 // Front properties panel; its selection is already linked
261 // Listen to selection changes from the layout editor
317 * Returns the current tree viewer selection. Shouldn't be null,
326 * Sets the outline selection.
328 * @param selection Only {@link ITreeSelection} will be used, otherwise th
868 TreeItem[] selection = getTreeViewer().getTree().getSelection(); local
    [all...]
SelectionManager.java 64 * The {@link SelectionManager} manages the selection in the canvas editor.
66 * operations for manipulating the selection - such as toggling items, copying
67 * the selection to the clipboard, etc.
70 * the selection provider from the {@link LayoutCanvasViewer}.
72 * Note that {@link LayoutCanvasViewer} sets a selection change listener on this
74 * selection changes.
80 /** The current selection list. The list is never null, however it can be empty. */
87 /** Barrier set when updating the selection to prevent from recursively
92 * The <em>current</em> alternate selection, if any, which changes when the Alt key is
93 * used during a selection. Can be null
905 ISelection selection = selectionProvider.getSelection(); local
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 92 Set<?> selection = scene.getSelectedObjects(); local
93 if (selection.size() > 0) {
94 ViewNode node = (ViewNode) selection.iterator().next();
  /external/webkit/Source/WebCore/inspector/front-end/
TextViewer.js 962 var selection = this._getSelection();
963 if (!selection)
972 var range = selection;
987 var selection = this._getSelection();
989 this._restoreSelection(selection);
1114 var selection; variable
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ThreadPanel.java 346 sash.addListener(SWT.Selection, new Listener() {
474 // get the current selection in the ThreadTable
550 * Returns the current thread selection or <code>null</code> if none is found.
551 * If a {@link ISelection} object is specified, the first {@link ThreadInfo} from this selection
554 * @param selection the {@link ISelection} to use, or <code>null</code>
556 private ThreadInfo getThreadSelection(ISelection selection) {
557 if (selection == null) {
558 selection = mThreadViewer.getSelection();
561 if (selection instanceof IStructuredSelection) {
562 IStructuredSelection structuredSelection = (IStructuredSelection)selection;
    [all...]

Completed in 883 milliseconds

1 2 3 4 5 6 7 891011>>