Searched defs:start (Results 1 - 25 of 390) sorted by relevance

1234567891011>>

/frameworks/compile/libbcc/runtime/lib/
H A Dclear_cache.c24 void __clear_cache(void* start, void* end) argument
34 sys_icache_invalidate(start, end-start);
/frameworks/base/sax/java/android/sax/
H A DStartElementListener.java31 void start(Attributes attributes); method in interface:StartElementListener
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_DecodeVLCZigzag_IntraACVLC.c91 OMX_U8 start = 0; local
99 start);
H A DomxVCM4P2_EncodeVLCZigzag_Inter.c74 OMX_U8 start = 0; local
91 start,
H A DomxVCM4P2_EncodeVLCZigzag_IntraACVLC.c85 OMX_U8 start = 0; local
94 start);
H A DomxVCM4P2_DecodeVLCZigzag_Inter.c79 OMX_U8 last,start = 0; local
95 start,
H A DomxVCM4P2_DecodeVLCZigzag_IntraDCVLC.c104 OMX_U8 start = 1; local
166 start);
H A DomxVCM4P2_EncodeVLCZigzag_IntraDCVLC.c94 OMX_U8 DCValueSize, start = 1; local
157 start);
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.h33 virtual status_t start() { return mSource->start(); } function in class:android::TimedText3GPPSource
/frameworks/base/core/java/android/text/
H A DTextDirectionHeuristic.java25 boolean isRtl(char[] text, int start, int count); argument
H A DGetChars.java28 * Exactly like String.getChars(): copy chars <code>start</code>
32 public void getChars(int start, int end, char[] dest, int destoff); argument
H A DSpannedString.java33 private SpannedString(CharSequence source, int start, int end) { argument
34 super(source, start, end);
37 public CharSequence subSequence(int start, int end) { argument
38 return new SpannedString(this, start, end);
H A DInputFilter.java28 * with the new text from the range <code>start &hellip; end</code>
42 public CharSequence filter(CharSequence source, int start, int end, argument
50 public CharSequence filter(CharSequence source, int start, int end, argument
52 for (int i = start; i < end; i++) {
54 char[] v = new char[end - start];
55 TextUtils.getChars(source, start, end, v, 0);
61 start, end, null, sp, 0);
82 public CharSequence filter(CharSequence source, int start, int end, argument
88 } else if (keep >= end - start) {
91 keep += start;
[all...]
H A DSpanWatcher.java29 public void onSpanAdded(Spannable text, Object what, int start, int end); argument
34 public void onSpanRemoved(Spannable text, Object what, int start, int end); argument
H A DSpannable.java28 * Attach the specified markup object to the range <code>start&hellip;end</code>
39 public void setSpan(Object what, int start, int end, int flags); argument
H A DSpannableString.java33 private SpannableString(CharSequence source, int start, int end) { argument
34 super(source, start, end);
45 public void setSpan(Object what, int start, int end, int flags) { argument
46 super.setSpan(what, start, end, flags);
53 public final CharSequence subSequence(int start, int end) { argument
54 return new SpannableString(this, start, end);
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
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatable.java26 void start(); method in interface:Animatable
/frameworks/compile/libbcc/runtime/test/Unit/
H A Dclear_cache_test.c18 extern void __clear_cache(void* start, void* end);
39 char* start = (char*)((uintptr_t)execution_buffer & (-4095)); local
41 if ( mprotect(start, end-start, PROT_READ|PROT_WRITE|PROT_EXEC) != 0 )
/frameworks/rs/driver/
H A DrsdMesh.cpp41 void rsdMeshDraw(const Context *rsc, const Mesh *m, uint32_t primIndex, uint32_t start, uint32_t len) { argument
49 drv->renderPrimitiveRange(rsc, primIndex, start, len);
/frameworks/av/media/libstagefright/tests/
H A DDummyRecorder.cpp37 status_t DummyRecorder::start() { function in class:android::DummyRecorder
41 mSource->start();
/frameworks/base/core/java/android/os/
H A DCountDownTimer.java37 * }.start();
62 * to {@link #start()} until the countdown is done and {@link #onFinish()}
82 public synchronized final CountDownTimer start() { method in class:CountDownTimer
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisCallback.java22 * {@link #start}, then {@link #audioAvailable} until all audio has been provided, then finally
51 public int start(int sampleRateInHz, int audioFormat, int channelCount); method in interface:SynthesisCallback
/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.java27 public void chooseHeight(CharSequence text, int start, int end, argument
32 public void chooseHeight(CharSequence text, int start, int end, argument

Completed in 302 milliseconds

1234567891011>>