HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 26 - 50 of 836) sorted by null

12 3 4 5 6 7 8 91011>>

  /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) {
  /external/chromium_org/chrome/browser/history/android/
android_history_provider_service.h 66 // |selection| is the SQL WHERE clause without 'WHERE'.
71 const std::string& selection,
81 // |selection| is the SQL WHERE clause without 'WHERE'.
85 const std::string& selection,
93 // |selection| is the SQL WHERE clause without 'WHERE'.
96 // if |selection| is empty all history and bookmarks are deleted.
98 const std::string& selection,
111 Handle DeleteHistory(const std::string& selection,
141 // |selection| is the SQL WHERE clause without 'WHERE'.
144 const std::string& selection,
    [all...]
android_provider_backend.h 62 // |selection| is the SQL WHERE clause without 'WHERE'.
67 const std::string& selection,
75 // |selection| is the SQL WHERE clause without 'WHERE'.
79 const std::string& selection,
88 // |selection| is the SQL WHERE clause without 'WHERE'.
91 // if |selection| is empty all history and bookmarks are deleted.
93 const std::string& selection,
101 bool DeleteHistory(const std::string& selection,
110 // |selection| is the SQL WHERE clause without 'WHERE'.
115 const std::string& selection,
    [all...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
UISourceCodeFrame.js 130 var selection = this._textEditor.selection();
135 start = event.data.newFormatter.originalToFormatted(selection.startLine, selection.startColumn);
136 end = event.data.newFormatter.originalToFormatted(selection.endLine, selection.endColumn);
138 start = event.data.oldFormatter.formattedToOriginal(selection.startLine, selection.startColumn);
139 end = event.data.oldFormatter.formattedToOriginal(selection.endLine, selection.endColumn)
    [all...]
TextPrompt.js 154 // Append a break element instead of setting textContent to make sure the selection is inside the prompt.
359 var selection = window.getSelection(); variable
360 selection.removeAllRanges();
361 selection.addRange(selectionRange);
383 var selection = window.getSelection(); variable
384 if (!selection.rangeCount)
387 var selectionRange = selection.getRangeAt(0);
392 else if (!selection.isCollapsed)
407 this._loadCompletions(this.proxyElement, wordPrefixRange, force, this._completionsReady.bind(this, selection, wordPrefixRange, !!reverse));
416 * @param {!Selection} selectio
567 var selection = window.getSelection(); variable
603 var selection = window.getSelection(); variable
    [all...]
  /external/chromium_org/remoting/host/linux/
x_server_clipboard.h 28 // selection (primary or clipboard).
49 // Process |event| if it is an X selection notification. The caller should
55 void OnSetSelectionOwnerNotify(Atom selection, Time timestamp);
69 // Called by OnSelectionNotify() when the selection owner has replied to a
70 // request for information about a selection.
80 // These methods return true if selection processing is complete, false
95 // These methods trigger the X server or selection owner to send back an
97 void RequestSelectionTargets(Atom selection);
98 void RequestSelectionString(Atom selection, Atom target);
100 // Assert ownership of the specified |selection|
    [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;
ExportWizardAction.java 51 IStructuredSelection selection = (IStructuredSelection)mSelection; local
54 if (selection.size() == 1) {
55 Object element = selection.getFirstElement();
78 // call the export wizard on the current selection.
80 wizard.init(mWorkbench, selection);
91 public void selectionChanged(IAction action, ISelection selection) {
92 mSelection = selection;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodController.cpp 104 VisibleSelection selection;
105 selection.setWithoutValidation(range->startPosition(), range->endPosition());
106 m_frame.selection().setSelection(selection, 0);
161 // Check if selection start and selection end are valid.
162 Position start = m_frame.selection().start();
163 Position end = m_frame.selection().end();
188 if (m_frame.selection().isNone())
212 // An open typing command that disagrees about current selection would cause issues with typing later on
    [all...]
SpellChecker.cpp 55 bool isSelectionInTextField(const VisibleSelection& selection)
57 HTMLTextFormControlElement* textControl = enclosingTextFormControl(selection.start());
136 VisibleSelection selection = VisibleSelection::selectionFromContentsOfNode(element); local
137 markMisspellingsAndBadGrammar(selection);
146 if (RefPtr<Range> selectedRange = m_frame.selection().toNormalizedRange())
152 // The basic approach is to search in two phases - from the selection end to the end of the doc, and
155 // Start at the end of the selection, search to edge of document. Starting at the selection end makes
157 VisibleSelection selection(m_frame.selection().selection())
    [all...]
ModifySelectionListLevel.cpp 49 static bool getStartEndListChildren(const VisibleSelection& selection, Node*& start, Node*& end)
51 if (selection.isNone())
55 Node* startListChild = enclosingListChild(selection.start().anchorNode());
60 Node* endListChild = selection.isRange() ? enclosingListChild(selection.end().anchorNode()) : startListChild;
64 // For a range selection we want the following behavior:
79 // if the selection ends on a list item with a sublist, include the entire sublist
144 static bool canIncreaseListLevel(const VisibleSelection& selection, Node*& start, Node*& end)
146 if (!getStartEndListChildren(selection, start, end))
209 return canIncreaseListLevel(document.frame()->selection().selection(), startListChild, endListChild)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java 255 private String buildSuggestWhere(String selection, int argc) {
256 StringBuilder sb = new StringBuilder(selection);
259 sb.append(selection);
269 private Cursor getBookmarkHistorySuggestions(String selection, String[] selectionArgs,
287 urlWhere.append(buildSuggestWhere(selection, args.size()));
306 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
324 cursor = getBookmarkHistorySuggestions(selection, selectionArgs, sortOrder, true);
327 cursor = getBookmarkHistorySuggestions(selection, selectionArgs, sortOrder, false);
330 cursor = queryBookmarkFromAPI(projection, selection, selectionArgs, sortOrder);
333 cursor = queryBookmarkFromAPI(projection, buildWhereClause(bookmarkId, selection),
    [all...]
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 52 public String selection; field in class:AsyncQueryHandler.WorkerArgs
80 args.selection, args.selectionArgs,
100 args.result = resolver.update(args.uri, args.values, args.selection,
105 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);
154 * @param selection A filter declaring which rows to return, formatted as an
157 * @param selectionArgs You may include ?s in selection, which will be
159 * appear in the selection. The values will be bound as Strings.
165 String[] projection, String selection, String[] selectionArgs,
175 args.selection = selection;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
content_script.js 7 "selection": window.getSelection().toString()
  /external/llvm/include/llvm/CodeGen/PBQP/
Solution.h 25 /// To get the selection for each node in the problem use the getSelection method.
73 /// \brief Set the selection for a given node.
75 /// @param selection Selection for nItr.
76 void setSelection(Graph::NodeItr nItr, unsigned selection) {
77 selections[nItr] = selection;
80 /// \brief Get a node's selection.
82 /// @return The selection for nItr;
85 assert(sItr != selections.end() && "No selection for node.");
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatResponseMessage.java 36 public void setMenuSelection(int selection) {
37 mUsersMenuSelection = selection;
  /packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
NaughtySuggestionProvider.java 48 public int update(Uri uri, ContentValues values, String selection,
54 public int delete(Uri uri, String selection, String[] selectionArgs) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileProvider.java 76 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
78 return query(uri, projection, selection, selectionArgs, sortOrder, null);
82 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
85 return mDelegate.queryLocal(uri, projection, selection, selectionArgs, sortOrder, -1,
97 protected int updateInTransaction(Uri uri, ContentValues values, String selection,
101 return mDelegate.updateInTransaction(uri, values, selection, selectionArgs);
105 protected int deleteInTransaction(Uri uri, String selection, String[] selectionArgs) {
108 return mDelegate.deleteInTransaction(uri, selection, selectionArgs);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoringAction.java 59 * Examine the selection to determine if the action should be enabled or not.
61 * Keep a link to the relevant selection structure
64 public void selectionChanged(IAction action, ISelection selection) {
70 // This simply deals with the refactoring based on a non-empty selection.
80 if (selection instanceof ITextSelection) {
81 mTextSelection = (ITextSelection) selection;
84 } else if (selection instanceof ITreeSelection) {
85 Object firstElement = ((ITreeSelection)selection).getFirstElement();
87 mTreeSelection = (ITreeSelection) selection;
106 * Returns the active {@link IFile} (hopefully matching our selection) or null
163 ISelection selection = site.getSelectionProvider().getSelection(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ClearLintMarkersAction.java 32 public void selectionChanged(IAction action, ISelection selection) {
33 mSelection = selection;

Completed in 447 milliseconds

12 3 4 5 6 7 8 91011>>