/external/chromium_org/third_party/WebKit/Source/core/editing/ |
SetSelectionCommand.cpp | 34 SetSelectionCommand::SetSelectionCommand(const VisibleSelection& selection, FrameSelection::SetSelectionOptions options) 35 : SimpleEditCommand(*selection.base().document()) 37 , m_selectionToSet(selection) 43 FrameSelection& selection = document().frame()->selection(); local 44 selection.setSelection(m_selectionToSet, m_options); 50 FrameSelection& selection = document().frame()->selection(); local 51 selection.setSelection(startingSelection(), m_options);
|
InsertLineBreakCommand.cpp | 93 VisibleSelection selection = endingSelection(); local 94 if (!selection.isNonOrphanedCaretOrRange()) 97 VisiblePosition caret(selection.visibleStart()); 169 RefPtr<EditingStyle> typingStyle = document().frame()->selection().typingStyle(); 172 // Apply the typing style to the inserted line break, so that if the selection
|
/external/chromium_org/ui/base/ime/ |
composition_text.h | 22 (this->selection != rhs.selection) || 46 // Selection range in the composition text. It represents the caret position 50 gfx::Range selection; member in struct:ui::CompositionText
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
DeletedContactUtil.java | 76 String selection = DeletedContacts.CONTACT_DELETED_TIMESTAMP + ">?"; local 78 Cursor cursor = resolver.query(URI, projection, selection, args, null);
|
/external/chromium/chrome/browser/ui/find_bar/ |
find_tab_helper.cc | 123 gfx::Rect selection = selection_rect; local 124 if (selection.IsEmpty()) 125 selection = last_search_result_.selection_rect(); 130 request_id, number_of_matches, selection, active_match_ordinal,
|
/external/chromium_org/chrome/browser/ui/find_bar/ |
find_tab_helper.cc | 159 gfx::Rect selection = selection_rect; local 161 selection = gfx::Rect(); 163 selection = last_search_result_.selection_rect(); 168 request_id, number_of_matches, selection, active_match_ordinal,
|
/external/chromium_org/ui/gfx/ |
selection_model.h | 33 // SelectionModel is used to represent the logical selection and visual 54 // So, besides the logical selection start point and end point, we need extra 64 // selection. The |affinity| is meaningful only when the caret is positioned 68 // Create a SelectionModel representing a selection (which may be empty). 70 SelectionModel(const Range& selection, LogicalCursorDirection affinity); 72 const Range& selection() const { return selection_; } function in class:gfx::SelectionModel 84 // TODO(benrg): Generally the selection start should not be changed without 89 // Logical selection. The logical caret position is the end of the selection.
|
/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/tests/src/com/android/providers/contacts/testutil/ |
DeletedContactUtil.java | 76 String selection = DeletedContacts.CONTACT_DELETED_TIMESTAMP + ">?"; local 78 Cursor cursor = resolver.query(URI, projection, selection, args, null);
|
/external/chromium_org/third_party/angle/src/compiler/depgraph/ |
DependencyGraph.cpp | 69 TGraphSelection* selection = new TGraphSelection(intermSelection); local 70 mAllNodes.push_back(selection); 71 return selection;
|
DependencyGraphBuilder.cpp | 183 TGraphSelection* selection = mGraph->createSelection(intermSelection); local 184 connectMultipleNodesToSingleNode(conditionNodes, selection);
|
/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;
|
/cts/tests/tests/provider/src/android/provider/cts/ |
Settings_NameValueTableTest.java | 48 String selection = NameValueTable.NAME + "=\"" + name + "\""; local 49 c = cr.query(uri, null, selection, null, null); 58 cr.delete(uri, selection, null);
|
TelephonyProviderTest.java | 87 String selection = Carriers.CURRENT + " IS NOT NULL"; local 90 APN_PROJECTION, selection, selectionArgs, null);
|
/developers/build/prebuilts/gradle/ActivityInstrumentation/ActivityInstrumentationSample/src/main/java/com/example/android/activityinstrumentation/ |
MainActivity.java | 33 * new selection is made. 85 int selection = mPrefs.getInt(PREF_SPINNER_POS, PREF_SPINNER_VALUE_ISNULL); local 86 if (selection != PREF_SPINNER_VALUE_ISNULL) { 87 mSpinner.setSelection(selection);
|
/developers/samples/android/testing/ActivityInstrumentation/ActivityInstrumentationSample/src/main/java/com/example/android/activityinstrumentation/ |
MainActivity.java | 33 * new selection is made. 85 int selection = mPrefs.getInt(PREF_SPINNER_POS, PREF_SPINNER_VALUE_ISNULL); local 86 if (selection != PREF_SPINNER_VALUE_ISNULL) { 87 mSpinner.setSelection(selection);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
RadioGroup1.java | 54 String selection = getString(R.string.radio_group_selection); local 57 mChoice.setText(selection + mRadioGroup.getCheckedRadioButtonId()); 59 // test clearing the selection 65 String selection = getString(R.string.radio_group_selection); local 67 mChoice.setText(selection +
|
/development/samples/browseable/ActivityInstrumentation/src/com.example.android.activityinstrumentation/ |
MainActivity.java | 33 * new selection is made. 85 int selection = mPrefs.getInt(PREF_SPINNER_POS, PREF_SPINNER_VALUE_ISNULL); local 86 if (selection != PREF_SPINNER_VALUE_ISNULL) { 87 mSpinner.setSelection(selection);
|
/external/chromium_org/ui/views/controls/textfield/ |
textfield_views_model_unittest.cc | 260 TEST_F(TextfieldViewsModelTest, Selection) { 279 EXPECT_EQ(gfx::Range(0, 5), model.render_text()->selection()); 284 EXPECT_EQ(gfx::Range(5, 0), model.render_text()->selection()); 305 // Selection is a logical operation. And it should work with the arrow 306 // keys doing visual movements, while the selection is logical between 307 // the (logical) start and end points. Selection is simply defined as 321 EXPECT_EQ(gfx::Range(2, 3), model.render_text()->selection()); 325 EXPECT_EQ(gfx::Range(2, 7), model.render_text()->selection()); 330 EXPECT_EQ(gfx::Range(2, 3), model.render_text()->selection()); 334 EXPECT_EQ(gfx::Range(2, 10), model.render_text()->selection()); 745 gfx::Range selection = model.render_text()->selection(); local [all...] |
/external/linux-tools-perf/util/ui/browsers/ |
top.c | 23 struct sym_entry *selection; member in struct:perf_top_browser 68 top_browser->selection = syme; 120 struct sym_entry *syme = browser->selection; 181 if (browser->selection)
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowCursorLoader.java | 15 private String selection; field in class:ShadowCursorLoader 23 public void __constructor__(Context context, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { 27 this.selection = selection; 54 return selection; 58 public void setSelection(String selection) { 59 this.selection = selection;
|
/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;
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
CursorLoaderTest.java | 19 String selection = "_id = ?"; local 25 selection, 31 assertThat(cursorLoader.getSelection(), equalTo(selection)); 40 String selection = "_id = ?"; local 46 cursorLoader.setSelection(selection); 52 assertThat(cursorLoader.getSelection(), equalTo(selection));
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
TrackerDataHelper.java | 109 String selection = (tag == null ? null : TrackerEntry.TAG + "=?"); local 113 selection, selectionArgs, null);
|
/packages/apps/Contacts/src/com/android/contacts/ |
GroupMemberLoader.java | 113 StringBuilder selection = new StringBuilder(); local 114 selection.append(Data.MIMETYPE + "=?" + " AND " + GroupMembership.GROUP_ROW_ID + "=?"); 115 return selection.toString();
|