HomeSort by relevance Sort by last modified time
    Searched refs:selection (Results 1 - 25 of 873) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SurroundingTextTest.cpp 45 Element* element = document().getElementById("selection");
46 VisibleSelection selection; local
47 selection.setBase(Position(toText(element->firstChild()), start));
48 selection.setExtent(Position(toText(element->firstChild()), end));
49 return selection;
54 setHTML(String("<p id='selection'>foo bar</p>"));
57 VisibleSelection selection = select(0); local
58 SurroundingText surroundingText(selection.start(), 1);
66 VisibleSelection selection = select(0); local
67 SurroundingText surroundingText(selection.start(), 5)
76 VisibleSelection selection = select(0); local
87 VisibleSelection selection = select(7); local
96 VisibleSelection selection = select(6); local
105 VisibleSelection selection = select(6); local
119 VisibleSelection selection = select(0, 5); local
128 VisibleSelection selection = select(0, 5); local
137 VisibleSelection selection = select(0, 5); local
146 VisibleSelection selection = select(6, 11); local
155 VisibleSelection selection = select(6, 11); local
169 VisibleSelection selection = select(0); local
178 VisibleSelection selection = select(0); local
187 VisibleSelection selection = select(0); local
196 VisibleSelection selection = select(6); local
205 VisibleSelection selection = select(6); local
219 VisibleSelection selection = select(0, 1); local
228 VisibleSelection selection = select(0, 3); local
237 VisibleSelection selection = select(0, 3); local
246 VisibleSelection selection = select(4, 7); local
255 VisibleSelection selection = select(0, 7); local
    [all...]
VisibleSelectionTest.cpp 42 VisibleSelection& selection() { return m_wrap->m_selection; } function in class:WebCore::VisibleSelectionTest
78 EXPECT_FALSE(selection().isNone());
79 EXPECT_TRUE(selection().isCaret());
81 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
92 selection().expandUsingGranularity(WordGranularity);
94 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
103 selection().expandUsingGranularity(WordGranularity);
105 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
116 selection().expandUsingGranularity(WordGranularity);
118 RefPtrWillBeRawPtr<Range> range = selection().firstRange()
    [all...]
EditCommand.cpp 43 setStartingSelection(m_document->frame()->selection().selection());
73 void EditCommand::setStartingSelection(const VisibleSelection& selection)
78 composition->setStartingSelection(selection);
80 command->m_startingSelection = selection;
91 void EditCommand::setEndingSelection(const VisibleSelection& selection)
96 composition->setEndingSelection(selection);
98 command->m_endingSelection = selection;
Editor.cpp 104 m_editor->m_frame.selection().revealSelection(ScrollAlignment::alignToEdgeIfNeeded, RevealExtent);
107 // When an event handler has moved the selection outside of a text control
108 // we should use the target control's selection for this editing operation.
111 VisibleSelection selection = m_frame.selection().selection(); local
113 return selection;
114 // If the target is a text control, and the current selection is outside of its shadow tree,
115 // then use the saved selection for that text control.
116 HTMLTextFormControlElement* textFormControlOfSelectionStart = enclosingTextFormControl(selection.start())
246 FrameSelection& selection = m_frame.selection(); local
1181 VisibleSelection selection = m_frame.selection().selection(); local
    [all...]
  /packages/providers/TvProvider/src/com/android/providers/tv/util/
SqlParams.java 26 public SqlParams(String tables, String selection, String... selectionArgs) {
28 setWhere(selection, selectionArgs);
47 public void setWhere(String selection, String... selectionArgs) {
48 mSelection = selection;
52 public void appendWhere(String selection, String... selectionArgs) {
53 mSelection = DatabaseUtils.concatenateWhere(mSelection, selection);
  /external/chromium-trace/trace-viewer/src/tracing/
record_selection_dialog.css 6 .record-selection-dialog {
11 .record-selection-dialog .default-enabled-categories {
15 .record-selection-dialog .default-disabled-categories {
21 .record-selection-dialog .categories {
26 .record-selection-dialog form {
34 .record-selection-dialog .options {
40 .record-selection-dialog td {
44 .record-selection-dialog .options label {
  /external/chromium_org/ui/base/ime/
composition_text.cc 18 selection = gfx::Range();
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
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMSelection.cpp 52 Node* node = frame->selection().selection().base().anchorNode();
77 return m_frame->selection().selection();
80 static Position anchorPosition(const VisibleSelection& selection)
82 Position anchor = selection.isBaseFirst() ? selection.start() : selection.end();
86 static Position focusPosition(const VisibleSelection& selection)
88 Position focus = selection.isBaseFirst() ? selection.end() : selection.start()
230 const VisibleSelection& selection = m_frame->selection().selection(); local
245 const VisibleSelection& selection = m_frame->selection().selection(); local
409 FrameSelection& selection = m_frame->selection(); local
    [all...]
  /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/chromium_org/ui/gfx/
selection_model.cc 20 SelectionModel::SelectionModel(const Range& selection,
22 : selection_(selection),
26 return selection_ == sel.selection() &&
32 if (selection().is_empty())
35 str += selection().ToString();
  /packages/apps/Calendar/src/com/android/calendar/alerts/
DismissAlarmsService.java 74 String selection; local
79 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED + " AND " +
83 selection = buildMultipleEventsQuery(eventIds);
89 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED;
97 resolver.update(uri, values, selection, null);
117 StringBuilder selection = new StringBuilder(); local
118 selection.append(CalendarAlerts.STATE);
119 selection.append("=");
120 selection.append(CalendarAlerts.STATE_FIRED);
122 selection.append(" AND (")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
CSSSourceFrame.js 76 var selection = this.textEditor.selection().normalize();
77 var token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn);
79 if (selection.startColumn > 0)
80 token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn - 1);
87 var cssUnitRange = new WebInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn + 1);
93 selection.startColumn = token.startColumn
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
ConfirmationCallback.java 60 private int selection; field in class:ConfirmationCallback
203 return selection;
206 public void setSelectedIndex(int selection) {
208 if (0 <= selection && selection <= options.length) {
209 this.selection = selection;
216 if (selection != YES && selection != NO) {
221 if (selection != YES && selection != NO && selection != CANCEL)
    [all...]
  /external/chromium_org/chrome/browser/history/
history_backend_android.cc 27 const std::string& selection,
36 projections, selection, selection_args, sort_order);
44 const std::string& selection,
53 selection, selection_args, &count);
61 const std::string& selection,
69 result = android_provider_backend_->DeleteHistoryAndBookmarks(selection,
77 const std::string& selection,
85 result = android_provider_backend_->DeleteHistory(selection, selection_args,
135 const std::string& selection,
143 result = android_provider_backend_->UpdateSearchTerms(row, selection,
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
RewriteElseBlocks.cpp 55 TIntermSelection *selection = statement->getAsSelectionNode(); local
56 if (selection && selection->getFalseBlock() != NULL)
59 TIntermSelection *elseIfBranch = selection->getFalseBlock()->getAsSelectionNode();
62 selection->replaceChildNode(elseIfBranch, rewriteSelection(elseIfBranch));
66 node->getSequence()[statementIndex] = rewriteSelection(selection);
67 delete selection;
84 TIntermNode *ElseBlockRewriter::rewriteSelection(TIntermSelection *selection)
86 ASSERT(selection->getFalseBlock() != NULL);
89 TIntermTyped *typedCondition = selection->getCondition()->getAsTyped()
    [all...]
  /frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DisabledProvider.java 34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
EnabledProvider.java 34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
TestProvider.java 33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
49 public int delete(Uri uri, String selection, String[] selectionArgs) {
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
TestReceiver.java 33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
49 public int delete(Uri uri, String selection, String[] selectionArgs) {
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
NullProvider.java 15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
26 public int delete(Uri uri, String selection, String[] selectionArgs) {
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/base/core/tests/coretests/apks/version_nosys/src/com/android/frameworks/coretests/version_test/
NullProvider.java 15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
26 public int delete(Uri uri, String selection, String[] selectionArgs) {
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
Provider.java 32 String selection, String[] selectionArgs,
43 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_selection.js 8 * The current selection object.
75 // Collect all of the mime types and push that info into the selection.
149 * This object encapsulates everything related to current selection.
210 * Update the UI when the selection model changes.
217 if (this.selection) this.selection.cancelComputing_();
218 var selection = new FileSelection(this.fileManager_, indexes);
219 this.selection = selection;
224 if (this.selection.totalCount == 1 &
    [all...]
  /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));

Completed in 1463 milliseconds

1 2 3 4 5 6 7 8 91011>>