Searched refs:position (Results 226 - 250 of 277) sorted by relevance

1234567891011>>

/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp699 jint position) {
706 return android_media_translateErrorCode( lpTrack->setPosition(position) );
713 uint32_t position = 0; local
720 lpTrack->getPosition(&position);
721 return (jint)position;
698 android_media_AudioTrack_set_position(JNIEnv *env, jobject thiz, jint position) argument
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp371 // the record head position will reset to 0, so if a marker is set, we need
436 status_t AudioRecord::getPosition(uint32_t *position) const
438 if (position == NULL) return BAD_VALUE;
441 *position = mCblk->user;
703 // Manage new position callback
715 // stuck here not being able to handle timed events (position, markers).
H A DAudioTrack.cpp439 // the playback head position will reset to 0, so if a marker is set, we need
672 status_t AudioTrack::setPosition(uint32_t position) argument
682 if (position > mCblk->user) return BAD_VALUE;
684 mCblk->server = position;
690 status_t AudioTrack::getPosition(uint32_t *position) argument
692 if (position == NULL) return BAD_VALUE;
694 *position = mFlushed ? 0 : mCblk->server;
1232 // Manage new position callback
1249 // not being able to handle timed events (position, markers, loops).
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
H A DVideoDumpView.java350 mTriangleVertices.put(mTriangleVerticesData).position(0);
395 mTriangleVertices.position(TRIANGLE_VERTICES_DATA_POS_OFFSET);
404 mTriangleVertices.position(TRIANGLE_VERTICES_DATA_UV_OFFSET);
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
H A DScoAudioTest.java629 int position, long id) {
630 if (mCurrentMode != position) {
631 mCurrentMode = position;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java122 "attribute vec4 position;\n" +
128 " gl_Position = projection * position;\n" +
330 // position it appropriately. As such, we no longer needed
405 final int attribPosition = glGetAttribLocation(program, "position");
429 triangleVertices.position(TRIANGLE_VERTICES_DATA_POS_OFFSET);
433 triangleVertices.position(TRIANGLE_VERTICES_DATA_UV_OFFSET);
461 triangleVertices.put(verticesData).position(0);
/frameworks/native/opengl/libagl/
H A Dlight.cpp69 c->lighting.lights[i].position.z = 0x10000;
226 &l.objPosition, &l.position);
228 l.objPosition = l.position;
382 if (ggl_unlikely(l.position.w)) {
421 if (ggl_unlikely(l.position.w)) {
531 mv.point4(&mv, &light.position, reinterpret_cast<vec4_t const*>(params));
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp191 int playbackStatus, int64_t position) {
195 uniqueId, decryptHandle.get(), playbackStatus, position);
189 setPlaybackStatus( int uniqueId, sp<DecryptHandle> &decryptHandle, int playbackStatus, int64_t position) argument
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPlayer.cpp379 status_t VideoEditorPlayer::VeAudioOutput::getPosition(uint32_t *position) const {
382 return mTrack->getPosition(position);
H A DVideoEditorPlayer.h48 virtual status_t getPosition(uint32_t *position) const;
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h87 virtual status_t getPosition(uint32_t *position) const;
188 virtual status_t getPosition(uint32_t *position) const;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s26 ; * [in] pBitOffset pointer to the bit position in the byte pointed
48 ; * current bit position in the byte pointed by
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s26 ; * [in] pBitOffset pointer to the bit position in the byte pointed
48 ; * current bit position in the byte pointed by
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java271 public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
272 mSelectedItemIndex = position;
/frameworks/base/core/java/android/view/
H A DView.java187 * <td>Called when this view should assign a size and position to all
1048 * The accessibility focus which is the current user position when
2564 * The undefined cursor position.
3128 * Position the scroll bar at the default position as determined by the system.
3905 * Set the position of the vertical scroll bar. Should be one of
3909 * @param position Where the vertical scroll bar should be positioned.
3911 public void setVerticalScrollbarPosition(int position) { argument
3912 if (mVerticalScrollbarPosition != position) {
3913 mVerticalScrollbarPosition = position;
3920 * @return The position wher
6945 setAccessibilityCursorPosition(int position) argument
[all...]
H A DViewRootImpl.java2377 // to update the scroll position if the focus has changed (in which
3157 // Offset the scroll position.
3165 // Remember the touch position for possible drag-initiation.
3244 if (DEBUG_TRACKBALL) Log.v(TAG, "TB X=" + x.position + " step="
3247 + " / Y=" + y.position + " step="
4531 // track of accessibility focus position in such nodes.
4845 float position; field in class:ViewRootImpl.TrackballAxis
4854 position = 0;
4877 position = 0;
4887 position
[all...]
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp778 setupDrawMesh(&mMeshVertices[0].position[0], &mMeshVertices[0].texture[0]);
816 &mMeshVertices[0].position[0], &mMeshVertices[0].texture[0],
872 setupDrawMeshIndices(&mesh[0].position[0], &mesh[0].texture[0]);
1009 setupDrawVertices(&mesh[0].position[0]);
1313 mCaches.bindPositionVertexPointer(force, mCaches.currentProgram->position, 0);
1346 mCaches.bindPositionVertexPointer(force, mCaches.currentProgram->position, vertices);
1356 mCaches.bindPositionVertexPointer(force, mCaches.currentProgram->position, vertices);
1364 mCaches.bindPositionVertexPointer(force, mCaches.currentProgram->position,
1383 mCaches.bindPositionVertexPointer(force, mCaches.currentProgram->position,
1621 mode, texture->blend, &mesh[0].position[
[all...]
H A DProgram.h345 * Name of the position attribute.
347 int position;
/frameworks/av/include/media/
H A DMediaPlayerInterface.h93 virtual status_t getPosition(uint32_t *position) const = 0;
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp1598 int16_t VolumeConvertStereoPosition(int16_t position){ argument
1601 convertedPosition = (int16_t)(((float)position/1000)*96);
1613 // position: stereo position
1618 int VolumeSetStereoPosition(EffectContext *pContext, int16_t position){ argument
1626 pContext->pBundledContext->positionSaved = position;
1634 //ALOGV("\tVolumeSetStereoPosition Position to be set is %d %d\n", position, Balance);
1635 pContext->pBundledContext->positionSaved = position;
1663 //position, Balance);
1680 // position
1683 VolumeGetStereoPosition(EffectContext *pContext, int16_t *position) argument
2371 int16_t position; local
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java236 public void onItemClick(AdapterView<?> adapterView,View view, int position,
240 .getRecipientEntry(position));
1380 // regardless of the position of the chip tapped.
1412 public void onCheckedItemChanged(int position) { argument
1415 listView.setItemChecked(position, true);
1417 mCheckedItem = position;
1555 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
1556 submitItemAtPosition(position);
1559 private void submitItemAtPosition(int position) { argument
1561 (RecipientEntry)getAdapter().getItem(position));
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp367 int playbackStatus, int64_t position) {
370 int playbackStatus, int position) {
366 onSetPlaybackStatus(int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
/frameworks/base/core/java/android/app/
H A DSearchDialog.java696 public boolean onSuggestionSelect(int position) {
700 public boolean onSuggestionClick(int position) {
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java528 // the transform for it's new relative position in the window, and animate
831 // values to restore the list position after we connect, and can skip setting the displayed
990 public void setSelection(int position) { argument
991 setDisplayedChild(position);
1019 // Restore the previous position (see onRestoreInstanceState)
H A DOverScroller.java146 * position.
243 * Instead of setting a new final position and extending
254 * Sets the final position (X) for this scroller.
261 * @deprecated OverScroller's final position may change during an animation.
262 * Instead of setting a new final position and extending
272 * Sets the final position (Y) for this scroller.
279 * @deprecated OverScroller's final position may change during an animation.
280 * Instead of setting a new final position and extending
461 * @param startX Starting/current X position
462 * @param finalX Desired final X position
707 setFinalPosition(int position) argument
[all...]

Completed in 567 milliseconds

1234567891011>>