Searched defs:end (Results 201 - 225 of 296) sorted by relevance

1234567891011>>

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java853 public InfoOffsetAnimation(float start, float end) { argument
855 mDelta = end - start;
871 public InfoHeightAnimation(float start, float end) { argument
873 mDelta = end - start;
889 public InfoAlphaAnimation(float start, float end) { argument
891 mDelta = end - start;
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java98 int start, int end) {
99 for (int i = start; i < end; i++) {
111 while (i + 1 < end && text.charAt(i + 1) == ' ') {
97 withinStyle(StringBuilder out, CharSequence text, int start, int end) argument
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp357 printf("seeking past the end now.");
716 char *end; local
717 long x = strtol(optarg, &end, 10);
719 if (*end != '\0' || end == optarg || x <= 0) {
904 it != list.end(); ++it) {
907 itRoles != (*it).mRoles.end() ; ++itRoles) {
990 char *end; local
991 long sampleRate = strtol(filename + 5, &end, 10);
993 if (end
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4enc_api.cpp1630 /* Modify the intialize flag at the end.*/
1642 /* Purpose : Enter a video frame and perform front-end time check plus ME */
1955 /* Modify the intialize flag at the end.*/
2962 Int i, j, start, end; local
3197 end = index;
3203 end = index;
3208 for (i = start; i <= end; i++)
3217 if (i > end) return PV_FALSE;
3262 } /* end of: if(nLayers == 1) */
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp130 char *end; local
131 mSelectedIndex = strtoul(value, &end, 10);
132 CHECK(end > value && *end == '\0');
487 size_t end; local
489 end = qsPos - baseURL;
491 end = strlen(baseURL);
494 for (ssize_t pos = end - 1; pos >= 0; pos--) {
496 end = pos;
503 if (end >
732 ssize_t end = FindNextUnquoted(line, ',', offset); local
757 char *end; local
828 ssize_t end = FindNextUnquoted(line, ',', offset); local
907 char *end; local
965 ssize_t end = FindNextUnquoted(line, ',', offset); local
1194 char *end; local
1208 char *end; local
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp152 char *end; local
153 port = strtoul(s, &end, 10);
155 if (end == s || *end != '\0' || port > 65535) {
/frameworks/av/media/mtp/
H A DMtpServer.cpp1189 // can't start writing past the end of the file
1191 ALOGD("writing past end of object, offset: %" PRIu64 ", edit->mSize: %" PRIu64,
1236 uint64_t end = offset + length; local
1237 if (end > edit->mSize) {
1238 edit->mSize = end;
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java120 * animator is playing in reverse. It is used in corner cases to determine proper end
151 * an animation (if state == STOPPED). Also used to end an animation that
152 * has been cancel()'d or end()'d since the last animation frame. Possible values are
176 * startDelay and whether start() was called before end().
237 * When the animation reaches the end and <code>repeatCount</code> is INFINITE
242 * When the animation reaches the end and <code>repeatCount</code> is INFINITE
556 * a fraction of 0 will position the animation at the beginning, a value of 1 at the end,
557 * and a value of 2 at the end of a reversing animator that repeats once. If
644 * Internal per-thread collections used to avoid set collisions as animations start and end
864 * Defines what this animation should do when it reaches the end
1078 public void end() { method in class:ValueAnimator
[all...]
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpPacket.java219 * typically optional parameters at the end of the packet.
373 private int checksum(ByteBuffer buf, int seed, int start, int end) { argument
385 short[] shortArray = new short[(end - start) / 2];
395 if (end != start) {
481 * Adds the special end-of-optional-parameters indicator.
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java55 public SpannableStringBuilder(CharSequence text, int start, int end) { argument
56 int srclen = end - start;
64 TextUtils.getChars(text, start, end, mText, 0);
74 Object[] spans = sp.getSpans(start, end, Object.class);
87 if (st > end - start)
88 st = end - start;
92 if (en > end - start)
93 en = end - start;
173 int end = mSpanEnds[i];
186 if (end > mGapStar
205 insert(int where, CharSequence tb, int start, int end) argument
215 delete(int start, int end) argument
270 append(CharSequence text, int start, int end) argument
280 change(int start, int end, CharSequence cs, int csStart, int csEnd) argument
453 replace(int start, int end, CharSequence tb) argument
458 replace(final int start, final int end, CharSequence tb, int tbstart, int tbend) argument
606 setSpan(Object what, int start, int end, int flags) argument
610 setSpan(boolean send, Object what, int start, int end, int flags) argument
906 subSequence(int start, int end) argument
914 getChars(int start, int end, char[] dest, int destoff) argument
946 substring(int start, int end) argument
976 sendSpanAdded(Object what, int start, int end) argument
985 sendSpanRemoved(Object what, int start, int end) argument
994 sendSpanChanged(Object what, int oldStart, int oldEnd, int start, int end) argument
1005 region(int start, int end) argument
1009 checkRange(final String operation, int start, int end) argument
1113 drawText(Canvas c, int start, int end, float x, float y, Paint p) argument
1134 drawTextRun(Canvas c, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, Paint p) argument
1157 measureText(int start, int end, Paint p) argument
1181 getTextWidths(int start, int end, float[] widths, Paint p) argument
1205 getTextRunAdvances(int start, int end, int contextStart, int contextEnd, boolean isRtl, float[] advances, int advancesPos, Paint p) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java915 listeners.end();
947 listeners.end();
969 listeners.end();
1019 listeners.end();
1051 listeners.end();
1086 * access.end();
1130 void end() { method in class:ViewTreeObserver.CopyOnWriteArray
/frameworks/base/core/java/android/widget/
H A DExpandableListView.java302 * Resolve start/end indicator. start/end indicator always takes precedence over left/right
328 * Resolve start/end child indicator. start/end child indicator always takes precedence over
1172 * View) to end the drawing of the indicator.
1188 * @param end The end position (relative to the end bounds of this
1189 * View) to end the drawing of the indicator.
1191 public void setChildIndicatorBoundsRelative(int start, int end) { argument
1240 setIndicatorBoundsRelative(int start, int end) argument
[all...]
H A DOverScroller.java208 * Returns where the scroll will end. Valid only for "fling" scrolls.
217 * Returns where the scroll will end. Valid only for "fling" scrolls.
733 private void startSpringback(int start, int end, int velocity) { argument
738 mFinal = end;
739 final int delta = start - end;
800 private void fitOnBounceCurve(int start, int end, int velocity) { argument
804 final float distanceToEdge = Math.abs(end - start);
808 mStart = end;
812 private void startBounceAfterEdge(int start, int end, int velocity) { argument
813 mDeceleration = getDeceleration(velocity == 0 ? start - end
841 notifyEdgeReached(int start, int end, int over) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java968 private void processGroup(List<ResolveInfo> rList, int start, int end, ResolveInfo ro, argument
971 int num = end - start+1;
988 for (int j = start+1; j <= end ; j++) {
1001 for (int k = start; k <= end; k++) {
1004 // Use application name for all entries from start to end-1
1008 // Use package name for all entries from start to end-1
1179 // We want to put the one targeted to another user at the end of the dialog.
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java611 private void startSizeAnimation(float start, float end, long duration, Interpolator interpolator, argument
613 ValueAnimator valueAnimator = ValueAnimator.ofFloat(start, end);
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp561 char* end; local
562 sizesArray[i] = strtoll(num, &end, 10);
627 char* end; local
628 int pid = strtol(entry->d_name, &end, 10);
731 DEBUG_PROC(ALOGW("Ran off end of data @%d", i));
736 jsize end = -1; local
741 end = i;
747 end = i;
753 if (end < 0) {
754 end
772 char* end; local
776 char* end; local
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsService.java461 NetworkTemplate template, long start, long end) {
462 return internalGetSummaryForNetwork(template, start, end);
472 NetworkTemplate template, long start, long end, boolean includeTags) {
473 final NetworkStats stats = getUidComplete().getSummary(template, start, end);
476 .getSummary(template, start, end);
505 NetworkTemplate template, long start, long end) {
508 return mXtStatsCached.getSummary(template, start, end);
522 public long getNetworkTotalBytes(NetworkTemplate template, long start, long end) { argument
525 return internalGetSummaryForNetwork(template, start, end).getTotalBytes();
1081 final long end
504 internalGetSummaryForNetwork( NetworkTemplate template, long start, long end) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1260 // if they're non-0 at the end of the scan the dashes will be added in
2293 // Non-dialable character such as P/W should not be at the end of
2332 * @param end The ending character position of the phone number in {@code s}.
2336 public static void ttsSpanAsPhoneNumber(Spannable s, int start, int end) { argument
2339 .setNumberParts(splitAtNonNumerics(s.subSequence(start, end)))
2342 end,
/frameworks/base/tools/aidl/
H A DType.cpp1381 size_t end = start; local
1383 end = normalized.find(',', start);
1384 if (end == normalized.npos) {
1385 end = normalized.find('>', start);
1387 string s(normalized.c_str()+start, end-start);
1394 start = end+1;
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java257 // - add end-of-line match $
551 // Visits the end of a class
575 // Visits the end of a class
702 String signature, Label start, Label end, int index) {
759 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { argument
701 visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) argument
H A DDependencyFinder.java427 // Visits the end of a class
451 // Visits the end of a class
579 String signature, Label start, Label end, int index) {
632 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { argument
578 visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) argument
/frameworks/native/cmds/atrace/
H A Datrace.cpp372 char *end = strchr(start, ']'); local
373 if (end == NULL) {
376 *end = '\0';
922 // matching "end" entry to show up if a task gets migrated from one CPU to
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp833 const void* end = ((const uint8_t*)cmds)+bwr.write_size; local
835 while (cmds < end) cmds = printCommand(alog, cmds);
890 const void* end = mIn.data() + mIn.dataSize(); local
892 while (cmds < end) cmds = printReturnCommand(alog, cmds);
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp719 ALOGE("%s: Expected end of line or trailing comment, got '%s'.",
730 ALOGE("%s: Unterminated key description at end of file.",
813 char* end; local
814 int32_t code = int32_t(strtol(codeToken.string(), &end, 0));
815 if (*end) {
/frameworks/support/v4/java/android/support/v4/widget/
H A DSwipeRefreshLayout.java201 * @param end The offset in pixels from the top of this view at which the
205 public void setProgressViewOffset(boolean scale, int start, int end) { argument
209 mSpinnerFinalOffset = end;
222 * @param end The offset in pixels from the top of this view at which the
226 public void setProgressViewEndTarget(boolean scale, int end) { argument
227 mSpinnerFinalOffset = end;

Completed in 876 milliseconds

1234567891011>>