Searched defs:end (Results 151 - 175 of 296) sorted by relevance

1234567891011>>

/frameworks/native/libs/binder/
H A DDebug.cpp152 char* end = typetostring(typeCode, buffer); local
153 *end = 0;
/frameworks/native/libs/input/
H A DKeyLayoutMap.cpp229 ALOGE("%s: Expected end of line or trailing comment, got '%s'.",
250 char* end; local
251 int32_t code = int32_t(strtol(codeToken.string(), &end, 0));
252 if (*end) {
306 char* end; local
307 int32_t scanCode = int32_t(strtol(scanCodeToken.string(), &end, 0));
308 if (*end) {
339 axisInfo.splitValue = int32_t(strtol(splitToken.string(), &end, 0));
340 if (*end) {
381 axisInfo.flatOverride = int32_t(strtol(flatToken.string(), &end,
413 char* end; local
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_display.cpp192 char const* end; local
195 end = strchr(start, ' ');
196 if (end) {
198 const size_t len = end - start;
208 start = end + 1;
210 } while (end);
332 // This cannot be called with the lock held because it might end-up
374 // This cannot be called with the lock held because it might end-up
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp195 int start, end; local
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp97 int start, end; local
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp230 Region::const_iterator const end = reg.end(); member in class:android::Region
231 while (it != end) {
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DSlideKitkat.java209 float start, float end, float terminalValue, TimeInterpolator interpolator,
216 final ObjectAnimator anim = ObjectAnimator.ofFloat(view, property, start, end);
218 SlideAnimatorListener listener = new SlideAnimatorListener(view, property, terminalValue, end,
234 float end = mSlideCalculator.getHere(view);
236 return createAnimation(view, mSlideCalculator.getProperty(), start, end, end, sDecelerate,
249 float end = mSlideCalculator.getGone(view);
251 return createAnimation(view, mSlideCalculator.getProperty(), start, end, start,
208 createAnimation(final View view, Property<View, Float> property, float start, float end, float terminalValue, TimeInterpolator interpolator, int finalVisibility) argument
/frameworks/support/v7/cardview/src/android/support/v7/widget/
H A DCardView.java114 public void setPaddingRelative(int start, int top, int end, int bottom) { argument
/frameworks/av/media/img_utils/src/
H A DTiffWriter.cpp60 Endianness end) {
62 EndianOutput endOut(out, end);
133 status_t TiffWriter::write(Output* out, Endianness end) { argument
135 EndianOutput endOut(out, end);
59 write(Output* out, StripSource** sources, size_t sourcesCount, Endianness end) argument
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.cpp133 size_t end = (commaPos < 0) ? val.size() : commaPos; local
135 AString nalString(val, start, end - start);
266 char *end; local
267 objectType = strtoul(s, &end, 10);
268 CHECK(end > s && *end == '\0');
/frameworks/av/media/libstagefright/wifi-display/source/
H A DConverter.cpp131 char *end; local
132 unsigned long x = strtoul(val, &end, 10);
134 if (*end == '\0' && end > val && x > 0) {
281 const uint8_t *end = ptr + accessUnit->size(); local
282 while (ptr < end) {
/frameworks/av/services/audioflinger/
H A Dtest-resample.cpp348 timespec start, end; local
356 clock_gettime(CLOCK_MONOTONIC, &end);
358 int64_t end_ns = end.tv_sec * 1000000000LL + end.tv_nsec;
372 clock_gettime(CLOCK_MONOTONIC, &end);
374 end_ns = end.tv_sec * 1000000000LL + end.tv_nsec;
409 timespec start, end; local
418 clock_gettime(CLOCK_MONOTONIC, &end);
420 int64_t end_ns = end
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java61 * cancel or end when cancel() or end() is called on this AnimatorSet
98 * terminated (by calling cancel() or end()).
100 * child animations of this AnimatorSet end. It also determines whether cancel/end
331 // send out the end event to all listeners
354 public void end() { method in class:AnimatorSet
358 // hasn't been started yet - sort the nodes now, then end them
372 node.animation.end();
620 // end even
[all...]
/frameworks/base/core/java/android/provider/
H A DBrowser.java482 * Delete all history items from begin to end.
485 * @param begin First date to remove. If -1, all dates before end.
487 * @param end Last date to remove. If -1, all dates after begin.
491 long begin, long end) {
495 if (-1 == end) {
499 whereClause = date + " < " + Long.toString(end);
500 } else if (-1 == end) {
504 + " < " + Long.toString(end);
490 deleteHistoryTimeFrame(ContentResolver cr, long begin, long end) argument
/frameworks/base/core/java/android/text/
H A DTextLine.java511 // separator and has an associated run, but might be the end of
513 // end of the run list, and runIndex == runs.length. In this case,
534 // need to run this twice, if we cross a run boundary and end up at
574 // We're walking off the end of the line. The paragraph
581 // Else we've arrived at the end of the line. That's a strong position.
587 // we can end up at the 'lineEnd' position but the caret we want is at
601 * off the end of the line, since the returned values might not be valid
619 // Walking off end of line. Since we don't know
664 // the start or end of this span.
712 * @param end th
724 handleText(TextPaint wp, int start, int end, int contextStart, int contextEnd, boolean runIsRtl, Canvas c, float x, int top, int y, int bottom, FontMetricsInt fmi, boolean needWidth) argument
979 drawTextRun(Canvas c, TextPaint wp, int start, int end, int contextStart, int contextEnd, boolean runIsRtl, float x, int y) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java94 public static void setComposingSpans(Spannable text, int start, int end) { argument
95 final Object[] sps = text.getSpans(start, end, Object.class);
115 text.setSpan(COMPOSING, start, end,
251 int end = b + afterLength;
252 if (end > content.length()) end = content.length();
254 content.delete(b, end);
450 public boolean setComposingRegion(int start, int end) { argument
456 int b = end;
462 // Clip the end point
491 setSelection(int start, int end) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DDayPickerView.java172 private int getDiffMonths(Calendar start, Calendar end) { argument
173 final int diffYears = end.get(Calendar.YEAR) - start.get(Calendar.YEAR);
174 final int diffMonths = end.get(Calendar.MONTH) - start.get(Calendar.MONTH) + 12 * diffYears;
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java314 public boolean setSelection(int start, int end) { argument
316 mIInputContext.setSelection(start, end);
341 public boolean setComposingRegion(int start, int end) { argument
343 mIInputContext.setComposingRegion(start, end);
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java458 * The format of the files are sequential int's, in the range of: [start..end)
463 * @param end The last int + 1 expected to be found in the file
465 protected void doValidateIntContents(String path, String filename, int start, int end) { argument
472 for (int i = start; i < end; ++i) {
/frameworks/base/libs/hwui/
H A DAnimator.h61 ANDROID_API void end() { mStagingPlayState = FINISHED; onStagingPlayStateChanged(); } function in class:android::uirenderer::BaseRenderNodeAnimator
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java53 end();
70 end();
85 end();
100 end();
116 end();
132 end();
145 end();
157 end();
171 end();
185 end();
407 private void end() { method in class:EGLLogWrapper
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DAssetAtlasService.java408 int end = MAX_SIZE - (cpuCount - 1) * STEP;
413 for (int i = 0; i < cpuCount; i++, start += STEP, end += STEP) {
414 ComputeWorker worker = new ComputeWorker(start, end, step,
669 * @param end The maximum texture width to try
676 ComputeWorker(int start, int end, int step, List<Bitmap> bitmaps, int pixelCount, argument
679 mEnd = end;
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java148 NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end) {
157 combined.recordHistory(value, start, end);
167 public NetworkStats getSummary(NetworkTemplate template, long start, long end) { argument
170 final NetworkStats stats = new NetworkStats(end - start, 24);
175 if (start == end) return stats;
181 historyEntry = value.getValues(start, end, now, historyEntry);
206 long end, NetworkStats.Entry entry) {
208 history.recordData(start, end, entry);
491 public void dumpCheckin(PrintWriter pw, long start, long end) { argument
492 dumpCheckin(pw, start, end, NetworkTemplat
147 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end) argument
205 recordData(NetworkIdentitySet ident, int uid, int set, int tag, long start, long end, NetworkStats.Entry entry) argument
502 dumpCheckin(PrintWriter pw, long start, long end, NetworkTemplate groupTemplate, String groupPrefix) argument
[all...]
H A DNetworkStatsRecorder.java136 public NetworkStatsCollection getOrLoadPartialLocked(long start, long end) { argument
139 res = loadLocked(start, end);
144 private NetworkStatsCollection loadLocked(long start, long end) { argument
148 mRotator.readMatching(res, start, end);
182 final long end = currentTimeMillis;
183 final long start = end - delta.getElapsedRealtime();
199 mPending.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
203 mSinceBoot.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
208 complete.recordData(ident, entry.uid, entry.set, entry.tag, start, end, entry);
366 // using end tim
401 dumpCheckin(PrintWriter pw, long start, long end) argument
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAbstractClassAdapter.java309 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { argument
312 super.visitTryCatchBlock(start, end, handler, type);
317 Label start, Label end, int index) {
321 super.visitLocalVariable(name, desc, signature, start, end, index);
316 visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) argument

Completed in 650 milliseconds

1234567891011>>