Searched refs:start (Results 101 - 125 of 1131) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/
H A DUiThread.java37 sInstance.start();
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DRequestArcInitiationAction.java37 boolean start() { method in class:RequestArcInitiationAction
47 // If failed to send <Request ARC Initiation>, start "Disabled"
H A DRequestArcTerminationAction.java37 boolean start() { method in class:RequestArcTerminationAction
47 // If failed to send <Request ARC Termination>, start "Disabled" ARC
H A DSystemAudioActionFromTv.java44 boolean start() { method in class:SystemAudioActionFromTv
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DCharsets.java98 * char ch = (char) (data[start++] & 0xff);
107 int start = offset;
109 char ch = (char) (bytes[start++] & 0xff);
118 * value[i] = (char) (data[start++] & 0xff);
125 int start = offset;
127 chars[i] = (char) (bytes[start++] & 0xff);
/frameworks/rs/driver/
H A DrsdMesh.h27 uint32_t primIndex, uint32_t start, uint32_t len);
/frameworks/webview/chromium/tools/WebViewShell/
H A Drun_startup_time_test.sh12 adb shell am start -n com.android.htmlviewer/.HTMLViewerActivity -d "file:///data/local/tmp/file.html" -a VIEW -t "text/html"
23 adb shell am start -n com.android.webview.chromium.shell/.StartupTimeActivity -a VIEW > /dev/null
/frameworks/av/media/libstagefright/foundation/
H A DAStringUtils.cpp46 size_t start = globIx; local
50 size_t len = globIx - start;
51 const char *pattern = glob + start;
/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/minikin/libs/minikin/
H A DCmapCoverage.cpp39 static void addRange(vector<uint32_t> &coverage, uint32_t start, uint32_t end) { argument
41 ALOGD("adding range %d-%d\n", start, end);
43 if (coverage.empty() || coverage.back() < start) {
44 coverage.push_back(start);
66 int start = readU16(data, kHeaderSize + 2 * (segCount + i)); local
70 if (((end + delta) & 0xffff) > end - start) {
71 addRange(coverage, start, end + 1);
73 for (int j = start; j < end + 1; j++) {
80 for (int j = start; j < end + 1; j++) {
82 (i + j - start) *
113 uint32_t start = readU32(data, groupOffset + kStartCharCodeOffset); local
[all...]
H A DLayout.cpp77 const uint16_t* chars, size_t start, size_t count, size_t nchars, bool dir)
78 : mStart(start), mCount(count), mId(collection->getId()), mStyle(style),
519 void Layout::doLayout(const uint16_t* buf, size_t start, size_t count, size_t bufSize, argument
564 int32_t endRun = std::min(startRun + lengthRun, int32_t(start + count));
565 startRun = std::max(startRun, int32_t(start));
570 start);
583 doLayoutRunCached(buf, start, count, bufSize, isRtl, &ctx, start);
588 void Layout::doLayoutRunCached(const uint16_t* buf, size_t start, size_t count, size_t bufSize, argument
592 size_t wordstart = start
76 LayoutCacheKey(const FontCollection* collection, const MinikinPaint& paint, FontStyle style, const uint16_t* chars, size_t start, size_t count, size_t nchars, bool dir) argument
616 doLayoutWord(const uint16_t* buf, size_t start, size_t count, size_t bufSize, bool isRtl, LayoutContext* ctx, size_t bufStart) argument
635 const char* start = str.c_str(); local
652 doLayoutRun(const uint16_t* buf, size_t start, size_t count, size_t bufSize, bool isRtl, LayoutContext* ctx) argument
772 appendLayout(Layout* src, size_t start) argument
[all...]
/frameworks/minikin/include/minikin/
H A DLayout.h78 void doLayout(const uint16_t* buf, size_t start, size_t count, size_t bufSize,
113 void doLayoutRunCached(const uint16_t* buf, size_t start, size_t count, size_t bufSize,
117 void doLayoutWord(const uint16_t* buf, size_t start, size_t count, size_t bufSize,
121 void doLayoutRun(const uint16_t* buf, size_t start, size_t count, size_t bufSize,
125 void appendLayout(Layout* src, size_t start);
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java70 public void beforeTextChanged(CharSequence s, int start, argument
75 public void onTextChanged(CharSequence s, int start, argument
107 sp.setSpan(new Visible(sp, this), start, start + count,
177 public CharSequence subSequence(int start, int end) { argument
178 char[] buf = new char[end - start];
180 getChars(start, end, buf, 0);
188 public void getChars(int start, int end, char[] dest, int off) { argument
189 TextUtils.getChars(mSource, start, end, dest, off);
214 for (int i = start;
[all...]
/frameworks/base/core/java/android/widget/
H A DAlphabetIndexer.java165 int start = 0;
181 // Not approximate, this is the confirmed start of section, return it
192 start = Math.abs(prevLetterPos);
196 // Now that we have a possibly optimized start and end, let's binary search
198 pos = (end + start) / 2;
226 start = pos + 1;
227 if (start >= count) {
235 // They're the same, but that doesn't mean it's the start
236 if (start == pos) {
244 pos = (start
[all...]
/frameworks/base/libs/hwui/
H A DGradientCache.cpp215 void GradientCache::mixBytes(GradientColor& start, GradientColor& end, float amount, argument
218 const float alpha = start.a * oppAmount + end.a * amount;
221 *dst++ = uint8_t(a * (start.r * oppAmount + end.r * amount));
222 *dst++ = uint8_t(a * (start.g * oppAmount + end.g * amount));
223 *dst++ = uint8_t(a * (start.b * oppAmount + end.b * amount));
227 void GradientCache::mixFloats(GradientColor& start, GradientColor& end, float amount, argument
230 const float a = start.a * oppAmount + end.a * amount;
233 *d++ = a * (start.r * oppAmount + end.r * amount);
234 *d++ = a * (start.g * oppAmount + end.g * amount);
235 *d++ = a * (start
258 GradientColor start; local
[all...]
H A DUvMapper.h115 static float lerp(float start, float stop, float amount) { argument
116 return start + (stop - start) * amount;
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java51 /** Timeout to start or stop a SCO channel in ms. */
427 long start = -1;
442 start = System.currentTimeMillis();
446 start = System.currentTimeMillis();
461 if (start != -1 && finish != -1) {
462 writeOutput(String.format("enable() completed in %d ms", (finish - start)));
487 long start = -1;
498 start = System.currentTimeMillis();
502 start = System.currentTimeMillis();
521 if (start !
[all...]
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java92 // the style array is a flat array of <type, start, end> hence
175 + ", start=" + style[i+1] + ", end=" + style[i+2]);
356 int start, int end) {
359 if (start != 0 && start != len && buffer.charAt(start - 1) != '\n') {
360 for (start--; start > 0; start--) {
361 if (buffer.charAt(start
355 addParagraphSpan(Spannable buffer, Object what, int start, int end) argument
407 chooseHeight(CharSequence text, int start, int end, int spanstartv, int v, Paint.FontMetricsInt fm) argument
414 chooseHeight(CharSequence text, int start, int end, int spanstartv, int v, Paint.FontMetricsInt fm, TextPaint paint) argument
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java287 public void recordData(long start, long end, long rxBytes, long txBytes) { argument
288 recordData(start, end, new NetworkStats.Entry(
296 public void recordData(long start, long end, NetworkStats.Entry entry) { argument
311 ensureBuckets(start, end);
314 long duration = end - start;
321 if (curEnd < start) break;
325 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start);
361 public void recordHistory(NetworkStatsHistory input, long start, long end) { argument
369 if (bucketStart < start || bucketEnd > end) continue;
384 private void ensureBuckets(long start, lon argument
402 insertBucket(int index, long start) argument
473 getValues(long start, long end, Entry recycle) argument
481 getValues(long start, long end, long now, Entry recycle) argument
529 generateRandom(long start, long end, long bytes) argument
547 generateRandom(long start, long end, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations, Random r) argument
574 randomLong(Random r, long start, long end) argument
581 intersects(long start, long end) argument
[all...]
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java58 public void start(Attributes attributes) { method in class:SafeSaxTest.ElementCounter
71 public void start(Attributes attributes) { method in class:SafeSaxTest.TextElementCounter
173 long start = System.currentTimeMillis();
176 long elapsed = System.currentTimeMillis() - start;
181 long start = System.currentTimeMillis();
184 long elapsed = System.currentTimeMillis() - start;
190 long start = System.currentTimeMillis();
192 long elapsed = System.currentTimeMillis() - start;
245 public void start(Attributes attributes) {
255 public void start(Attribute
339 public void start(Attributes attributes) { method in class:SafeSaxTest.HandlerFactory.VideoListener
450 characters(char text[], int start, int length) argument
[all...]
/frameworks/base/core/java/android/util/
H A DMathUtils.java147 public static float lerp(float start, float stop, float amount) { argument
148 return start + (stop - start) * amount;
151 public static float norm(float start, float stop, float value) { argument
152 return (value - start) / (stop - start);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaScene.java75 long start = System.currentTimeMillis();
90 Log.v("TIMER", "Stream load time: " + (end - start));
92 start = System.currentTimeMillis();
95 Log.v("TIMER", "Collada parse time: " + (end - start));
113 long start = System.currentTimeMillis();
128 Log.v("TIMER", "A3D load time: " + (end - start));
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.h50 /** Compute difference between start and end */
51 #define TIME_DIFF(start, end, diff) \
52 diff = ((end.tv_sec - start.tv_sec) * 1000000) + \
53 (end.tv_usec - start.tv_usec);
78 struct timeval mTimeStart; // Time at the start of decode()
/frameworks/av/cmds/stagefright/
H A DSineSource.h14 virtual status_t start(MetaData *params);
/frameworks/av/include/media/
H A DIAudioRecord.h37 /* After it's created the track is not active. Call start() to
40 virtual status_t start(int /*AudioSystem::sync_event_t*/ event, int triggerSession) = 0;

Completed in 758 milliseconds

1234567891011>>