Searched refs:start (Results 276 - 300 of 857) sorted by relevance

<<11121314151617181920>>

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/power/
H A DMediaPlayerPowerTest.java54 mp.start();
64 // A very simple test case which start the audio player.
/frameworks/base/core/java/android/view/
H A DGLES20RecordingCanvas.java77 void start() { method in class:GLES20RecordingCanvas
251 public void drawText(CharSequence text, int start, int end, float x, float y, Paint paint) { argument
252 super.drawText(text, start, end, x, y, paint);
257 public void drawText(String text, int start, int end, float x, float y, Paint paint) { argument
258 super.drawText(text, start, end, x, y, paint);
289 public void drawTextRun(CharSequence text, int start, int end, int contextStart, argument
291 super.drawTextRun(text, start, end, contextStart, contextEnd, x, y, dir, paint);
/frameworks/base/core/java/android/widget/
H A DVideoView.java226 // called start() previously
330 // start the video here instead of in the callback.
332 start();
345 // We don't know the video size yet, but should start anyway.
348 start();
485 start();
552 start();
558 start();
585 public void start() { method in class:VideoView
587 mMediaPlayer.start();
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DNotificationPanel.java138 // Don't start the animation until we've created the layer, which is done
154 * been created in order to start the appearing animation.
274 .start();
285 a.start();
343 // the panel will start to appear this many px from the end
352 float start, end;
364 start = HYPERSPACE_OFFRAMP+end;
366 start = y;
371 start, end);
395 mContentAnim.start();
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceSet.java189 Time start = new Time(tzidParam == null ? Time.TIMEZONE_UTC : tzid);
190 boolean inUtc = start.parse(dtstart);
191 boolean allDay = start.allDay;
199 String duration = computeDuration(start, component);
218 start.timezone = Time.TIMEZONE_UTC;
220 long millis = start.toMillis(false /* use isDst */);
454 private static String computeDuration(Time start, argument
474 ? start.timezone : endTzidParameter.value;
479 - start.toMillis(false /* use isDst */);
481 if (start
[all...]
/frameworks/base/core/java/android/util/
H A DTimeUtils.java194 // tz.getID doesn't start not "GMT" so its valid
354 int start = pos;
357 pos = printField(formatStr, hours, 'h', pos, pos != start, zeropad ? 2 : 0);
358 pos = printField(formatStr, minutes, 'm', pos, pos != start, zeropad ? 2 : 0);
359 pos = printField(formatStr, seconds, 's', pos, pos != start, zeropad ? 2 : 0);
360 pos = printField(formatStr, millis, 'm', pos, true, (zeropad && pos != start) ? 3 : 0);
/frameworks/base/obex/javax/obex/
H A DClientOperation.java416 int start = 0;
421 end = ObexHelper.findHeaderEnd(headerArray, start, mMaxPacketSize
440 byte[] sendHeader = new byte[end - start];
441 System.arraycopy(headerArray, start, sendHeader, 0, sendHeader.length);
450 start = end;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp1701 uint8 *start; local
1714 if (x_pos < -8) start = ref - 8;
1715 else if (x_pos + pad_width > picwidth + 7) start = ref + picwidth + 7 - pad_width;
1716 else start = ref + x_pos;
1718 /* word-align start */
1719 offset = (intptr_t)start & 0x3;
1720 if (offset) start -= offset;
1722 word1 = *((uint32*)start);
1723 word2 = *((uint32*)(start + 4));
1724 word3 = *((uint32*)(start
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java346 protected void onTextChanged(CharSequence text, int start, int before, int after) { argument
349 mManager.updateSpanNextToCursor(getText(), start, before, after);
350 mManager.updateSpanPreviousFromCursor(getText(), start, before, after);
352 mManager.setTextComposingMask(start, start + after);
365 super.onTextChanged(text, start, before, after);
1089 int start = editable.getSpanStart(style);
1091 editable.replace(start, end, "");
1214 public void setTextComposingMask(int start, int end) { argument
1216 Log.d(TAG, "--- setTextComposingMask:" + start
1321 updateSpanPreviousFromCursor(Editable txt, int start, int before, int after) argument
1374 updateSpanNextToCursor(Editable txt, int start, int before, int after) argument
1668 setStyledTextSpan(Object span, int start, int end) argument
[all...]
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduComposer.java339 PositionMarker start = mStack.mark();
344 int len = start.getLength();
860 // content-type parameter: start
874 byte[] start = part.getContentId();
875 if (start != null) {
877 if (('<' == start[0]) && ('>' == start[start.length - 1])) {
878 appendTextString(start);
880 appendTextString("<" + new String(start)
[all...]
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp412 char* start; local
416 start = extraOptsBuf;
417 while (*start != '\0') {
418 while (*start == ' ') /* skip leading whitespace */
419 start++;
420 if (*start == '\0') /* was trailing ws, bail */
423 end = start+1;
429 opt.optionString = start;
431 start = end;
772 * If this call succeeds, the VM is ready, and we can start issuin
806 void AndroidRuntime::start(const char* className, const char* options) function in class:android::AndroidRuntime
987 void* start = ((void**)args)[0]; local
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java144 * scheme-specific part of an opaque URI cannot start with a '/'.
708 // Look for the start of the path, query, or fragment, or the
739 // Find start of path.
1395 * <p>If the path is not null and doesn't start with a '/', and if
1406 * <p>If the path is not null and doesn't start with a '/', and if
1568 int start = 0;
1570 int next = query.indexOf('&', start);
1573 int separator = query.indexOf('=', start);
1578 String name = query.substring(start, separator);
1581 // Move start t
[all...]
/frameworks/av/media/libstagefright/
H A DAudioPlayer.cpp72 status_t AudioPlayer::start(bool sourceAlreadyStarted) { function in class:android::AudioPlayer
78 err = mSource->start();
155 mAudioSink->start();
187 mAudioTrack->start();
223 mAudioSink->start();
225 mAudioTrack->start();
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DScene.java316 long start = System.currentTimeMillis();
319 Log.v(TIMER_TAG, "Transform init time: " + (end - start));
321 start = System.currentTimeMillis();
325 Log.v(TIMER_TAG, "Script init time: " + (end - start));
327 start = System.currentTimeMillis();
330 Log.v(TIMER_TAG, "Renderable init time: " + (end - start));
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java173 * be used to start the corresponding user interface activity.
459 }.start();
500 }.start();
549 }.start();
612 }.start();
886 }.start();
1055 }.start();
1122 }.start();
1205 }.start();
1266 }.start();
1378 public final AccountManagerFuture<Bundle> start() { method in class:AccountManager.AmsTask
1562 public Future2Task<T> start() { method in class:AccountManager.Future2Task
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp67 void NuPlayer::HTTPLiveSource::start() { function in class:android::NuPlayer::HTTPLiveSource
70 mLiveLooper->start();
H A DStreamingSource.cpp43 void NuPlayer::StreamingSource::start() { function in class:android::NuPlayer::StreamingSource
55 mStreamListener->start();
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_GetVLCBits.c41 * [in] start start indicates whether the encoding begins with
81 OMX_U8 start,
106 for (i = start; i < 64;)
76 armVCM4P2_GetVLCBits( const OMX_U8 **ppBitStream, OMX_INT * pBitOffset, OMX_S16 * pDst, OMX_INT shortVideoHeader, OMX_U8 start, OMX_U8 * pLast, OMX_U8 runBeginSingleLevelEntriesL0, OMX_U8 maxIndexForMultipleEntriesL0, OMX_U8 maxRunForMultipleEntriesL1, OMX_U8 maxIndexForMultipleEntriesL1, const OMX_U8 * pRunIndexTableL0, const ARM_VLC32 *pVlcTableL0, const OMX_U8 * pRunIndexTableL1, const ARM_VLC32 *pVlcTableL1, const OMX_U8 * pLMAXTableL0, const OMX_U8 * pLMAXTableL1, const OMX_U8 * pRMAXTableL0, const OMX_U8 * pRMAXTableL1, const OMX_U8 * pZigzagTable ) argument
/frameworks/base/core/java/android/content/
H A DDefaultDataHandler.java213 public void characters(char[] ch, int start, int length) argument
229 public void ignorableWhitespace(char[] ch, int start, int length) argument
/frameworks/base/core/java/android/webkit/
H A DWebCoreThreadWatchdog.java66 public synchronized static WebCoreThreadWatchdog start(Handler webCoreThreadHandler) { method in class:WebCoreThreadWatchdog
69 new Thread(sInstance, "WebCoreThreadWatchdog").start();
214 // Send the initial control to WebViewCore and start the timeout timer as long as we aren't
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardPasswordView.java112 public void onTextChanged(CharSequence s, int start, int before, int count) {
115 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
140 // If no icon is visible, reset the start margin on the password field so the text is
/frameworks/base/services/common_time/
H A Dutils.cpp124 size_t start = mIsFull ? mWr : 0; local
136 size_t ndx = (start + i) % mSize;
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsCollection.java145 NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end) {
153 combined.recordHistory(entry.getValue(), start, end);
163 public NetworkStats getSummary(NetworkTemplate template, long start, long end) { argument
166 final NetworkStats stats = new NetworkStats(end - start, 24);
171 if (start == end) return stats;
177 historyEntry = history.getValues(start, end, now, historyEntry);
201 public void recordData(NetworkIdentitySet ident, int uid, int set, int tag, long start, argument
204 history.recordData(start, end, entry);
144 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end) argument
/frameworks/base/tests/CoreTests/android/core/
H A DSocketTest.java130 }.start();
192 // long start = System.currentTimeMillis();
197 // long delay = System.currentTimeMillis() - start;
271 }.start();
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAlignmentTest.java98 long start = System.currentTimeMillis();
108 float time = (float) (System.currentTimeMillis() - start) / N * 1000;

Completed in 209 milliseconds

<<11121314151617181920>>