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

1 2 3 4 5 6 78 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
TestTargetPage.java 109 // No initial selection: force the user to choose
133 // in the list, even when the selection is explicitly set to an empty
134 // array. This means the user is looking at a selection, so we need
137 // selection.
166 // pass itself as the selection event, it passes a reference to some internal
178 Object[] selection = mProjectList.getSelection(); local
179 IProject project = selection != null && selection.length == 1
180 ? ((IJavaProject) selection[0]).getProject() : null;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 200 final String selection; local
203 selection = RECENTLY_CONTACTED;
206 selection = null;
213 db, projection, selection, searchClause, limit);
303 String[] projection, String selection, String filter, String limit) {
326 if (selection != null) {
327 sb.append(" WHERE ").append(selection);
ContactsProvider2.java 3113 String selection; local
3182 String selection = null; local
4256 final String selection = RawContacts._ID + " = ?"; local
7177 final String selection = Contacts._ID + " IN " + inBuilder.toString(); local
    [all...]
  /sdk/traceview/src/com/android/traceview/
ProfileView.java 182 // Add a selection listener to the tree so that the user can click
191 IStructuredSelection selection = (IStructuredSelection) sel;
192 Object element = selection.getFirstElement();
229 ArrayList<Selection> selections = new ArrayList<Selection>();
230 selections.add(Selection.highlight("MethodData", md));
268 ArrayList<Selection> selections;
270 for (Selection selection : selections) {
271 Selection.Action action = selection.getAction()
    [all...]
  /external/chromium/chrome/browser/renderer_host/
gtk_im_context_wrapper.cc 464 composition_.selection.start(),
465 composition_.selection.end());
532 // TODO(suzhe): due to a bug of webkit, we currently can't use selection range
534 composition_.selection = ui::Range(cursor_position);
554 composition_.text, underlines, composition_.selection.start(),
555 composition_.selection.end());
  /external/webkit/Source/WebCore/dom/
InputElement.cpp 88 // Restore the cached selection.
93 document->frame()->selection()->revealSelection();
187 // selectionLength represents the selection length of this text field to be
190 // selection length. The selection is the source of text drag-and-drop in
192 unsigned selectionLength = element->focused() ? numGraphemeClusters(plainText(element->document()->frame()->selection()->selection().toNormalizedRange().get())) : 0;
203 RefPtr<Range> range = element->document()->frame()->selection()->selection().toNormalizedRange();
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfoAsyncQuery.java 350 String selection; local
374 selection = "upper(" + Data.DATA1 + ")=?"
382 selection = null;
388 Log.d(LOG_TAG, "==> selection: " + selection);
418 selection, // selection
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 59 public String selection; field in class:AsyncQueryServiceHelper.OperationInfo
123 builder.append(",\n\t selection= ");
124 builder.append(selection);
287 cursor = resolver.query(args.uri, args.projection, args.selection,
310 args.result = resolver.update(args.uri, args.values, args.selection,
315 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);
GoogleCalendarUriIntentFilter.java 97 String selection = Events._SYNC_ID + " LIKE \"%/" + eid + "\""; local
99 selection, null, null);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 1036 SqlSelection selection = getWhereClause(uri, where, whereArgs, match); local
1078 SqlSelection selection = new SqlSelection(); local
1111 SqlSelection selection = getWhereClause(uri, where, whereArgs, match); local
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java     [all...]
  /external/webkit/Source/WebCore/page/
EventHandler.cpp 269 static void setSelectionIfNeeded(SelectionController* selection, const VisibleSelection& newSelection)
271 ASSERT(selection);
272 if (selection->selection() != newSelection && selection->shouldChangeSelection(newSelection))
273 selection->setSelection(newSelection);
276 static void setNonDirectionalSelectionIfNeeded(SelectionController* selection, const VisibleSelection& newSelection, TextGranularity granularity)
278 ASSERT(selection);
279 if (selection->selection() != newSelection && selection->shouldChangeSelection(newSelection)
2261 RefPtr<Range> selection = selectionController->toNormalizedRange(); local
    [all...]
FocusController.cpp 105 // Now that the frame is updated, fire events and update the selection focused states of both frames.
107 oldFrame->selection()->setFocused(false);
112 newFrame->selection()->setFocused(true);
142 m_focusedFrame->selection()->setFocused(focused);
213 currentNode = frame->selection()->start().deprecatedNode();
301 if (frame->selection()->shouldChangeSelection(newSelection))
302 frame->selection()->setSelection(newSelection);
330 SelectionController* s = oldFocusedFrame->selection();
338 Node* selectionStartNode = s->selection().start().deprecatedNode();
344 // Don't clear the selection for contentEditable elements, but do clear it for input and textarea. See bug 38696
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 144 public Cursor query(Uri uri, String[] projection, String selection,
163 public Cursor query(Uri uri, String[] projection, String selection,
179 public Cursor query(Uri uri, String[] projection, String selection,
195 public Cursor query(Uri uri, String[] projection, String selection,
304 builderSetSelection(builder, "selection");
318 assertEquals("selection", operationGetSelection(op2));
404 ContentProviderOperation.Builder builder, String selection)
409 field.set(builder, selection);
529 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
542 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileWizard.java 76 public void init(IWorkbench workbench, IStructuredSelection selection) {
85 mMainPage.setInitialSelection(selection);
347 public void init(IWorkbench workbench, IStructuredSelection selection) {
348 super.init(workbench, selection);
365 public void init(IWorkbench workbench, IStructuredSelection selection) {
366 super.init(workbench, selection);
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp 2181 DOMSelection* selection = m_mainFrame->domWindow()->getSelection(); local
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 134 public Cursor query(Uri uri, String[] projection, String selection,
160 selection,
  /development/samples/Spinner/src/com/android/example/spinner/
SpinnerActivity.java 57 * selection when the activity is not loaded.
74 * The key or label for "selection" in the preferences file
76 public static final String SELECTION_KEY = "Selection";
88 * 3) Instantiates a callback listener for handling selection from the
140 * The test will fail because the selection listener for the
187 * @param pos - the 0-based position of the selection in the mLocalAdapter
188 * @param row - the 0-based row number of the selection in the View
371 public void setSpinnerSelection(String selection) {
372 this.mSelection = selection;
  /external/webkit/Tools/DumpRenderTree/qt/
TextInputControllerQt.cpp 136 QInputMethodEvent::Attribute selection(QInputMethodEvent::Selection, start, end, QVariant());
137 attributes << selection; local
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 84 public Cursor query(Uri url, String[] projectionIn, String selection,
104 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FileList.java 158 abstract void processDirectory(String path, boolean selection);
162 * The flag indicates if this was from a selection or not.
164 abstract void processFile(String filename, boolean selection);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmProvider.java 53 public Cursor query(Uri url, String[] projectionIn, String selection,
73 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
  /packages/apps/Email/src/com/android/email/activity/
RecentMailboxManager.java 112 String selection = withExclusions ? RECENT_SELECTION_WITH_EXCLUSIONS : RECENT_SELECTION; local
116 selection,
  /packages/apps/Email/src/com/android/email/widget/
EmailWidgetLoader.java 119 String selection = "(" + getSelection() + " ) AND " + MessageColumns.FLAG_READ + " = 0"; local
120 messageCount = EmailContent.count(mContext, Message.CONTENT_URI, selection,
164 * Stop any pending load, reset selection parameters, and start loading.
181 /** Sets the loader's selection and arguments depending upon the account and mailbox */
192 // Simple mailbox selection
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionItem.java 32 * Represents one selection in {@link LayoutCanvas}.
42 /** Current selection border rectangle. Null when mCanvasViewInfo is null . */
45 /** The node proxy for drawing the selection. Null when mCanvasViewInfo is null. */
48 /** The resize policy for this selection item */
51 /** The selection handles for this item */
76 * Returns true when this selection item represents the root, the top level
105 * Returns the selection border rectangle. Cannot be null.
107 * @return the selection border rectangle, never null
113 /** Returns the node associated with this selection (may be null) */
118 /** Returns the canvas associated with this selection (never null) *
    [all...]

Completed in 943 milliseconds

1 2 3 4 5 6 78 91011>>