Searched refs:x2 (Results 76 - 100 of 241) sorted by relevance

12345678910

/frameworks/base/core/java/android/view/animation/
H A DPathInterpolator.java140 float x2 = a.getFloat(R.styleable.PathInterpolator_controlX2, 0);
142 initCubic(x1, y1, x2, y2);
154 private void initCubic(float x1, float y1, float x2, float y2) { argument
157 path.cubicTo(x1, y1, x2, y2, 1f, 1f);
/frameworks/base/core/jni/android/graphics/
H A DBitmap.h35 kBitmapCreateFlag_Premultiplied = 0x2,
/frameworks/base/core/jni/include/android_runtime/
H A Dandroid_view_Surface.h40 RGBX_8888 = 0x2,
/frameworks/base/libs/hwui/
H A DPatch.h64 void generateQuad(TextureVertex*& vertex, float x1, float y1, float x2, float y2,
/frameworks/native/services/sensorservice/
H A DFusion.h90 enum { ACC=0x1, MAG=0x2, GYRO=0x4 };
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DPathInterpolatorCompat.java112 float x2 = TypedArrayUtils.getNamedFloat(a, parser, "controlX2",
116 initCubic(x1, y1, x2, y2);
128 private void initCubic(float x1, float y1, float x2, float y2) { argument
131 path.cubicTo(x1, y1, x2, y2, 1f, 1f);
/frameworks/wilhelm/src/
H A Dtrace.h23 #define SL_TRACE_LEAVE_FAILURE 0x2
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java265 /*package*/ static void nQuadTo(long nPath, float x1, float y1, float x2, float y2) { argument
271 pathDelegate.quadTo(x1, y1, x2, y2);
286 float x2, float y2, float x3, float y3) {
292 pathDelegate.cubicTo(x1, y1, x2, y2, x3, y3);
297 float x2, float y2, float x3, float y3) {
303 pathDelegate.rCubicTo(x1, y1, x2, y2, x3, y3);
704 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
709 * @param x2 The x-coordinate of the end point on a quadratic curve
712 public void quadTo(float x1, float y1, float x2, float y2) { argument
713 mPath.quadTo(x1, y1, mLastX = x2, mLast
285 nCubicTo(long nPath, float x1, float y1, float x2, float y2, float x3, float y3) argument
296 nRCubicTo(long nPath, float x1, float y1, float x2, float y2, float x3, float y3) argument
753 cubicTo(float x1, float y1, float x2, float y2, float x3, float y3) argument
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... .Type x1 com.google.gson.JsonSerializationContext x2 public volatile synthetic java.lang.Object deserialize (com ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jar ... .Type x1 com.google.gson.JsonSerializationContext x2 public volatile synthetic java.lang.Object deserialize (com ...
/frameworks/base/services/core/java/com/android/server/power/
H A DWirelessChargerDetector.java353 float x2, float y2, float z2) {
354 final double dotProduct = (x1 * x2) + (y1 * y2) + (z1 * z2);
356 final double mag2 = Math.sqrt((x2 * x2) + (y2 * y2) + (z2 * z2));
368 + ", x2=" + x2 + ", y2=" + y2 + ", z2=" + z2
352 hasMoved(float x1, float y1, float z1, float x2, float y2, float z2) argument
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_x86.cpp154 __m128i x2, y2, z2, w2; local
170 x2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0x00));
175 x2 = _mm_add_epi32(x2, _mm_madd_epi16(zw, _mm_shuffle_epi32(c2, 0x00)));
180 x2 = _mm_srai_epi32(x2, 8);
185 x2 = packus_epi32(x2, y2);
187 o4 = _mm_packus_epi16(x2, z2);
210 __m128i x2, y local
262 __m128i x2, y2, z2, w2; local
303 rsdIntrinsicBlurVFU4_K(void *dst, const void *pin, int stride, const void *gptr, int rct, int x1, int x2) argument
340 rsdIntrinsicBlurHFU4_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int x2) argument
373 rsdIntrinsicBlurHFU1_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int x2) argument
[all...]
H A DrsCpuCore.h37 typedef void (*ReduceAccumulatorFunc_t)(const RsExpandKernelDriverInfo *info, uint32_t x1, uint32_t x2, uint8_t *accum);
41 typedef void (*ForEachFunc_t)(const RsExpandKernelDriverInfo *info, uint32_t x1, uint32_t x2, uint32_t outStride);
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java215 private void sendSwipe(int inputSource, float x1, float y1, float x2, float y2, int duration) { argument
226 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, lerp(x1, x2, alpha),
230 injectMotionEvent(inputSource, MotionEvent.ACTION_UP, now, x2, y2, 0.0f);
233 private void sendDragAndDrop(int inputSource, float x1, float y1, float x2, float y2, argument
251 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, lerp(x1, x2, alpha),
255 injectMotionEvent(inputSource, MotionEvent.ACTION_UP, now, x2, y2, 0.0f);
334 System.err.println(" swipe <x1> <y1> <x2> <y2> [duration(ms)]"
336 System.err.println(" draganddrop <x1> <y1> <x2> <y2> [duration(ms)]"
/frameworks/av/media/libstagefright/webm/
H A DWebmConstants.h137 kAudioType = 0x2,
147 kAudioTrackNum = 0x2
/frameworks/base/libs/hwui/font/
H A DCacheTexture.h162 float x2, float y2, float u2, float v2,
166 TextureVertex::set(mesh++, x2, y2, u2, v2);
161 addQuad(float x1, float y1, float u1, float v1, float x2, float y2, float u2, float v2, float x3, float y3, float u3, float v3, float x4, float y4, float u4, float v4) argument
/frameworks/base/media/mca/filterfw/jni/
H A Djni_shader_program.h70 jfloat x2,
82 jfloat x2,
H A Djni_shader_program.cpp142 jfloat x2,
148 program->SetSourceRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
160 jfloat x2,
166 program->SetTargetRegion(Quad(Point(x0, y0), Point(x1, y1), Point(x2, y2), Point(x3, y3)));
136 Java_android_filterfw_core_ShaderProgram_setSourceRegion(JNIEnv* env, jobject thiz, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) argument
154 Java_android_filterfw_core_ShaderProgram_setTargetRegion(JNIEnv* env, jobject thiz, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DRotateFilter.java144 Point x2 = new Point(0.5f * (-cosTheta - sinTheta + 1f),
148 Quad quad = new Quad(x0, x1, x2, x3);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPathInterpolatorBuilder.java50 private void initCubic(float x1, float y1, float x2, float y2) { argument
53 path.cubicTo(x1, y1, x2, y2, 1f, 1f);
/frameworks/av/include/media/
H A DIMediaPlayerService.h71 kBatteryDataTrackVideo = 0x2,
/frameworks/av/media/libmedia/include/media/
H A DIMediaPlayerService.h71 kBatteryDataTrackVideo = 0x2,
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.h67 eventMaskRefresh = 0x2,
H A DTransform.h57 ROTATE = 0x2,
/frameworks/wilhelm/src/android/
H A Dandroid_defs.h156 kAndroidBufferTypeAacadts = ((SLuint16) 0x2),

Completed in 699 milliseconds

12345678910