/external/chromium_org/third_party/WebKit/Source/core/editing/ |
TypingCommand.cpp | 98 if (!frame->selection().isRange()) 148 VisibleSelection currentSelection = frame->selection().selection(); 164 insertText(document, text, frame->selection().selection(), options, composition); 167 // FIXME: We shouldn't need to take selectionForInsertion. It should be identical to FrameSelection's current selection. 173 VisibleSelection currentSelection = frame->selection().selection(); 177 // Set the starting and ending selection appropriately if we are using a selection 423 FrameSelection selection; local 525 FrameSelection selection; local [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteQueryBuilder.java | 87 * by parenthesis and ANDed with the selection passed to {@link #query}. The final 90 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>) 106 * by parenthesis and ANDed with the selection passed to {@link #query}. The final 109 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>) 151 * When set, the selection is verified against malicious arguments. 160 * additionally also parenthesis escaping selection are caught. 269 * @param selection A filter declaring which rows to return, 272 * @param selectionArgs You may include ?s in selection, which 274 * that they appear in the selection. The values will be bound 292 String selection, String[] selectionArgs, String groupBy [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
ArrowKeyMovementMethodTest.java | 24 import android.text.Selection; 111 Selection.removeSelection(mEditable); 120 Selection.removeSelection(mEditable); 139 Selection.removeSelection(mEditable); 147 Selection.removeSelection(mEditable); 181 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE); 192 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE); 201 assertEquals(SPACE_IN_2ND_LINE, Selection.getSelectionStart(mEditable)); 202 int correspondingIn1stLine = Selection.getSelectionEnd(mEditable); 215 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE) [all...] |
/external/chromium_org/content/browser/web_contents/ |
touch_editable_impl_aura_browsertest.cc | 165 // Tap inside selection to bring up selection handles. 171 std::string selection; local 172 value->GetAsString(&selection); 174 // Check if selection handles are showing. 176 EXPECT_STREQ("Some text we can select", selection.c_str()); 178 // Lets move the handles a bit to modify the selection 189 value->GetAsString(&selection); 191 // It is hard to tell what exactly the selection would be now. But it would 193 EXPECT_GT(std::strlen("Some text we can select"), selection.size()) 234 std::string selection; local 277 std::string selection; local [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
SelectionHandleController.java | 30 /** Whether selection anchors are active. */ 45 /** Automatically show selection anchors when text is selected. */ 50 /** Hide selection anchors, and don't automatically show them. */ 75 * Updates the selection for a movement of the given handle (which 78 * selectBetweenCoordinates(x1,y1,x2,y2) will trigger the selection and set the 94 * The concrete implementation must trigger a selection between the given 96 * after the selection is made via set[Start|End]HandlePosition. 101 * @return true iff this controller is being used to move the selection start. 108 * @return true iff this controller is being used to drag either the selection start or end. 174 * Note: this method does not trigger a selection, se [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...] |
/packages/apps/Browser/src/com/android/browser/provider/ |
BrowserProvider2.java | 1173 String selection = (String) withAccount[0]; local [all...] |
/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...] |
/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/browser/history/android/ |
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...] |
/frameworks/ex/common/java/com/android/common/ |
Search.java | 103 // get the query selection, may be null 104 String selection = searchable.getSuggestSelection(); local 105 // inject query, either as selection args or inline 107 if (selection != null) { 109 } else { // no selection, use REST pattern 121 return context.getContentResolver().query(uri, null, selection, selArgs, null);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
VoicemailStatusTable.java | 77 public int delete(UriData uriData, String selection, String[] selectionArgs) { 79 String combinedClause = concatenateClauses(selection, uriData.getWhereClause()); 85 public Cursor query(UriData uriData, String[] projection, String selection, 92 String combinedClause = concatenateClauses(selection, uriData.getWhereClause()); 102 public int update(UriData uriData, ContentValues values, String selection, 105 String combinedClause = concatenateClauses(selection, uriData.getWhereClause());
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsSmsProvider.java | 296 String selection, String[] selectionArgs, String sortOrder) { 301 cursor = getCompleteConversations(projection, selection, sortOrder); 308 selection = concatSelections( 309 selection, Threads.TYPE + "=" + threadType); 312 projection, selection, selectionArgs, sortOrder); 315 projection, selection, sortOrder); 320 selection, sortOrder); 324 uri.getPathSegments().get(1), projection, selection, 329 uri.getPathSegments().get(1), projection, selection, 334 uri.getPathSegments().get(2), projection, selection, sortOrder) 493 String selection = "address=?"; local [all...] |
/external/chromium-trace/trace-viewer/src/tracing/ |
timeline_track_view.js | 26 base.require('tracing.selection'); 37 var Selection = tracing.Selection; 134 this.selection_ = new Selection(); 237 * @param {Selection} selection The selection to add matches to. 241 addAllObjectsMatchingFilterToSelection: function(filter, selection) { 243 selection); 357 sel = this.selection.getShiftedSelection(-1) [all...] |
/cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/ |
AmbiguousContentProvider.java | 34 public int delete(Uri uri, String selection, String[] selectionArgs) { 55 public Cursor query(Uri uri, String[] projection, String selection, 61 public int update(Uri uri, ContentValues values, String selection,
|
PermissionContentProvider.java | 34 public int delete(Uri uri, String selection, String[] selectionArgs) { 55 public Cursor query(Uri uri, String[] projection, String selection, 61 public int update(Uri uri, ContentValues values, String selection,
|
PermissionContentProviderGranting.java | 34 public int delete(Uri uri, String selection, String[] selectionArgs) { 55 public Cursor query(Uri uri, String[] projection, String selection, 61 public int update(Uri uri, ContentValues values, String selection,
|
PermissionContentProviderPathRestricting.java | 34 public int delete(Uri uri, String selection, String[] selectionArgs) { 55 public Cursor query(Uri uri, String[] projection, String selection, 61 public int update(Uri uri, ContentValues values, String selection,
|
PrivateContentProvider.java | 34 public int delete(Uri uri, String selection, String[] selectionArgs) { 55 public Cursor query(Uri uri, String[] projection, String selection, 61 public int update(Uri uri, ContentValues values, String selection,
|
PrivateContentProviderGranting.java | 34 public int delete(Uri uri, String selection, String[] selectionArgs) { 55 public Cursor query(Uri uri, String[] projection, String selection, 61 public int update(Uri uri, ContentValues values, String selection,
|
/cts/hostsidetests/appsecurity/test-apps/PermissionDeclareAppCompat/src/com/android/cts/permissiondeclareappcompat/ |
AmbiguousContentProvider.java | 34 public int delete(Uri uri, String selection, String[] selectionArgs) { 55 public Cursor query(Uri uri, String[] projection, String selection, 61 public int update(Uri uri, ContentValues values, String selection,
|
/external/chromium/chrome/browser/ui/cocoa/applescript/examples/ |
tab_manipulation.applescript | 26 cut selection -- Cut a piece of text and place it on the system clipboard. 28 copy selection -- Copy a piece of text and place it on the system clipboard. 30 paste selection -- Paste a text from the system clipboard.
|
/external/chromium/chrome/browser/ui/ |
shell_dialogs.cc | 52 // Show the InfoBar saying that file-selection dialogs are disabled. 60 LOG(WARNING) << "File-selection dialogs are disabled but no TabContents " 74 // Call the platform specific implementation of the file selection dialog.
|
/external/chromium_org/chrome/browser/ui/cocoa/applescript/examples/ |
tab_manipulation.applescript | 26 cut selection -- Cut a piece of text and place it on the system clipboard. 28 copy selection -- Copy a piece of text and place it on the system clipboard. 30 paste selection -- Paste a text from the system clipboard.
|
/external/chromium_org/chrome/browser/ui/cocoa/media_picker/ |
desktop_media_picker_controller.h | 28 // The button used to confirm the selection. 38 // To be called with the user selection. 54 // |callback| will be called to report the user's selection.
|