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

12 3 4 5 6 7 8 91011>>

  /dalvik/tests/081-hot-exceptions/
info.txt 2 exceptions encountered during trace selection. The existence of exceptions will
  /external/chromium-trace/trace-viewer/src/tracing/
find_control_test.js 22 this.selection = new tracing.Selection();
48 addAllObjectsMatchingFilterToSelection: function(filter, selection) {
51 selection.push_(
98 timeline.selection = new tracing.Selection();
100 assertArrayShallowEquals([], timeline.selection);
102 assertArrayShallowEquals([], timeline.selection);
114 assertArrayShallowEquals([1], timeline.selection);
116 assertArrayShallowEquals([1], timeline.selection);
    [all...]
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
table_selection_model.js 6 * @fileoverview This is a multiple selection model for table
12 * Creates a new selection model that is to be used with tables.
13 * This implementation supports multiple selection.
16 * @param {number=} opt_length The number of items in the selection.
29 * Adjusts the selection after reordering of items in the table.
47 * Adjust the selection by adding or removing a certain numbers of items.
48 * This should be called by the owner of the selection model as items are
50 * This implementation updates selection model length only. The actual
table_single_selection_model.js 6 * @fileoverview This is a single selection model for table
12 * Creates a new selection model that is to be used with tables.
13 * This implementation supports single selection.
14 * Selected item is stored, not index, so selection is preserved
16 * @param {number=} opt_length The number of items in the selection.
29 * Adjusts the selection after reordering of items in the table.
43 * Adjust the selection by adding or removing a certain numbers of items.
44 * This should be called by the owner of the selection model as items are
  /frameworks/base/core/java/android/content/
EventLogTags.logtags 5 52002 content_query_sample (uri|3),(projection|3),(selection|3),(sortorder|3),(time|1|3),(blocking_package|3),(sample_percent|1|6)
6 52003 content_update_sample (uri|3),(operation|3),(selection|3),(time|1|3),(blocking_package|3),(sample_percent|1|6)
  /external/kernel-headers/original/linux/
tiocl.h 4 #define TIOCL_SETSEL 2 /* set a selection */
9 #define TIOCL_SELCLEAR 4 /* clear visibility of selection */
10 #define TIOCL_SELMOUSEREPORT 16 /* report beginning of selection */
12 /* selection extent */
18 unsigned short sel_mode; /* selection mode */
21 #define TIOCL_PASTESEL 3 /* paste previous 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));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
tiocl.h 4 #define TIOCL_SETSEL 2 /* set a selection */
9 #define TIOCL_SELCLEAR 4 /* clear visibility of selection */
10 #define TIOCL_SELMOUSEREPORT 16 /* report beginning of selection */
12 /* selection extent */
18 unsigned short sel_mode; /* selection mode */
21 #define TIOCL_PASTESEL 3 /* paste previous selection */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
tiocl.h 4 #define TIOCL_SETSEL 2 /* set a selection */
9 #define TIOCL_SELCLEAR 4 /* clear visibility of selection */
10 #define TIOCL_SELMOUSEREPORT 16 /* report beginning of selection */
12 /* selection extent */
18 unsigned short sel_mode; /* selection mode */
21 #define TIOCL_PASTESEL 3 /* paste previous selection */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
tiocl.h 4 #define TIOCL_SETSEL 2 /* set a selection */
9 #define TIOCL_SELCLEAR 4 /* clear visibility of selection */
10 #define TIOCL_SELMOUSEREPORT 16 /* report beginning of selection */
12 /* selection extent */
18 unsigned short sel_mode; /* selection mode */
21 #define TIOCL_PASTESEL 3 /* paste previous selection */
  /cts/tests/tests/text/src/android/text/method/cts/
MetaKeyKeyListenerTest.java 20 import android.text.Selection;
41 content.setSpan(Selection.SELECTION_START, 0, 0, Spanned.SPAN_POINT_POINT);
42 content.setSpan(Selection.SELECTION_END, 0, 0, Spanned.SPAN_POINT_POINT);
47 content.setSpan(Selection.SELECTION_START, 1, 1, Spanned.SPAN_POINT_POINT);
48 content.setSpan(Selection.SELECTION_END, 1, 1, Spanned.SPAN_POINT_POINT);
53 content.setSpan(Selection.SELECTION_START, 3, 3, Spanned.SPAN_POINT_POINT);
54 content.setSpan(Selection.SELECTION_END, 3, 3, Spanned.SPAN_POINT_POINT);
66 content.setSpan(Selection.SELECTION_START, 0, 0, Spanned.SPAN_POINT_POINT);
67 content.setSpan(Selection.SELECTION_END, 0, 0, Spanned.SPAN_POINT_POINT);
72 content.setSpan(Selection.SELECTION_START, 1, 1, Spanned.SPAN_POINT_POINT)
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/tracks/
slice_track_test.js 13 var Selection = tracing.Selection;
109 var selection = new Selection();
111 new tracing.TitleFilter('b'), selection);
113 assertEquals(2, selection.length);
114 assertEquals(track.slices[1], selection[0].slice);
115 assertEquals(track.slices[2], selection[1].slice);
143 var selection = new Selection();
    [all...]
  /external/chromium_org/ui/base/models/
list_selection_model.h 15 // Selection model represented as a list of ints. Used by the TabStrip. In
20 // selection extends it from this index.
28 // Used to identify no selection.
48 // Increments all indices >= |index|. For example, if the selection consists
55 // removed. For example, if the selection consists of [0, 1, 5] and this is
60 // Sets the anchor, active and selection to |index|.
66 // Adds |index| to the selection. This does not change the active or anchor
70 // Removes |index| from the selection. This does not change the active or
74 // Extends the selection from the anchor to |index|. If the anchor is empty,
75 // this sets the anchor, selection and active indices to |index|
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
layer_viewer.js 54 get selection() {
55 return this.layerTreeQuadStackViewer_.selection;
58 set selection(newValue) {
59 this.layerTreeQuadStackViewer_.selection = newValue;
63 var selection = event.newValue;
64 if (selection) {
68 var analysis = selection.createAnalysis();
  /external/chromium/chrome/browser/tabs/
tab_strip_selection_model.h 13 // Selection model used by the tab strip. In addition to the set of selected
17 // selection extends it from this index.
25 // Used to identify no selection.
45 // Increments all indices >= |index|. For example, if the selection consists
52 // removed. For example, if the selection consists of [0, 1, 5] and this is
57 // Sets the anchor, active and selection to |index|.
63 // Adds |index| to the selection. This does not change the active or anchor
67 // Removes |index| from the selection. This does not change the active or
71 // Extends the selection from the anchor to |index|. If the anchor is empty,
72 // this sets the anchor, selection and active indices to |index|
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
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/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();
  /external/clang/tools/clang-format/
clang-format-bbedit.applescript 4 -- selection. Note that you can rename the menu item by renaming the script, and
12 set selectionOffset to characterOffset of selection
13 set selectionLength to length of selection
22 -- replacing a selection flashes a bit but doesn't affect the scroll position.
25 set text of selection to newContents
  /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...]
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
PermissionContentProviderPath.java 18 public int delete(Uri uri, String selection, String[] selectionArgs) {
39 public Cursor query(Uri uri, String[] projection, String selection,
45 public int update(Uri uri, ContentValues values, String selection,
  /external/chromium-trace/trace-viewer/src/tracing/analysis/
analysis_view.js 8 * @fileoverview Displays an analysis of the selection.
60 get selection() {
64 set selection(selection) {
65 this.selections_.push(selection);
69 selection_guid: selection.guid
73 this.processSelection(selection);
98 processSelection: function(selection) {
99 var hitsByType = selection.getHitsOrganizedByType();
100 if (selection.length == 1 &
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
style-keypress-events.html 19 var selection = window.getSelection();
20 selection.setPosition(test, 0);
21 selection.modify("extend", "forward", "sentence");
  /external/chromium_org/ui/base/x/
selection_owner.h 23 // Owns a specific X11 selection on an X window.
25 // The selection owner object keeps track of which xwindow is the current
35 // Returns the current selection data. Useful for fast paths.
41 // Attempts to take ownership of the selection. If we're successful, present
45 // Releases the selection (if we own it) and clears any data we own.
59 // The X11 selection that this instance communicates on.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
SelectionBuilder.java 25 * Builds a selection clause by concatenating several clauses with AND.
32 * @param baseSelection The base selection to start with. This is typically
33 * the user supplied selection arg. Pass null if no base selection is
42 * Adds a new clause to the selection. Nothing is added if the supplied clause
53 * Returns a combined selection clause with AND of all clauses added using
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.cpp 106 m_editor->m_frame.selection().revealSelection(ScrollAlignment::alignToEdgeIfNeeded, RevealExtent);
109 // When an event handler has moved the selection outside of a text control
110 // we should use the target control's selection for this editing operation.
113 VisibleSelection selection = m_frame.selection().selection(); local
115 return selection;
116 // If the target is a text control, and the current selection is outside of its shadow tree,
117 // then use the saved selection for that text control.
118 HTMLTextFormControlElement* textFormControlOfSelectionStart = enclosingTextFormControl(selection.start())
250 FrameSelection& selection = m_frame.selection(); local
1196 VisibleSelection selection = m_frame.selection().selection(); local
    [all...]

Completed in 1480 milliseconds

12 3 4 5 6 7 8 91011>>