/cts/tests/tests/content/src/android/content/cts/ |
ContentResolverTest.java | 321 String selection = COLUMN_ID_NAME + "=1"; local 322 mCursor = mContentResolver.query(TABLE1_URI, null, selection, null, null); 333 selection = COLUMN_KEY_NAME + "=\"" + KEY3 + "\""; 334 mCursor = mContentResolver.query(TABLE1_URI, null, selection, null, null); 789 // test delete row using selection 790 String selection = COLUMN_ID_NAME + "=2"; local 791 assertEquals(1, mContentResolver.delete(TABLE1_URI, selection, null)); 870 String selection = COLUMN_ID_NAME + "=1"; local [all...] |
/external/chromium_org/ppapi/cpp/ |
input_event.cc | 309 const std::pair<uint32_t, uint32_t>& selection) : InputEvent() { 317 target_segment, selection.first, selection.second));
|
input_event.h | 377 /// @param[in] selection The range returned by <code>GetSelection</code>. 384 const std::pair<uint32_t, uint32_t>& selection); 425 /// @param[out] start An integer indicating a start offset of selection range. 427 /// @param[out] end An integer indicating an end offset of selection range.
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
ApplyBlockElementCommand.cpp | 68 // When a selection ends at the start of a paragraph, we rarely paint 69 // the selection gap before that paragraph, because there often is no gap. 70 // In a case like this, it's not obvious to the user that the selection 79 VisibleSelection selection = selectionForParagraphIteration(endingSelection()); local 80 VisiblePosition startOfSelection = selection.visibleStart(); 81 VisiblePosition endOfSelection = selection.visibleEnd();
|
/frameworks/base/core/java/android/app/ |
SearchManager.java | 480 * query is being inserted. If false, the selection point will be placed at the end of the 808 String selection = searchable.getSuggestSelection(); local [all...] |
/frameworks/base/core/java/android/content/ |
ContentResolver.java | 380 * explicit values in the {@code selection} parameter, so that queries 390 * @param selection A filter declaring which rows to return, formatted as an 393 * @param selectionArgs You may include ?s in selection, which will be 395 * appear in the selection. The values will be bound as Strings. 403 String selection, String[] selectionArgs, String sortOrder) { 404 return query(uri, projection, selection, selectionArgs, sortOrder, null); 417 * explicit values in the {@code selection} parameter, so that queries 427 * @param selection A filter declaring which rows to return, formatted as an 430 * @param selectionArgs You may include ?s in selection, which will be 432 * appear in the selection. The values will be bound as Strings [all...] |
/frameworks/base/core/java/android/provider/ |
DocumentsProvider.java | 411 public final Cursor query(Uri uri, String[] projection, String selection, 480 public final int delete(Uri uri, String selection, String[] selectionArgs) { 490 Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
/frameworks/base/media/java/android/media/ |
RingtoneManager.java | 550 String selection, 554 return mActivity.managedQuery(uri, projection, selection, selectionArgs, sortOrder); 556 return mContext.getContentResolver().query(uri, projection, selection, selectionArgs,
|
/packages/apps/Mms/src/com/android/mms/ |
SuggestionsProvider.java | 49 public int delete(Uri uri, String selection, String[] selectionArgs) { 69 public Cursor query(Uri uri, String[] projection, String selection, 85 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
/packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/ |
SourceLatency.java | 189 // get the query selection, may be null 190 String selection = searchable.getSuggestSelection(); local 191 // inject query, either as selection args or inline 193 if (selection != null) { // use selection if provided 195 } else { // no selection, use REST pattern 207 return getContentResolver().query(uri, null, selection, selArgs, null);
|
/external/chromium-trace/trace-viewer/src/tracing/ |
timeline_view.css | 86 .timeline-view .selection { 90 .timeline-view .selection ul {
|
/external/chromium_org/chrome/browser/android/provider/ |
chrome_browser_provider.cc | 754 const std::string& selection, 759 base::Unretained(service()), projections, selection, 788 const std::string& selection, 792 base::Unretained(service()), row, selection, 820 int Run(const std::string& selection, 824 base::Unretained(service()), selection, selection_args, 852 int Run(const std::string& selection, 856 base::Unretained(service()), selection, [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
image_burner.css | 175 #device-selection { 179 #main-content.device-detected-mul #device-selection {
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTextFormControlElement.h | 72 PassRefPtr<Range> selection() const;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TextEditor.js | 206 selection: function() { },
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
closebrackets.js | 43 var selection = cm.getSelection(); 44 cm.replaceSelection(left + selection + right);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebRange.cpp | 120 Element* selectionRoot = webFrame->selection().rootEditableElement();
|
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/linux/ |
main_wnd.cc | 84 GtkTreeSelection* selection = gtk_tree_view_get_selection(tree_view); local 85 gtk_tree_selection_select_path(selection, lastpath); 392 GtkTreeSelection* selection = local 394 if (gtk_tree_selection_get_selected(selection, &model, &iter)) {
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data_provider_aurax11.h | 36 // |x_window| is the window the cursor is over, and |selection| is the set of 39 const SelectionFormatMap& selection); 52 // selection. 124 // to |selection_owner_| when we take the selection.
|
/external/chromium_org/ui/base/x/ |
selection_requestor.cc | 98 if (selection_name_ == event.selection) {
|
/external/chromium_org/ui/views/controls/textfield/ |
textfield_views_model.h | 48 // It supports editing, selection and cursor manipulation. 127 // Moves the selection to the specified selection in |selection|. 129 // selection range, and it overrides the selection_start to which the 130 // selection will move to. 131 bool MoveCursorTo(const gfx::SelectionModel& selection); 136 // Selection related method 141 // The current composition text will be confirmed. The selection starts with 147 // render_text_'s selection model is set to |sel| [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/ |
TestCursor.java | 208 * Mimics ContentResolver.query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) 210 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/database/ |
SimpleTestCursorTest.java | 39 contentResolver.query(uri, new String[]{"projection"}, "selection", new String[]{"selection"}, "sortOrder"); 42 assertThat(cursor.selection, equalTo("selection")); 43 assertThat(cursor.selectionArgs[0], equalTo("selection"));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiElementDetail.java | 98 * Called when the provided part has changed selection state. 100 * Only reply when our master part originates the selection. 103 public void selectionChanged(IFormPart part, ISelection selection) { 105 !selection.isEmpty() && 106 selection instanceof ITreeSelection) { 107 ITreeSelection tree_selection = (ITreeSelection) selection;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
MainLaunchConfigTab.java | 152 // event are received for both selection and deselection, so we only process 153 // the selection event to avoid doing it twice. 167 // event are received for both selection and deselection, so we only process 168 // the selection event to avoid doing it twice. 197 // event are received for both selection and deselection, so we only process 198 // the selection event to avoid doing it twice. 230 int selection = mActivityCombo.getSelectionIndex(); local 231 if (mActivities != null && selection >=0 && selection < mActivities.size()) { 233 mActivities.get(selection).getName()) [all...] |