Searched refs:pts (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/base/core/java/android/gesture/
H A DInstance.java73 float[] pts;
76 pts = temporalSampler(orientationType, gesture);
77 instance = new Instance(gesture.getID(), pts, label);
80 pts = spatialSampler(gesture);
81 instance = new Instance(gesture.getID(), pts, label);
91 float[] pts = GestureUtils.temporalSampling(gesture.getStrokes().get(0),
93 float[] center = GestureUtils.computeCentroid(pts);
94 float orientation = (float)Math.atan2(pts[1] - center[1], pts[0] - center[0]);
107 GestureUtils.translate(pts,
[all...]
H A DGestureStroke.java88 private GestureStroke(RectF bbx, float len, float[] pts, long[] times) { argument
91 points = pts.clone();
162 final float[] pts = GestureUtils.temporalSampling(this, numSample);
165 GestureUtils.translate(pts, -rect.left, -rect.top);
170 GestureUtils.scale(pts, scale, scale);
177 final int count = pts.length;
180 float x = pts[i];
181 float y = pts[i + 1];
202 final float[] pts = points;
211 out.writeFloat(pts[
[all...]
H A DGestureUtils.java143 final float[] pts = new float[size];
145 pts[i] = (strokepoints[i] + preDx) * sx + postDx;
146 pts[i + 1] = (strokepoints[i + 1] + preDy) * sy + postDy;
151 float segmentStartX = pts[i] < 0 ? 0 : pts[i];
152 float segmentStartY = pts[i + 1] < 0 ? 0 : pts[i + 1];
273 float[] pts = stroke.points;
274 float lstPointX = pts[0];
275 float lstPointY = pts[
[all...]
/frameworks/av/include/media/
H A DAudioBufferProvider.h44 // pts is the local time when the next sample yielded by getNextBuffer
47 virtual status_t getNextBuffer(Buffer* buffer, int64_t pts = kInvalidPTS) = 0;
H A DIAudioTrack.h82 int64_t pts) = 0;
/frameworks/av/include/media/nbaio/
H A DSourceAudioBufferProvider.h34 virtual status_t getNextBuffer(Buffer *buffer, int64_t pts);
/frameworks/av/services/audioflinger/
H A DAudioMixer.h106 void process(int64_t pts);
212 void (*hook)(state_t* state, int64_t pts); // one of process__*, never NULL
223 virtual status_t getNextBuffer(Buffer* buffer, int64_t pts);
264 static void process__validate(state_t* state, int64_t pts);
265 static void process__nop(state_t* state, int64_t pts);
266 static void process__genericNoResampling(state_t* state, int64_t pts);
267 static void process__genericResampling(state_t* state, int64_t pts);
269 int64_t pts);
272 int64_t pts);
H A DAudioResampler.h56 virtual void setPTS(int64_t pts);
H A DAudioMixer.cpp58 int64_t pts) {
61 status_t res = mTrackBufferProvider->getNextBuffer(pBuffer, pts);
619 void AudioMixer::process(int64_t pts) argument
621 mState.hook(&mState, pts);
625 void AudioMixer::process__validate(state_t* state, int64_t pts) argument
733 state->hook(state, pts);
1047 void AudioMixer::process__nop(state_t* state, int64_t pts) argument
1078 t1, pts, state->frameCount - outFrames);
1089 void AudioMixer::process__genericNoResampling(state_t* state, int64_t pts) argument
1101 t.bufferProvider->getNextBuffer(&t.buffer, pts);
57 getNextBuffer(AudioBufferProvider::Buffer *pBuffer, int64_t pts) argument
1186 process__genericResampling(state_t* state, int64_t pts) argument
1255 process__OneTrack16BitsStereoNoResampling(state_t* state, int64_t pts) argument
[all...]
H A DAudioFlinger.h409 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts) = 0;
825 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
915 TimedBuffer(const sp<IMemory>& buffer, int64_t pts);
917 int64_t pts() const { return mPTS; } function in class:android::AudioFlinger::PlaybackThread::TimedTrack::TimedBuffer
932 int64_t pts);
939 int64_t pts);
1417 int64_t pts);
1468 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts = kInvalidPTS);
1521 virtual status_t getNextBuffer(AudioBufferProvider::Buffer* buffer, int64_t pts);
H A DAudioResampler.cpp263 void AudioResampler::setPTS(int64_t pts) {
264 mPTS = pts;
/frameworks/base/libs/hwui/
H A DPathRenderer.cpp597 SkPoint pts[4]; local
600 while (SkPath::kDone_Verb != (v = iter.next(pts))) {
603 pushToVector(outputVertices, pts[0].x(), pts[0].y());
604 ALOGV("Move to pos %f %f", pts[0].x(), pts[0].y());
607 ALOGV("Close at pos %f %f", pts[0].x(), pts[0].y());
611 pts[0].x(), pts[
[all...]
H A DSkiaShader.cpp170 static void toUnitMatrix(const SkPoint pts[2], SkMatrix* matrix) { argument
171 SkVector vec = pts[1] - pts[0];
176 matrix->setSinCos(-vec.fY, vec.fX, pts[0].fX, pts[0].fY);
177 matrix->postTranslate(-pts[0].fX, -pts[0].fY);
/frameworks/base/core/java/android/app/
H A DActivityOptions.java212 int[] pts = new int[2];
213 source.getLocationOnScreen(pts);
214 opts.mStartX = pts[0] + startX;
215 opts.mStartY = pts[1] + startY;
297 int[] pts = new int[2];
298 source.getLocationOnScreen(pts);
299 opts.mStartX = pts[0] + startX;
300 opts.mStartY = pts[1] + startY;
/frameworks/av/media/libnbaio/
H A DSourceAudioBufferProvider.cpp48 status_t SourceAudioBufferProvider::getNextBuffer(Buffer *buffer, int64_t pts) argument
68 ssize_t actual = mSource->read(mAllocated, buffer->frameCount, pts);
/frameworks/base/core/java/android/view/
H A DGLES20RecordingCanvas.java173 public void drawLines(float[] pts, int offset, int count, Paint paint) { argument
174 super.drawLines(pts, offset, count, paint);
179 public void drawLines(float[] pts, Paint paint) { argument
180 super.drawLines(pts, paint);
209 public void drawPoints(float[] pts, int offset, int count, Paint paint) { argument
210 super.drawPoints(pts, offset, count, paint);
215 public void drawPoints(float[] pts, Paint paint) { argument
216 super.drawPoints(pts, paint);
H A DGLES20Canvas.java957 public void drawLines(float[] pts, int offset, int count, Paint paint) { argument
958 if ((offset | count) < 0 || offset + count > pts.length) {
963 nDrawLines(mRenderer, pts, offset, count, paint.mNativePaint);
973 public void drawLines(float[] pts, Paint paint) { argument
974 drawLines(pts, 0, pts.length, paint);
1064 public void drawPoints(float[] pts, Paint paint) { argument
1065 drawPoints(pts, 0, pts.length, paint);
1069 public void drawPoints(float[] pts, in argument
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorSRC.h38 virtual status_t getNextBuffer(Buffer* buffer, int64_t pts);
/frameworks/av/media/libmedia/
H A DIAudioTrack.cpp136 int64_t pts) {
140 data.writeInt64(pts);
224 uint64_t pts = data.readInt64(); local
225 reply->writeInt32(queueTimedBuffer(buffer, pts));
135 queueTimedBuffer(const sp<IMemory>& buffer, int64_t pts) argument
/frameworks/av/libvideoeditor/vss/src/
H A DVideoEditorResampler.cpp29 virtual status_t getNextBuffer(Buffer* buffer, int64_t pts);
56 status_t VideoEditorResampler::getNextBuffer(AudioBufferProvider::Buffer *pBuffer, int64_t pts) { argument
/frameworks/base/core/jni/android/graphics/
H A DShader.cpp114 SkPoint pts[2]; local
115 pts[0].set(SkFloatToScalar(x0), SkFloatToScalar(y0));
116 pts[1].set(SkFloatToScalar(x1), SkFloatToScalar(y1));
133 SkShader* shader = SkGradientShader::CreateLinear(pts,
244 SkPoint pts[2]; local
245 pts[0].set(SkFloatToScalar(x0), SkFloatToScalar(y0));
246 pts[1].set(SkFloatToScalar(x1), SkFloatToScalar(y1));
252 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2, (SkShader::TileMode)tileMode);
H A DMatrix.cpp279 SkPoint* pts = storage.get(); local
280 SkPoint* srcPt = pts;
281 SkPoint* dstPt = pts + ptCount;
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java838 * specified by pts[], and its diameter is specified by the paint's stroke
845 * @param pts Array of points to draw [x0 y0 x1 y1 x2 y2 ...]
852 public native void drawPoints(float[] pts, int offset, int count, Paint paint); argument
857 public void drawPoints(float[] pts, Paint paint) { argument
858 drawPoints(pts, 0, pts.length, paint);
881 * in the pts array. Thus to draw 1 line, the array must contain at least 4
883 * drawLine(pts[0], pts[1], pts[
894 drawLines(float[] pts, int offset, int count, Paint paint) argument
896 drawLines(float[] pts, Paint paint) argument
[all...]
H A DMatrix.java661 * @param pts The array [x0, y0, x1, y1, ...] of points to transform.
663 public void mapPoints(float[] pts) { argument
664 mapPoints(pts, 0, pts, 0, pts.length >> 1);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java274 /*package*/ static void drawPoints(Canvas thisCanvas, float[] pts, int offset, int count, argument
290 final float[] pts, final int offset, final int count,
297 graphics.drawLine((int)pts[i + offset], (int)pts[i + offset + 1],
298 (int)pts[i + offset + 2], (int)pts[i + offset + 3]);
289 drawLines(Canvas thisCanvas, final float[] pts, final int offset, final int count, Paint paint) argument

Completed in 3533 milliseconds

12