Searched refs:pos (Results 126 - 150 of 323) sorted by relevance

1234567891011>>

/frameworks/av/media/libmedia/
H A DMetadata.cpp148 size_t pos = mData->dataPosition(); local
159 mData->setDataPosition(pos + size);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DomxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s117 pos RN 5 label
373 SEL pos, t1, m00
374 USUB8 neg, pos, t1
375 USUB8 t3, pos, tC
376 SEL pos, tC, pos
379 UQADD8 P_0, p_0, pos
380 UQSUB8 Q_0, q_0, pos
/frameworks/base/media/java/android/media/session/
H A DISessionCallback.aidl47 void onSeekTo(long pos);
H A DISessionController.aidl68 void seekTo(long pos);
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerDataHelper.java117 int pos = (cursor.getCount() < limit ? 0 : cursor.getCount() - limit);
118 cursor.moveToPosition(pos);
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
H A DMainActivity.java70 int pos = topPosition + i;
72 float delta = (pos - clickedPosition) * 1.1f;
/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java998 for (int pos = mCurItem - 1; pos >= 0; pos--) {
999 if (extraWidthLeft >= leftWidthNeeded && pos < startPos) {
1003 if (pos == ii.position && !ii.scrolling) {
1005 mAdapter.destroyItem(this, pos, ii.object);
1007 Log.i(TAG, "populate() - destroyItem() with pos: " + pos +
1014 } else if (ii != null && pos == ii.position) {
1019 ii = addNewItem(pos, itemInde
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java1162 for (int pos = mCurItem - 1; pos >= 0; pos--) {
1163 if (extraWidthLeft >= leftWidthNeeded && pos < startPos) {
1167 if (pos == ii.position && !ii.scrolling) {
1169 mAdapter.destroyItem(this, pos, ii.object);
1171 Log.i(TAG, "populate() - destroyItem() with pos: " + pos +
1178 } else if (ii != null && pos == ii.position) {
1183 ii = addNewItem(pos, itemInde
[all...]
/frameworks/base/core/java/android/widget/
H A DMediaController.java412 int pos = setProgress();
414 postDelayed(mShowProgress, 1000 - (pos % 1000));
443 long pos = 1000L * position / duration;
444 mProgress.setProgress( (int) pos);
647 int pos = mPlayer.getCurrentPosition();
648 pos -= 5000; // milliseconds
649 mPlayer.seekTo(pos);
659 int pos = mPlayer.getCurrentPosition();
660 pos += 15000; // milliseconds
661 mPlayer.seekTo(pos);
702 seekTo(int pos) argument
[all...]
H A DCursorTreeAdapter.java289 for (int pos = mChildrenCursorHelpers.size() - 1; pos >= 0; pos--) {
290 mChildrenCursorHelpers.valueAt(pos).deactivate();
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java804 int pos = 0;
806 views[pos] = topPanel;
807 light[pos] = false;
808 pos++;
816 views[pos] = contentPanel.getVisibility() == View.GONE ? null : contentPanel;
817 light[pos] = mListView != null;
818 pos++;
821 views[pos] = customPanel;
822 light[pos] = mForceInverseBackground;
823 pos
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DStaggeredGridLayoutManagerBaseConfigSetTest.java129 logPrefix += " child1 pos:" + mLayoutManager.getPosition(child1);
180 final int pos = mRecyclerView.getChildLayoutPosition(child);
181 if (globalPositions[pos] != Integer.MIN_VALUE) {
185 globalPositions[pos] = globalScrollPosition +
188 globalPositions[pos] = globalScrollPosition +
216 + " global pos must match when scrolling in reverse for position ";
221 int pos = mRecyclerView.getChildLayoutPosition(child);
222 if (!shouldTest.get(pos)) {
225 shouldTest.clear(pos);
234 assertEquals(assertPrefix + pos,
[all...]
/frameworks/compile/libbcc/include/bcinfo/Wrap/
H A Dbitcode_wrapperer.h164 bool Seek(uint32_t pos);
/frameworks/data-binding/samples/BindingDemo/app/src/main/java/com/android/example/bindingdemo/
H A DMainActivity.java184 final int pos = lp.getViewAdapterPosition();
185 if (pos > -1 && pos < userList.size()) {
187 setSelected(userList.get(pos));
/frameworks/support/v4/java/android/support/v4/media/
H A DTransportPerformer.java60 * @param pos New position to move to, in milliseconds.
62 public abstract void onSeekTo(long pos); argument
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DDiskBasedCache.java325 int pos = 0;
326 while (pos < length && ((count = in.read(bytes, pos, length - pos)) != -1)) {
327 pos += count;
329 if (pos != length) {
330 throw new IOException("Expected " + length + " bytes, read " + pos + " bytes");
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp855 const NALPosition &pos = nals.itemAt(i); local
857 unsigned nalType = mBuffer->data()[pos.nalOffset] & 0x1f;
859 if (nalType == 6 && pos.nalSize > 0) {
866 seiPos.nalSize = pos.nalSize;
881 mBuffer->data() + pos.nalOffset,
882 pos.nalSize);
884 dstOffset += pos.nalSize + 4;
891 const NALPosition &pos = nals.itemAt(nals.size() - 1); local
892 size_t nextScan = pos.nalOffset + pos
918 NALPosition pos; local
[all...]
/frameworks/av/media/libstagefright/
H A DWAVExtractor.cpp421 int64_t pos = 0; local
427 pos = framenumber * 65;
429 pos = (seekTimeUs * mSampleRate) / 1000000 * mNumChannels * (mBitsPerSample >> 3);
431 if (pos > (off64_t)mSize) {
432 pos = mSize;
434 mCurrentPos = pos + mOffset;
H A DXINGSeeker.cpp46 bool XINGSeeker::getOffsetForTime(int64_t *timeUs, off64_t *pos) { argument
73 *pos = (int)((1.0f/256.0f)*fx*mSizeBytes) + mFirstFramePos;
/frameworks/base/core/jni/android/graphics/
H A DShader.cpp120 SkScalar* pos = autoPos.ptr(); local
126 reinterpret_cast<const SkColor*>(colorValues), pos, count,
164 SkScalar* pos = autoPos.ptr(); local
170 reinterpret_cast<const SkColor*>(colorValues), pos, count,
203 SkScalar* pos = autoPos.ptr(); local
209 reinterpret_cast<const SkColor*>(colors), pos, count);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp39 const char* pos = exts; local
40 while ((pos = strstr(pos, name)) != NULL) {
41 if (pos[len] == '\0' || pos[len] == ' ')
43 pos += len;
/frameworks/base/core/java/android/util/
H A DStateSet.java101 int pos = 0;
104 set[pos++] = orderedIds[j];
/frameworks/base/libs/hwui/
H A DSkiaCanvasProxy.cpp297 void SkiaCanvasProxy::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[], argument
309 posArray = pos;
311 x = pos[0].fX;
312 y = pos[0].fY;
315 pointStorage[i].fX = pos[i].fX - x;
316 pointStorage[i].fY = pos[i].fY - y;
329 glyphBounds.offset(pos[i].fX, pos[i].fY);
/frameworks/native/cmds/flatland/
H A DRenderers.cpp84 const float pos[] = { local
101 glVertexAttribPointer(mPosAttribLoc, 2, GL_FLOAT, GL_FALSE, 0, pos);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DBlend.java52 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
53 currentIntrinsic = pos;

Completed in 2442 milliseconds

1234567891011>>