Searched defs:start (Results 126 - 150 of 391) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/util/
H A DSparseLongArray.java228 private static int binarySearch(int[] a, int start, int len, long key) { argument
229 int high = start + len, low = start - 1, guess;
240 if (high == start + len)
241 return ~(start + len);
/frameworks/base/core/java/android/view/
H A DAccessibilityIterators.java59 protected int[] getRange(int start, int end) { argument
60 if (start < 0 || end < 0 || start == end) {
63 mSegment[0] = start;
105 int start = offset;
106 if (start < 0) {
107 start = 0;
109 while (!mImpl.isBoundary(start)) {
110 start = mImpl.following(start);
[all...]
H A DHardwareLayer.java159 abstract HardwareCanvas start(Canvas currentCanvas); method in class:HardwareLayer
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java32 * child's animation start must be offset. The delay is computed by using
298 public void start() { method in class:LayoutAnimationController
419 * parameters are used to compute the start time of each individual view's
/frameworks/base/core/java/android/webkit/
H A DDeviceMotionService.java50 public void start() { method in class:DeviceMotionService
H A DDeviceOrientationService.java55 public void start() { method in class:DeviceOrientationService
H A DGeolocationService.java63 public boolean start() { method in class:GeolocationService
132 // No need to notify the native side. It's enough to start sending
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/core/jni/android/graphics/
H A DTextLayout.cpp67 void TextLayout::getTextRunAdvances(SkPaint* paint, const jchar* chars, jint start, argument
71 chars, start, count, contextCount, dirFlags);
83 void TextLayout::getTextRunAdvancesICU(SkPaint* paint, const jchar* chars, jint start, argument
87 computeAdvancesWithICU(paint, chars, start, count, contextCount, dirFlags,
115 size_t start, size_t count, size_t contextCount, int dirFlags,
127 // Use fixed length since we need to keep start and count valid
134 for (int i = start, e = i + count; i < e; ++i) {
139 text = buffer + start;
142 text = chars + start;
114 computeAdvancesWithICU(SkPaint* paint, const UChar* chars, size_t start, size_t count, size_t contextCount, int dirFlags, jfloat* outAdvances, jfloat* outTotalAdvance) argument
/frameworks/base/core/tests/coretests/src/android/text/
H A DSpannedTest.java175 public void beforeTextChanged(CharSequence s, int start, int count, argument
177 public void onTextChanged(CharSequence s, int start, int before, argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
H A DPowerUI.java65 public void start() { method in class:PowerUI
/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/am/
H A DDeviceMonitor.java52 }.start();
56 * Loops continuously. Pauses until someone tells us to start monitoring.
190 * Pauses momentarily before we start the next dump.
217 * Instructs the monitoring to start if it hasn't already.
231 static void start() { method in class:DeviceMonitor
/frameworks/base/services/java/com/android/server/wm/
H A DViewServer.java43 * The default port used to start view servers.
82 * @see #start()
99 boolean start() throws IOException { method in class:ViewServer
107 mThread.start();
118 * @see #start()
151 * @see #start()
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DFsUtils.java146 start();
301 public static void saveTestListToStorage(File file, int start, List<String> testList) { argument
305 for (String line : testList.subList(start, testList.size())) {
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DConnectionHandler.java112 Log.e(LOG_TAG, "Unable to start ConnectionHandler", e);
132 public void start() { method in class:ConnectionHandler
133 /** We have 2 threads running, one for each pipe, that we start here. */
135 mFromToPipe.start();
136 mToFromPipe.start();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java353 private static int binarySearch(int[] a, int start, int len, int key) { argument
354 int high = start + len, low = start - 1, guess;
365 if (high == start + len)
366 return ~(start + len);
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java121 // Log.e("SparseArray", "gc start with " + mSize);
334 private static int binarySearch(long[] a, int start, int len, long key) { argument
335 int high = start + len, low = start - 1, guess;
346 if (high == start + len)
347 return ~(start + len);
H A DSparseArrayCompat.java114 // Log.e("SparseArray", "gc start with " + mSize);
325 private static int binarySearch(int[] a, int start, int len, int key) { argument
326 int high = start + len, low = start - 1, guess;
337 if (high == start + len)
338 return ~(start + len);
/frameworks/support/volley/src/com/android/volley/
H A DRequestQueue.java72 /** Number of network request dispatcher threads to start. */
91 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
107 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
119 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
131 public void start() { method in class:RequestQueue
133 // Create the cache dispatcher and start it.
135 mCacheDispatcher.start();
142 networkDispatcher.start();
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DBasicNetwork.java195 protected void logError(String what, String url, long start) { argument
197 VolleyLog.v("HTTP ERROR(%s) %d ms to fetch %s", what, (now - start), url);
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp88 status_t SimplePlayer::start() { function in class:android::SimplePlayer
287 mCodecLooper->start();
341 status_t err = state->mCodec->start();
603 state->mAudioTrack->start();
H A Drecordvideo.cpp75 virtual status_t start(MetaData *params) { function in class:DummySource
294 int64_t start = systemTime(); local
295 CHECK_EQ((status_t)OK, writer->start());
309 fprintf(stderr, "encoding %d frames in %lld us\n", nFrames, (end-start)/1000);
310 fprintf(stderr, "encoding speed is: %.2f fps\n", (nFrames * 1E9) / (end-start));
/frameworks/av/libvideoeditor/vss/src/
H A DM4VD_EXTERNAL_BitstreamParser.c104 M4OSA_MemAddr8 start; local
136 start = (M4OSA_Int8 *)pVol;
139 while (parsingCtxt.in - start < aVolSize)
150 /* start code found */
493 M4OSA_UInt16 index = 28; /* the 29th byte is SPS start */
/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp479 status_t MediaRecorder::start() function in class:android::MediaRecorder
481 ALOGV("start");
487 ALOGE("start called in an invalid state: %d", mCurrentState);
491 status_t ret = mMediaRecorder->start();
493 ALOGE("start failed: %d", ret);

Completed in 407 milliseconds

1234567891011>>