Searched defs:end (Results 51 - 75 of 455) sorted by relevance

1234567891011>>

/frameworks/data-binding/samples/BindingDemo/
H A Dgradlew.bat77 :end label
/frameworks/minikin/include/minikin/
H A DFontCollection.h37 int end; member in struct:minikin::FontCollection::Run
73 uint16_t end; member in struct:minikin::FontCollection::Range
109 // mFamilyVec[mRange[0xXXYY].end] instead of whole mFamilies.
/frameworks/support/compat/tests/java/android/support/v4/testutils/
H A DTextViewActions.java146 final @Nullable Drawable top, final @Nullable Drawable end,
164 TextViewCompat.setCompoundDrawablesRelative(textView, start, top, end, bottom);
176 final @Nullable Drawable end, final @Nullable Drawable bottom) {
194 textView, start, top, end, bottom);
205 final @DrawableRes int start, final @DrawableRes int top, final @DrawableRes int end,
224 textView, start, top, end, bottom);
145 setCompoundDrawablesRelative(final @Nullable Drawable start, final @Nullable Drawable top, final @Nullable Drawable end, final @Nullable Drawable bottom) argument
174 setCompoundDrawablesRelativeWithIntrinsicBounds( final @Nullable Drawable start, final @Nullable Drawable top, final @Nullable Drawable end, final @Nullable Drawable bottom) argument
204 setCompoundDrawablesRelativeWithIntrinsicBounds( final @DrawableRes int start, final @DrawableRes int top, final @DrawableRes int end, final @DrawableRes int bottom) argument
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DTypefaceEmojiSpan.java53 @IntRange(from = 0) final int start, @IntRange(from = 0) final int end, final float x,
52 draw(@onNull final Canvas canvas, final CharSequence text, @IntRange(from = 0) final int start, @IntRange(from = 0) final int end, final float x, final int top, final int y, final int bottom, @NonNull final Paint paint) argument
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/
H A Dgradlew.bat77 :end label
/frameworks/support/samples/SupportLeanbackShowcase/
H A Dgradlew.bat77 :end label
/frameworks/wilhelm/src/ut/
H A DOpenSLESUT.c115 const Pair *end = &pairs[sizeof(pairs)/sizeof(pairs[0])]; local
116 for (p = pairs; p != end; ++p) {
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffEntryImpl.h38 TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data);
64 TiffEntryImpl<T>::TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, argument
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
/frameworks/av/services/camera/libcameraservice/utils/
H A DLatencyHistogram.cpp33 void CameraLatencyHistogram::add(nsecs_t start, nsecs_t end) { argument
34 nsecs_t duration = end - start;
/frameworks/base/apct-tests/perftests/core/src/android/text/
H A DDynamicLayoutPerfTest.java73 public int getSize(Paint paint, CharSequence text, int start, int end, FontMetricsInt fm) { argument
78 public void draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, argument
/frameworks/base/cmds/incidentd/src/
H A DReporter.h63 iterator end() { return mRequests.end(); } function in class:ReportRequestSet
/frameworks/base/core/java/android/print/
H A DPageRange.java25 * Represents a range of pages. The start and end page indices of
45 * @param end The end page index (zero based and inclusive).
47 * @throws IllegalArgumentException If start is less than zero or end
48 * is less than zero or start greater than end.
50 public PageRange(@IntRange(from = 0) int start, @IntRange(from = 0) int end) { argument
54 if (end < 0) {
55 throw new IllegalArgumentException("end cannot be less than zero.");
57 if (start > end) {
58 throw new IllegalArgumentException("start must be lesser than end
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java36 * {@link #done} must be called at the end of synthesis, regardless of errors.
167 * @param end The end index (exclusive) of the range in the input text.
169 default void rangeStart(int markerInFrames, int start, int end) {} argument
H A DUtteranceProgressListener.java140 * @param end The end index of the range (exclusive) in the utterance text.
143 public void onRangeStart(String utteranceId, int start, int end, int frame) { argument
144 onUtteranceRangeStart(utteranceId, start, end);
149 public void onUtteranceRangeStart(String utteranceId, int start, int end) { argument
/frameworks/base/core/java/android/text/
H A DCharSequenceCharacterIterator.java36 public CharSequenceCharacterIterator(@NonNull CharSequence text, int start, int end) { argument
39 mEndIndex = end;
H A DEditable.java30 * Editable with a copy of the slice <code>start&hellip;end</code> from
52 public Editable replace(int st, int en, CharSequence source, int start, int end); argument
61 * Convenience for replace(where, where, text, start, end)
64 public Editable insert(int where, CharSequence text, int start, int end); argument
85 * Convenience for replace(length(), length(), text, start, end)
88 public Editable append(CharSequence text, int start, int end); argument
H A DGraphicsOperations.java33 void drawText(BaseCanvas c, int start, int end, argument
39 void drawTextRun(BaseCanvas c, int start, int end, int contextStart, int contextEnd, argument
45 float measureText(int start, int end, Paint p); argument
50 public int getTextWidths(int start, int end, float[] widths, Paint p); argument
55 float getTextRunAdvances(int start, int end, int contextStart, int contextEnd, argument
H A DLoginFilter.java43 * with the new text from the range <code>start &hellip; end</code>
50 public CharSequence filter(CharSequence source, int start, int end, argument
65 for (int i = start; i < end; i++) {
75 modification = new SpannableStringBuilder(source, start, end);
/frameworks/base/core/java/android/text/method/
H A DScrollingMovementMethod.java85 protected boolean end(TextView widget, Spannable buffer) { method in class:ScrollingMovementMethod
/frameworks/base/core/java/android/text/style/
H A DDrawableMarginSpan.java43 CharSequence text, int start, int end,
57 public void chooseHeight(CharSequence text, int start, int end, argument
60 if (end == ((Spanned) text).getSpanEnd(this)) {
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
H A DDynamicDrawableSpan.java75 int start, int end,
93 int start, int end, float x,
74 getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) argument
92 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
H A DIconMarginSpan.java43 CharSequence text, int start, int end,
54 public void chooseHeight(CharSequence text, int start, int end, argument
57 if (end == ((Spanned) text).getSpanEnd(this)) {
41 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java64 * @param end the end of the range of text (exclusive).
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/widget/
H A DMultiAutoCompleteTextView.java96 int end = getSelectionEnd();
97 int start = mTokenizer.findTokenStart(text, end);
99 performFiltering(text, start, end, keyCode);
121 int end = getSelectionEnd();
122 if (end < 0 || mTokenizer == null) {
126 int start = mTokenizer.findTokenStart(text, end);
128 if (end - start >= getThreshold()) {
151 int end = mTokenizer.findTokenEnd(e, start);
153 CharSequence sub = e.subSequence(start, end);
171 protected void performFiltering(CharSequence text, int start, int end, argument
[all...]
H A DRtlSpacingHelper.java21 * RtlSpacingHelper manages the relationship between left/right and start/end for views
54 public void setRelative(int start, int end) { argument
56 mEnd = end;
59 if (end != UNDEFINED) mLeft = end;
63 if (end != UNDEFINED) mRight = end;

Completed in 422 milliseconds

1234567891011>>