Searched defs:start (Results 26 - 50 of 488) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/text/
H A DTextWatcher.java26 * the <code>count</code> characters beginning at <code>start</code>
31 public void beforeTextChanged(CharSequence s, int start, argument
35 * the <code>count</code> characters beginning at <code>start</code>
40 public void onTextChanged(CharSequence s, int start, int before, int count); argument
H A DSpanSet.java45 public void init(Spanned spanned, int start, int limit) { argument
46 final E[] allSpans = spanned.getSpans(start, limit, classType);
78 * @param end must be strictly greater than start
80 public boolean hasSpansIntersecting(int start, int end) { argument
83 if (spanStarts[i] >= end || spanEnds[i] <= start) continue;
92 int getNextTransition(int start, int limit) { argument
96 if (spanStart > start && spanStart < limit) limit = spanStart;
97 if (spanEnd > start && spanEnd < limit) limit = spanEnd;
/frameworks/base/core/java/android/text/style/
H A DLineBackgroundSpan.java28 CharSequence text, int start, int end,
25 drawBackground(Canvas c, Paint p, int left, int right, int top, int baseline, int bottom, CharSequence text, int start, int end, int lnum) argument
H A DLineHeightSpan.java25 public void chooseHeight(CharSequence text, int start, int end, argument
30 public void chooseHeight(CharSequence text, int start, int end, argument
H A DReplacementSpan.java26 int start, int end,
29 int start, int end, float x,
25 getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) argument
28 draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DBiometricSensorUnlock.java31 * {@link BiometricSensorUnlock#start} is called, isRunning() returns false. After a successful
32 * call to {@link BiometricSensorUnlock#start}, isRunning() returns true until the biometric
49 public boolean start(); method in interface:BiometricSensorUnlock
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSystemAudioActionFromAvr.java44 boolean start() { method in class:SystemAudioActionFromAvr
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DCameraTestThread.java38 * Create and start a looper thread, return the Handler
40 public synchronized Handler start() throws Exception { method in class:CameraTestThread
50 if (VERBOSE) Log.v(TAG, "start loopRun");
60 }.start();
62 if (VERBOSE) Log.v(TAG, "start waiting for looper");
64 throw new TimeoutException("createLooperThread: start timeout");
74 Log.w(TAG, "Looper thread doesn't start yet");
/frameworks/ex/common/java/com/android/common/
H A DRfc822InputFilter.java33 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, argument
37 if (end-start != 1 || source.charAt(start) != ' ') {
/frameworks/minikin/libs/minikin/
H A DGraphemeBreak.cpp25 bool GraphemeBreak::isGraphemeBreak(const uint16_t* buf, size_t start, size_t count, argument
33 if (offset <= start || offset >= start + count) {
43 U16_PREV(buf, start, offset_back, c1);
100 size_t GraphemeBreak::getTextRunCursor(const uint16_t* buf, size_t start, size_t count, argument
104 if (offset < start + count) {
109 while (!isGraphemeBreak(buf, start, count, offset)) {
114 if (offset > start) {
119 while (!isGraphemeBreak(buf, start, count, offset)) {
124 if (!isGraphemeBreak(buf, start, coun
[all...]
/frameworks/native/services/inputflinger/
H A DInputManager.cpp53 status_t InputManager::start() { function in class:android::InputManager
56 ALOGE("Could not start InputDispatcher thread due to error %d.", result);
62 ALOGE("Could not start InputReader thread due to error %d.", result);
/frameworks/native/services/surfaceflinger/
H A DDdmConnection.cpp28 DdmConnection::start(name);
31 void DdmConnection::start(const char* name) { function in class:android::DdmConnection
35 // start a VM
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/
H A DHapticFeedbackController.java43 public void start() { method in class:HapticFeedbackController
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextAttribute.java26 public int start; field in class:TextAttribute
36 public TextAttribute(int start, int length, TextAlignment align, argument
39 this.start = start;
/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, int 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/rtsp/
H A DUDPPusher.cpp62 void UDPPusher::start() { function in class:android::UDPPusher
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DBurstCapture.cpp41 status_t BurstCapture::start(Vector<CameraMetadata> &/*metadatas*/, function in class:android::camera2::BurstCapture
95 jpeg->start(buffers, 1);
/frameworks/base/core/java/android/animation/
H A DTimeAnimator.java16 public void start() { method in class:TimeAnimator
18 super.start();
/frameworks/base/core/java/android/net/
H A DRssiCurve.java39 * {@link #rssiBuckets} to a one-byte array whose element is the fixed score. {@link #start}
41 * {@link #bucketWidth} should be set such that {@code start + bucketWidth} is equal to the
57 public final int start; field in class:RssiCurve
68 * @param start the starting dBm of the curve.
72 public RssiCurve(int start, int bucketWidth, byte[] rssiBuckets) { argument
73 this.start = start;
82 start = in.readInt();
96 out.writeInt(start);
105 * @param rssi The RSSI to lookup. If the RSSI falls below the start o
[all...]
H A DUidRange.java32 public final int start; field in class:UidRange
36 if (startUid < 0) throw new IllegalArgumentException("Invalid start UID.");
39 start = startUid;
48 return start / PER_USER_RANGE;
54 result = 31 * result + start;
66 return start == other.start && stop == other.stop;
73 return start + "-" + stop;
84 dest.writeInt(start);
92 int start
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java22 * {@link #start}, then {@link #audioAvailable} until all audio has been provided, then finally
55 public int start(int sampleRateInHz, int audioFormat, int channelCount); method in interface:SynthesisCallback
80 * This method has to be called if {@link #start} and/or {@link #error} was called.
108 * Check if {@link #start} was called or not.
/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/core/jni/android/graphics/
H A DMinikinUtils.h49 const uint16_t* buf, size_t start, size_t count, size_t bufSize);
54 // f is a functor of type void f(size_t start, size_t end);
60 size_t start = 0; local
65 MinikinFontSkia::populateSkPaint(paint, curFont, layout.getFakery(start));
66 f(start, i);
69 start = i;
73 if (nGlyphs > start) {
74 MinikinFontSkia::populateSkPaint(paint, curFont, layout.getFakery(start));
75 f(start, nGlyphs);

Completed in 2882 milliseconds

1234567891011>>