Searched defs:start (Results 201 - 225 of 627) sorted by path

1234567891011>>

/frameworks/base/core/java/android/view/
H A DView.java191 * not need to override all of these methods. In fact, you can start by just
2176 * Align to the start of the paragraph, e.g. ALIGN_NORMAL.
2197 * Align to the start of the view, which is ALIGN_LEFT if the view’s resolved
2380 * Flag indicating that start/end padding has been resolved into left/right padding
2389 * Flag indicating that the start/end drawables has been resolved into left/right ones.
2515 * Flag indicating that the start scroll indicator should be displayed
2516 * when this view can scroll in the start direction.
4565 // Cache start/end user padding as we cannot fully resolve padding here (we dont have yet
4592 // defined and start / end padding are defined (e.g. in Frameworks resources), then we use
4593 // start / en
9716 setAccessibilitySelection(int start, int end) argument
18712 setPaddingRelative(int start, int top, int end, int bottom) argument
19327 findViewByPredicateInsideOut(View start, Predicate<View> predicate) argument
[all...]
H A DViewGroup.java1396 // Notify itself of the drag start.
2186 // If the event targets the accessibility focused view and this is it, start
2223 // If intercepted, start normal event dispatch. Also if there is already
3499 controller.start();
4587 private void removeFromArray(int start, int count) { argument
4591 start = Math.max(0, start);
4592 final int end = Math.min(childrenCount, start + count);
4594 if (start == end) {
4599 for (int i = start;
4688 removeViewsInLayout(int start, int count) argument
4717 removeViews(int start, int count) argument
4828 removeViewsInternal(int start, int count) argument
5121 detachViewsFromParent(int start, int count) argument
7400 setMarginsRelative(int start, int top, int end, int bottom) argument
7415 setMarginStart(int start) argument
[all...]
H A DViewPropertyAnimator.java106 * (duration, start delay, interpolator, etc.).
159 * together works by posting this Runnable to start the underlying Animator. Every time
161 * and re-post it. This means that we will only ever run the Runnable (and thus start the
323 throw new IllegalArgumentException("Animators cannot have negative start " +
407 * Starts the currently pending property animations immediately. Calling <code>start()</code>
408 * is optional because all animations start automatically at the next opportunity. However,
409 * if the animations are needed to start immediately and synchronously (not at the time when
413 public void start() { method in class:ViewPropertyAnimator
903 animator.start();
910 * pending animations, awaiting the eventual start() o
[all...]
H A DViewTreeObserver.java908 CopyOnWriteArray.Access<OnGlobalLayoutListener> access = listeners.start();
928 * Notifies registered listeners that the drawing pass is about to start. If a
940 CopyOnWriteArray.Access<OnPreDrawListener> access = listeners.start();
962 CopyOnWriteArray.Access<OnWindowShownListener> access = listeners.start();
975 * Notifies registered listeners that the drawing pass is about to start.
1012 CopyOnWriteArray.Access<OnScrollChangedListener> access = listeners.start();
1044 CopyOnWriteArray.Access<OnComputeInternalInsetsListener> access = listeners.start();
1080 * CopyOnWriteArray.Access<MyData> access = array.start();
1121 Access<T> start() { method in class:ViewTreeObserver.CopyOnWriteArray
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java382 * Argument for specifying the selection start.
2425 * Gets the text selection start or the cursor position.
2432 * @return The text selection start, the cursor location if there is no selection, or -1 if
2455 * Sets the text selection start and end.
2462 * @param start The text selection start.
2467 public void setTextSelection(int start, int end) { argument
2469 mTextSelectionStart = start;
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java55 * Can be used as the start time to indicate the start time should be the current
144 * The time in milliseconds at which the animation must start;
149 * The delay in milliseconds after which the animation must start. When the
150 * start offset is > 0, the start time of the animation is startTime + startOffset.
302 * @see #start()
413 * When this animation should start relative to the start time. This is most
415 * where some of the animations components start a
516 public void start() { method in class:Animation
[all...]
H A DLayoutAnimationController.java34 * child's animation start must be offset. The delay is computed by using
300 public void start() { method in class:LayoutAnimationController
421 * parameters are used to compute the start time of each individual view's
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java96 public static void setComposingSpans(Spannable text, int start, int end) { argument
97 final Object[] sps = text.getSpans(start, end, Object.class);
117 text.setSpan(COMPOSING, start, end,
249 int start = a - beforeLength;
250 if (start < 0) start = 0;
251 content.delete(start, a);
252 deleted = a - start;
404 final int start = findIndexBackward(content, a, Math.max(beforeLength, 0));
405 if (start !
621 setComposingRegion(int start, int end) argument
662 setSelection(int start, int end) argument
[all...]
H A DInputConnection.java72 * should start by implementing
103 * before the start of the selection if there is one, and any method
166 * the cursor is really at the start of the text.</p>
444 * is relative to the start of the text. So a value of 1 will
464 * The order of start and end is not important. In effect, the
465 * region from start to end and the region from end to start is
466 * the same. Editor authors, be ready to accept a start that is
480 * @param start the position in the text at which the composing region begins
486 public boolean setComposingRegion(int start, in argument
626 setSelection(int start, int end) argument
[all...]
H A DInputConnectionWrapper.java141 public boolean setComposingRegion(int start, int end) { argument
142 return mTarget.setComposingRegion(start, end);
181 public boolean setSelection(int start, int end) { argument
182 return mTarget.setSelection(start, end);
/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java63 * @param start the beginning of the range of text (inclusive).
68 public TextInfo(CharSequence charSequence, int start, int end, int cookie, int sequenceNumber) { argument
74 new SpannableStringBuilder(charSequence, start, end);
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java256 int start,
264 int start,
255 beforeTextChanged(CharSequence s, int start, int count, int after) argument
263 onTextChanged(CharSequence s, int start, int before, int count) argument
/frameworks/base/core/java/android/widget/
H A DAbsListView.java1039 throw new IllegalStateException("AbsListView: attempted to start selection mode " +
2604 // Wipe out the current selector state so that we can start
3495 // Time to start stealing events! Once we've stolen them, don't let anyone
3688 // start of a new touch scroll
4093 mFlingRunnable.start(-initialVelocity);
4254 mFlingRunnable.start(velocityY);
4295 mFlingRunnable.start((int) velocityY);
4541 * Responsible for fling behavior. Use {@link #start(int)} to
4588 void start(int initialVelocity) { method in class:AbsListView.FlingRunnable
4792 start(velocit
5917 setComposingRegion(int start, int end) argument
5942 setSelection(int start, int end) argument
6079 beforeTextChanged(CharSequence s, int start, int count, int after) argument
6088 onTextChanged(CharSequence s, int start, int before, int count) argument
6333 setVisibleRangeHint(int start, int end) argument
7160 public abstract void start(int position); method in class:AbsListView.AbsPositionScroller
7161 public abstract void start(int position, int boundPosition); method in class:AbsListView.AbsPositionScroller
7193 public void start(final int position) { method in class:AbsListView.PositionScroller
7241 public void start(final int position, final int boundPosition) { method in class:AbsListView.PositionScroller
[all...]
H A DAutoCompleteTextView.java860 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
863 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
H A DChronometer.java37 * You can give it a start time in the {@link SystemClock#elapsedRealtime} timebase,
39 * time at which you call {@link #start}.
213 * make sure that each start() call has a reciprocal call to {@link #stop}.
215 public void start() { method in class:Chronometer
225 * be held as the chronometer is running, via {@link #start}.
233 * The same as calling {@link #start} or {@link #stop}.
H A DDayPickerView.java360 private int getDiffMonths(Calendar start, Calendar end) { argument
361 final int diffYears = end.get(Calendar.YEAR) - start.get(Calendar.YEAR);
362 return end.get(Calendar.MONTH) - start.get(Calendar.MONTH) + 12 * diffYears;
H A DEditText.java95 public void setSelection(int start, int stop) { argument
96 Selection.setSelection(getText(), start, stop);
H A DEditor.java244 // Set when this TextView gained focus with some text selected. Will start selection mode.
668 private void updateSpellCheckSpans(int start, int end, boolean createSpellChecker) { argument
670 mTextView.removeAdjacentSuggestionSpans(start);
679 mSpellChecker.spellCheck(start, end);
765 // On punctuation boundary or within group of punctuation, find punctuation start.
768 // Not on a punctuation boundary, find the word start.
887 final int start = TextUtils.unpackRangeStartFromLong(paragraphsRange);
889 if (start < end) {
890 Selection.setSelection((Spannable) mTextView.getText(), start, end);
906 // Search paragraph start
1248 sendOnTextChanged(int start, int after) argument
1807 invalidateTextDisplayList(Layout layout, int start, int end) argument
2349 getTextThumbnailBuilder(int start, int end) argument
2381 public int start, end; field in class:Editor.DragLocalState
2383 DragLocalState(TextView sourceTextView, int start, int end) argument
2695 onSpanAdded(Spannable text, Object span, int start, int end) argument
2752 onSpanRemoved(Spannable text, Object span, int start, int end) argument
5687 isValidRange(CharSequence text, int start, int end) argument
5745 filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
5771 handleCompositionEdit(CharSequence source, int start, int end, int dstart) argument
5798 handleKeyboardEdit(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
5850 canUndoEdit(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
[all...]
H A DExpandableListView.java300 * Resolve start/end indicator. start/end indicator always takes precedence over left/right
326 * Resolve start/end child indicator. start/end child indicator always takes precedence over
1168 * to start drawing the indicator.
1184 * @param start The start position (relative to the start bounds of this View)
1185 * to start drawing the indicator.
1189 public void setChildIndicatorBoundsRelative(int start, in argument
1238 setIndicatorBoundsRelative(int start, int end) argument
[all...]
H A DGridLayout.java699 private static boolean fits(int[] a, int value, int start, int end) { argument
703 for (int i = start; i < end; i++) {
711 private static void procrusteanFill(int[] a, int start, int end, int value) { argument
713 Arrays.fill(a, Math.min(start, length), Math.min(end, length), value);
838 " indices (start + span) mustn't exceed the " + groupName + " count");
2542 private Spec(boolean startDefined, int start, int size, Alignment alignment, float weight) { argument
2543 this(startDefined, new Interval(start, start + size), alignment, weight);
2611 * <li> {@code spec.span = [start, start
2623 spec(int start, int size, Alignment alignment, float weight) argument
2634 spec(int start, Alignment alignment, float weight) argument
2647 spec(int start, int size, float weight) argument
2657 spec(int start, float weight) argument
2668 spec(int start, int size, Alignment alignment) argument
2686 spec(int start, Alignment alignment) argument
2703 spec(int start, int size) argument
2719 spec(int start) argument
[all...]
H A DMediaController.java465 show(sDefaultTimeout); // start timeout
500 mPlayer.start();
555 mPlayer.start();
698 void start(); method in interface:MediaController.MediaPlayerControl
H A DMultiAutoCompleteTextView.java97 int start = mTokenizer.findTokenStart(text, end);
99 performFiltering(text, start, end, keyCode);
126 int start = mTokenizer.findTokenStart(text, end);
128 if (end - start >= getThreshold()) {
150 int start = mTokenizer.findTokenStart(e, i);
151 int end = mTokenizer.findTokenEnd(e, start);
153 CharSequence sub = e.subSequence(start, end);
155 e.replace(start, i, "");
157 e.replace(start, i,
161 i = start;
171 performFiltering(CharSequence text, int start, int end, int keyCode) argument
[all...]
H A DNumberPicker.java1711 // Wrap around the values if we go past the start or end
2092 CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
2094 CharSequence filtered = super.filter(source, start, end, dest, dstart, dend);
2096 filtered = source.subSequence(start, end);
2120 CharSequence filtered = String.valueOf(source.subSequence(start, end));
2091 filter( CharSequence source, int start, int end, Spanned dest, int dstart, int dend) argument
H A DOverScroller.java187 * Returns the start X offset in the scroll.
189 * @return The start X offset as an absolute distance from the origin.
196 * Returns the start Y offset in the scroll.
198 * @return The start Y offset as an absolute distance from the origin.
491 * the fact that the started scroll will start from an overscrolled position.
660 * Modifies mDuration to the duration it takes to get from start to newFinal using the
663 private void adjustDuration(int start, int oldFinal, int newFinal) { argument
664 final int oldDistance = oldFinal - start;
665 final int newDistance = newFinal - start;
678 void startScroll(int start, in argument
712 springback(int start, int min, int max) argument
730 startSpringback(int start, int end, int velocity) argument
744 fling(int start, int velocity, int min, int max, int over) argument
797 fitOnBounceCurve(int start, int end, int velocity) argument
811 startBounceAfterEdge(int start, int end, int velocity) argument
817 startAfterEdge(int start, int min, int max, int velocity) argument
840 notifyEdgeReached(int start, int end, int over) argument
[all...]
H A DRemoteViews.java2482 * @param start The id of a drawable to place before the text (relative to the
2488 public void setTextViewCompoundDrawablesRelative(int viewId, int start, int top, int end, int bottom) { argument
2489 addAction(new TextViewDrawableAction(viewId, true, start, top, end, bottom));
2537 * @param start an Icon to place before the text (relative to the
2545 public void setTextViewCompoundDrawablesRelative(int viewId, Icon start, Icon top, Icon end, Icon bottom) { argument
2546 addAction(new TextViewDrawableAction(viewId, true, start, top, end, bottom));
2602 * and {@link Chronometer#start Chronometer.start()} or

Completed in 1772 milliseconds

1234567891011>>