Searched defs:start (Results 251 - 275 of 488) sorted by path

<<11121314151617181920

/frameworks/base/core/jni/
H A Dandroid_hardware_UsbDeviceConnection.cpp170 jbyteArray buffer, jint start, jint length, jint timeout)
184 value, index, bufferBytes + start, length, timeout);
195 jint endpoint, jbyteArray buffer, jint start, jint length, jint timeout)
208 jint result = usb_device_bulk_transfer(device, endpoint, bufferBytes + start, length, timeout);
168 android_hardware_UsbDeviceConnection_control_request(JNIEnv *env, jobject thiz, jint requestType, jint request, jint value, jint index, jbyteArray buffer, jint start, jint length, jint timeout) argument
194 android_hardware_UsbDeviceConnection_bulk_request(JNIEnv *env, jobject thiz, jint endpoint, jbyteArray buffer, jint start, jint length, jint timeout) argument
H A Dandroid_opengl_GLES30.cpp336 /* void glDrawRangeElements ( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices ) */
339 (JNIEnv *_env, jobject _this, jint mode, jint start, jint end, jint count, jint type, jobject indices_buf) {
352 (GLuint)start,
363 /* void glDrawRangeElements ( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, GLsizei offset ) */
366 (JNIEnv *_env, jobject _this, jint mode, jint start, jint end, jint count, jint type, jint offset) {
369 (GLuint)start,
338 android_glDrawRangeElements__IIIIILjava_nio_Buffer_2(JNIEnv *_env, jobject _this, jint mode, jint start, jint end, jint count, jint type, jobject indices_buf) argument
365 android_glDrawRangeElements__IIIIII(JNIEnv *_env, jobject _this, jint mode, jint start, jint end, jint count, jint type, jint offset) argument
H A Dandroid_os_Debug.cpp234 uint64_t start; local
258 if (sscanf(line, "%" SCNx64 "-%" SCNx64 " %*s %*x %*x:%*x %*d%n", &start, &end, &name_pos) != 2) {
327 } else if (start == prevEnd && prevHeap == HEAP_SO) {
366 } else if (sscanf(line, "%" SCNx64 "-%" SCNx64 " %*s %*x %*x:%*x %*d", &start, &end) == 2) {
784 fprintf(fp, "$ adb shell start\n");
H A Dandroid_text_AndroidCharacter.cpp106 jint start, jint count, jbyteArray destArray)
117 if (start < 0 || start > start + count
118 || env->GetArrayLength(srcArray) < (start + count)
125 const int srci = start + i;
148 static jboolean mirror(JNIEnv* env, jobject obj, jcharArray charArray, jint start, jint count) argument
155 if (start < 0 || start > start
105 getEastAsianWidths(JNIEnv* env, jobject obj, jcharArray srcArray, jint start, jint count, jbyteArray destArray) argument
[all...]
H A Dandroid_util_Process.cpp729 const jsize start = i; local
766 //ALOGI("Field %" PRId32 ": %" PRId32 "-%" PRId32 " dest=%" PRId32 " mode=0x%" PRIx32 "\n", i, start, end, di, mode);
773 floatsData[di] = strtof(buffer+start, &end);
777 longsData[di] = strtoll(buffer+start, &end, 10);
780 jstring str = env->NewStringUTF(buffer+start);
H A Dandroid_view_GLES20Canvas.cpp613 void operator()(size_t start, size_t end) { argument
614 for (size_t i = start; i < end; i++) {
619 size_t glyphsCount = end - start;
621 renderer->drawText((const char*) (glyphs + start), bytesCount, glyphsCount,
622 x, y, pos + 2 * start, paint, totalAdvance, bounds);
668 void operator()(size_t start, size_t end) { argument
670 for (size_t i = start; i < end; i++) {
701 jint start, jint count, jint contextCount, jfloat x, jfloat y,
704 MinikinUtils::doLayout(&layout, paint, bidiFlags, typeface, text, start, count, contextCount);
722 jlong rendererPtr, jstring text, jint start, jin
700 renderTextRun(DisplayListRenderer* renderer, const jchar* text, jint start, jint count, jint contextCount, jfloat x, jfloat y, int bidiFlags, Paint* paint, TypefaceImpl* typeface) argument
721 android_view_GLES20Canvas_drawText(JNIEnv* env, jobject clazz, jlong rendererPtr, jstring text, jint start, jint end, jfloat x, jfloat y, jint bidiFlags, jlong paintPtr, jlong typefacePtr) argument
748 android_view_GLES20Canvas_drawTextOnPath(JNIEnv* env, jobject clazz, jlong rendererPtr, jstring text, jint start, jint end, jlong pathPtr, jfloat hOffset, jfloat vOffset, jint bidiFlags, jlong paintPtr, jlong typefacePtr) argument
778 android_view_GLES20Canvas_drawTextRun(JNIEnv* env, jobject clazz, jlong rendererPtr, jstring text, jint start, jint end, jint contextStart, int contextEnd, jfloat x, jfloat y, jboolean isRtl, jlong paintPtr, jlong typefacePtr) argument
[all...]
H A Dandroid_view_RenderNodeAnimator.cpp167 static void start(JNIEnv* env, jobject clazz, jlong animatorPtr, jobject finishListener) { function in namespace:android
172 animator->start();
200 { "nStart", "(JLandroid/view/RenderNodeAnimator;)V", (void*) start },
H A Dcom_android_internal_os_Zygote.cpp416 void ckTime(uint64_t start, const char* where) { argument
418 if ((now-start) > 1000) {
420 ALOGW("Slow operation: %"PRIu64" ms in %s", (uint64_t)(now-start), where);
432 uint64_t start = MsTime(); local
434 ckTime(start, "ForkAndSpecializeCommon:SetSigChldHandler");
446 ckTime(start, "ForkAndSpecializeCommon:Fork and detach");
567 ckTime(start, "ForkAndSpecializeCommon:child process setup");
571 ckTime(start, "ForkAndSpecializeCommon:PostForkChildHooks returns");
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsHistoryTest.java318 final long start = r.nextLong();
319 final long end = start + r.nextInt();
325 stats.recordData(start, end, entry);
487 NetworkStatsHistory stats, long start, long end, long rxBytes, long txBytes) {
488 final NetworkStatsHistory.Entry entry = stats.getValues(start, end, null);
510 private static void assertValues(NetworkStatsHistory stats, long start, long end, argument
513 final NetworkStatsHistory.Entry entry = stats.getValues(start, end, null);
486 assertValues( NetworkStatsHistory stats, long start, long end, long rxBytes, long txBytes) argument
/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)
462 * @param start The first int 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/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
H A DTextUtilsTest.java135 /** Fail unless text+spans contains a span 'spanName' with the given start and end. */
137 int start, int end) throws Exception {
140 assertEquals(start, text.getSpanStart(i));
417 public CharSequence subSequence(int start, int end) { argument
418 return new Wrapper(mString.subSequence(start, end));
497 public <T> T[] getSpans(int start, int end, Class<T> type) { argument
517 public int nextSpanTransition(int start, int limit, Class type) { argument
136 checkContains(Spanned text, String[] spans, String spanName, int start, int end) argument
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java1015 * Draw a line segment with the specified start and stop x,y coordinates,
1022 * @param startX The x-coordinate of the start point of the line
1023 * @param startY The y-coordinate of the start point of the line
1131 * <p>If the start angle is negative or >= 360, the start angle is treated
1132 * as start angle modulo 360.</p>
1160 * <p>If the start angle is negative or >= 360, the start angle is treated
1161 * as start angle modulo 360.</p>
1617 * @param start Th
1623 drawText(@onNull String text, int start, int end, float x, float y, @NonNull Paint paint) argument
1645 drawText(@onNull CharSequence text, int start, int end, float x, float y, @NonNull Paint paint) argument
1717 drawTextRun(@onNull CharSequence text, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, @NonNull Paint paint) argument
2024 native_drawText(long nativeCanvas, String text, int start, int end, float x, float y, int flags, long nativePaint, long nativeTypeface) argument
2029 native_drawTextRun(long nativeCanvas, String text, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, long nativePaint, long nativeTypeface) argument
2033 native_drawTextRun(long nativeCanvas, char[] text, int start, int count, int contextStart, int contextCount, float x, float y, boolean isRtl, long nativePaint, long nativeTypeface) argument
[all...]
H A DPaint.java288 * offset or the start of the context, whichever is greater.
295 * offset or the start of the context, whichever is greater.
850 * Return the paint's Cap, controlling how the start and end of stroked
1443 * @param index The index of the first character to start measuring
1444 * @param count THe number of characters to measure, beginning with start
1475 * @param start The index of the first character to start measuring
1479 public float measureText(String text, int start, int end) { argument
1483 if ((start | end | (end - start) | (tex
1501 native_measureText(String text, int start, int end, int bidiFlags) argument
1538 measureText(CharSequence text, int start, int end) argument
1628 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1751 getTextWidths(CharSequence text, int start, int end, float[] widths) argument
1795 getTextWidths(String text, int start, int end, float[] widths) argument
1887 getTextRunAdvances(CharSequence text, int start, int end, int contextStart, int contextEnd, boolean isRtl, float[] advances, int advancesIndex) argument
1970 getTextRunAdvances(String text, int start, int end, int contextStart, int contextEnd, boolean isRtl, float[] advances, int advancesIndex) argument
2168 getTextPath(String text, int start, int end, float x, float y, Path path) argument
2187 getTextBounds(String text, int start, int end, Rect bounds) argument
2263 native_getTextWidths(long native_object, long native_typeface, String text, int start, int end, int bidiFlags, float[] widths) argument
2266 native_getTextGlyphs(long native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
2273 native_getTextRunAdvances(long native_object, long native_typeface, String text, int start, int end, int contextStart, int contextEnd, boolean isRtl, float[] advances, int advancesIndex) argument
2284 native_getTextPath(long native_object, long native_typeface, int bidiFlags, String text, int start, int end, float x, float y, long path) argument
2286 nativeGetStringBounds(long nativePaint, long native_typeface, String text, int start, int end, int bidiFlags, Rect bounds) argument
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatable.java26 void start(); method in interface:Animatable
H A DAnimatedRotateDrawable.java94 public void start() { method in class:AnimatedRotateDrawable
H A DAnimatedStateListDrawable.java92 mTransition.start();
226 transition.start();
235 public abstract void start(); method in class:AnimatedStateListDrawable.Transition
255 public void start() { method in class:AnimatedStateListDrawable.AnimatableTransition
256 mA.start();
288 public void start() { method in class:AnimatedStateListDrawable.AnimationDrawableTransition
289 mAnim.start();
318 public void start() { method in class:AnimatedStateListDrawable.AnimatedVectorDrawableTransition
322 mAvd.start();
H A DAnimatedVectorDrawable.java421 public void start() { method in class:AnimatedVectorDrawable
427 animator.start();
H A DAnimationDrawable.java36 * {@link #start()} to run the animation.
65 * frameAnimation.start();
140 public void start() { method in class:AnimationDrawable
153 * @see #start()
176 * called directly. Invoke {@link #start()} instead.</p>
178 * @see #start()
/frameworks/base/keystore/tests/src/android/security/
H A DAndroidKeyPairGeneratorTest.java466 AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end)
523 assertDateEquals("The notBefore date should be the one passed into the params", start,
465 assertKeyPairCorrect(KeyPair pair, String alias, String keyType, int keySize, AlgorithmParameterSpec spec, X500Principal dn, BigInteger serial, Date start, Date end) argument
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp1106 * If the file is compressed with gzip, we seek to the start of the
1216 * We start with Zip archives, then do loose files.
1318 int i, start, count; local
1324 * the start point for the search.
1330 start = mCache.indexOf(path);
1331 if (start == NAME_NOT_FOUND) {
1351 for (i = start+1; i < count; i++) {
1731 timer.start();
H A DResourceTypes.cpp889 // block, start searching at the back.
933 // block, start searching at the back.
1633 ALOGW("Bad XML start block: node header size 0x%x, size 0x%x\n",
2506 const char* start, size_t size) {
2513 config->language[0] ? config->packRegion(start) : config->packLanguage(start);
2516 config->localeScript[0] = toupper(start[0]);
2518 config->localeScript[i] = tolower(start[i]);
2526 config->localeVariant[i] = tolower(start[i]);
2542 const char* start local
2505 assignLocaleComponent(ResTable_config* config, const char* start, size_t size) argument
5032 const char16_t* start = pos; local
[all...]
/frameworks/base/libs/common_time/
H A Dutils.cpp124 size_t start = mIsFull ? mWr : 0; local
136 size_t ndx = (start + i) % mSize;
/frameworks/base/libs/hwui/
H A DAnimator.h60 ANDROID_API void start() { mStagingPlayState = RUNNING; onStagingPlayStateChanged(); } function in class:android::uirenderer::BaseRenderNodeAnimator
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...]

Completed in 982 milliseconds

<<11121314151617181920