Searched defs:start (Results 51 - 75 of 627) sorted by relevance

1234567891011>>

/frameworks/support/v4/jellybean-mr1/android/support/v4/widget/
H A DTextViewCompatJbMr1.java28 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
31 textView.setCompoundDrawables(rtl ? end : start, top, rtl ? start : end, bottom);
35 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
38 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end,
43 int start, int top, int end, int bottom) {
45 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end,
27 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
34 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
42 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, int start, int top, int end, int bottom) argument
/frameworks/support/v4/jellybean-mr2/android/support/v4/widget/
H A DTextViewCompatJbMr2.java28 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
30 textView.setCompoundDrawablesRelative(start, top, end, bottom);
34 @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end,
36 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
40 @DrawableRes int start, @DrawableRes int top, @DrawableRes int end,
42 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(start, top, end, bottom);
27 setCompoundDrawablesRelative(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
33 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @Nullable Drawable start, @Nullable Drawable top, @Nullable Drawable end, @Nullable Drawable bottom) argument
39 setCompoundDrawablesRelativeWithIntrinsicBounds(@onNull TextView textView, @DrawableRes int start, @DrawableRes int top, @DrawableRes int end, @DrawableRes int bottom) argument
/frameworks/av/cmds/stagefright/
H A DSineSource.cpp27 status_t SineSource::start(MetaData * /* params */) { function in class:android::SineSource
/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp45 virtual status_t start(int /*AudioSystem::sync_event_t*/ event, audio_session_t triggerSession) function in class:android::BpAudioRecord
55 ALOGW("start() error: %s", strerror(-status));
81 reply->writeInt32(start(event, triggerSession));
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.cpp49 void NuPlayer::NuPlayerStreamListener::start() { function in class:android::NuPlayer::NuPlayerStreamListener
/frameworks/av/media/libstagefright/filters/
H A DRSFilter.cpp61 status_t RSFilter::start() { function in class:android::RSFilter
/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp62 void UDPPusher::start() { function in class:android::UDPPusher
/frameworks/base/core/java/android/animation/
H A DTimeAnimator.java34 public void start() { method in class:TimeAnimator
36 super.start();
54 mStartTimeCommitted = true; // do not allow start time to be compensated for jank
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java30 * {@link #start}, then {@link #audioAvailable} until all audio has been provided, then finally
74 public int start(int sampleRateInHz, @SupportedAudioFormat int audioFormat, method in interface:SynthesisCallback
100 * This method has to be called if {@link #start} and/or {@link #error} was called.
128 * Check if {@link #start} was called or not.
/frameworks/base/core/java/android/text/
H A DSpanSet.java46 public void init(Spanned spanned, int start, int limit) { argument
47 final E[] allSpans = spanned.getSpans(start, limit, classType);
86 * @param end must be strictly greater than start
88 public boolean hasSpansIntersecting(int start, int end) { argument
91 if (spanStarts[i] >= end || spanEnds[i] <= start) continue;
100 int getNextTransition(int start, int limit) { argument
104 if (spanStart > start && spanStart < limit) limit = spanStart;
105 if (spanEnd > start && spanEnd < limit) limit = spanEnd;
/frameworks/base/core/java/android/text/style/
H A DReplacementSpan.java37 * @param start Start character index for span.
43 @IntRange(from = 0) int start, @IntRange(from = 0) int end,
51 * @param start Start character index for span.
60 @IntRange(from = 0) int start, @IntRange(from = 0) int end, float x,
42 getSize(@onNull Paint paint, CharSequence text, @IntRange(from = 0) int start, @IntRange(from = 0) int end, @Nullable Paint.FontMetricsInt fm) argument
59 draw(@onNull Canvas canvas, CharSequence text, @IntRange(from = 0) int start, @IntRange(from = 0) int end, float x, int top, int y, int bottom, @NonNull Paint paint) argument
/frameworks/base/core/java/com/android/internal/util/
H A DCharSequences.java40 public CharSequence subSequence(int start, int end) {
41 return forAsciiBytes(bytes, start, end);
55 * @param start index, inclusive
58 * @throws IndexOutOfBoundsException if start or end are negative, if end
59 * is greater than length(), or if start is greater than end
62 final int start, final int end) {
63 validate(start, end, bytes.length);
66 return (char) bytes[index + start];
70 return end - start;
74 newStart -= start;
61 forAsciiBytes(final byte[] bytes, final int start, final int end) argument
86 validate(int start, int end, int length) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DStopWatchMap.java43 public void start() { method in class:StopWatch
46 "Calling start with StopWatch already running");
80 public void start(String stopWatchName) { method in class:StopWatchMap
87 mStopWatches.get(stopWatchName).start();
/frameworks/base/obex/javax/obex/
H A DPrivateInputStream.java145 * @param start the start of the body to array to copy
147 public synchronized void writeBytes(byte[] body, int start) { argument
149 int length = (body.length - start) + (mData.length - mIndex);
153 System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
H A DTestJob.java40 void start() { method in class:TestJob
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DOMAParser.java66 public void characters(char[] ch, int start, int length) throws SAXException { argument
67 mCurrent.addText(ch, start, length);
/frameworks/base/packages/SystemUI/src/com/android/systemui/shortcut/
H A DShortcutKeyDispatcher.java91 public void start() { method in class:ShortcutKeyDispatcher
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DEnumerateClient.java38 public int start() { method in class:EnumerateClient
44 Slog.w(TAG, "start enumerate for user " + getTargetUserId()
73 // succeeded so we can start the next operation.
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSetArcTransmissionStateAction.java54 boolean start() { method in class:SetArcTransmissionStateAction
H A DSystemAudioAutoInitiationAction.java38 boolean start() { method in class:SystemAudioAutoInitiationAction
/frameworks/base/tools/aapt/
H A Dpseudolocalize.h10 virtual String16 start() { return String16(); } function in class:PseudoMethodImpl
34 String16 start();
49 String16 start() { return mImpl->start(); } function in class:Pseudolocalizer
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DSeekBarBindingAdapter.java39 public static void setOnSeekBarChangeListener(SeekBar view, final OnStartTrackingTouch start, argument
42 if (start == null && stop == null && progressChanged == null && attrChanged == null) {
58 if (start != null) {
59 start.onStartTrackingTouch(seekBar);
/frameworks/minikin/include/minikin/
H A DFontCollection.h36 int start; member in struct:android::FontCollection::Run
61 size_t start; member in struct:android::FontCollection::Range
/frameworks/minikin/libs/minikin/
H A DGraphemeBreak.cpp69 bool GraphemeBreak::isGraphemeBreak(const uint16_t* buf, size_t start, size_t count, argument
77 if (offset <= start || offset >= start + count) {
87 U16_PREV(buf, start, offset_back, c1);
88 U16_NEXT(buf, offset, start + count, c2);
122 start = std::max((ssize_t)start, (ssize_t)offset_back - 1000);
123 while (offset_back > start) {
124 U16_PREV(buf, start, offset_back, c1);
153 if (c1 == 0x200D && isEmoji(c2) && offset_back > start) {
180 getTextRunCursor(const uint16_t* buf, size_t start, size_t count, size_t offset, MoveOpt opt) argument
[all...]
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_single_source_alloc.java30 private int start = 23; field in class:UT_single_source_alloc
45 s.set_gStart(start);

Completed in 513 milliseconds

1234567891011>>