Searched refs:position (Results 251 - 275 of 277) sorted by relevance

<<1112

/frameworks/base/core/java/android/widget/
H A DSuggestionsAdapter.java481 public View getView(int position, View convertView, ViewGroup parent) { argument
483 return super.getView(position, convertView, parent);
H A DRemoteViews.java353 int position, long id) {
1890 * @param position Scroll to this adapter position
1892 public void setScrollPosition(int viewId, int position) { argument
1893 setInt(viewId, "smoothScrollToPosition", position);
1900 * @param offset Scroll by this adapter position offset
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
H A DDrmPassthruPlugIn.cpp190 int playbackStatus, int64_t position) {
189 onSetPlaybackStatus(int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
/frameworks/base/core/java/android/view/
H A DViewDebug.java636 int[] position = new int[2];
638 view.getLocationInWindow(position);
640 clientStream.writeInt(position[0]);
641 clientStream.writeInt(position[1]);
H A DViewGroup.java372 // Index of the child's left position in the mLocation array
374 // Index of the child's top position in the mLocation array
1260 // the position within its own local coordinate system.
3182 * @param index the position at which to add the child
3236 * @param index the position at which to add the child
3593 * Removes the view at the specified position in the group.
3599 * @param index the position in the group of the view to remove
3614 * @param start the first position in the group of the range of views to remove
4012 // be invalidating their old position and need the parent to paint behind them.
4331 float[] position
[all...]
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp43 virtual int Read(long long position, long length, unsigned char* buffer) { argument
44 CHECK(position >= 0);
51 ssize_t n = mSource->readAt(position, buffer, length);
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp753 positionID = _env->GetFieldID(bufferClass, "position", "I");
762 jint position; local
769 position = _env->GetIntField(buffer, positionID);
772 *remaining = (limit - position) << elementSizeShift;
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java371 int position = 0;
376 Slog.v(TAG, position + ": " + timeStr
378 position += 1;
H A DInputMethodManagerService.java2529 public View getView(int position, View convertView, ViewGroup parent) { argument
2532 if (position < 0 || position >= mItemsList.size()) return view;
2533 final ImeSubtypeListItem item = mItemsList.get(position);
2548 radioButton.setChecked(position == mCheckedItem);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1494 status_t MediaPlayerService::AudioOutput::getPosition(uint32_t *position) const
1497 return mTrack->getPosition(position);
1830 status_t MediaPlayerService::AudioCache::getPosition(uint32_t *position) const
1832 if (position == 0) return BAD_VALUE;
1833 *position = mSize;
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp430 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
440 data.writeInt64(position);
1108 const int64_t position = data.readInt64(); local
1110 = setPlaybackStatus(uniqueId, &handle, playbackStatus, position);
429 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java781 * and compounding touch position and view dragging mismatch.
1125 // to false when restoring the scroll position.
3064 // position.
3135 // method on the native side to compute the position of the fixed layers.
3790 // Update the layer position instead of WebView.
3886 // disallow WebView to change the scroll position as History Picture
3950 // disallow WebView to change the scroll position as History Picture
5271 * Paste text from the clipboard to the cursor position.
6613 * Compute the maximum horizontal scroll position. Used by {@link OverScrollGlow}.
6614 * @return Maximum horizontal scroll position withi
8010 getView(int position, View convertView, ViewGroup parent) argument
8064 item(int position) argument
8072 getItemId(int position) argument
8086 isEnabled(int position) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java145 public void onItemSelected(AdapterView parent, View view, int position, long id) {
147 mCallback.onNavigationItemSelected(position, id);
716 public void setDropdownSelectedPosition(int position) { argument
717 mSpinner.setSelection(position);
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css716 background-position:right;
741 background-position:right;
/frameworks/base/libs/hwui/
H A DFontRenderer.h211 SkPathMeasure& measure, SkPoint* position, SkVector* tangent);
/frameworks/base/media/java/android/media/
H A DAudioTrack.java160 * The listener the AudioTrack notifies when the playback position reaches a marker
616 * Returns marker position expressed in frames.
630 * Returns the playback head position expressed in frames
717 * for each periodic playback head position update.
728 * for each periodic playback head position update.
804 * Sets the position of the notification marker.
831 * Sets the playback head position. The track must be stopped for the position to be changed.
832 * @param positionInFrames playback head position expressed in frames
1099 * Interface definition for a callback to be invoked when the playback head position o
1243 native_set_position(int position) argument
[all...]
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp311 int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) {
316 result = drmEngine->setPlaybackStatus(uniqueId, decryptHandle, playbackStatus, position);
310 setPlaybackStatus( int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp71 positionID = _env->GetFieldID(bufferClass, "position", "I");
80 jint position; local
87 position = _env->GetIntField(buffer, positionID);
90 *remaining = (limit - position) << elementSizeShift;
118 jint position = _env->GetIntField(buffer, positionID); local
120 buf += position << elementSizeShift;
H A Dandroid_opengl_GLES11.cpp65 positionID = _env->GetFieldID(bufferClass, "position", "I");
75 jint position; local
82 position = _env->GetIntField(buffer, positionID);
85 *remaining = (limit - position) << elementSizeShift;
114 jint position = _env->GetIntField(buffer, positionID); local
116 buf += position << elementSizeShift;
H A Dandroid_opengl_GLES11Ext.cpp67 positionID = _env->GetFieldID(bufferClass, "position", "I");
77 jint position; local
84 position = _env->GetIntField(buffer, positionID);
87 *remaining = (limit - position) << elementSizeShift;
116 jint position = _env->GetIntField(buffer, positionID); local
118 buf += position << elementSizeShift;
H A Dandroid_opengl_GLES20.cpp58 positionID = _env->GetFieldID(bufferClass, "position", "I");
68 jint position; local
75 position = _env->GetIntField(buffer, positionID);
78 *remaining = (limit - position) << elementSizeShift;
107 jint position = _env->GetIntField(buffer, positionID); local
109 buf += position << elementSizeShift;
H A Dcom_google_android_gles_jni_GLImpl.cpp110 positionID = _env->GetFieldID(bufferClass, "position", "I");
119 jint position; local
126 position = _env->GetIntField(buffer, positionID);
129 *remaining = (limit - position) << elementSizeShift;
177 jint position = _env->GetIntField(buffer, positionID); local
179 buf = ((char*) buf) + (position << elementSizeShift);
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp877 int64_t position; local
878 getPosition(&position);
880 Playback::START, position / 1000);
/frameworks/native/opengl/libagl/
H A Dcontext.h289 vec4_t position; // position in eye space member in struct:android::gl::light_t
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp5001 uint32_t consumedAlready = buf.position();
5127 ((head.position() / mCblk->frameSize) * mLocalTimeFreq / sampleRate());
5132 // that the sample's position in the output stream is so far out of
5150 head.pts(), head.position(), pts,
5156 // the current output position is within this threshold, then we will
5172 head.position(), buffer->frameCount);
5181 // the gap between the current output position and the proper start of
5192 head.position() + lateFrames * mCblk->frameSize;
5207 ALOGV("*** late: head.pos=%d frameCount=%u", head.position(), buffer->frameCount);
5224 head.position());
[all...]

Completed in 2065 milliseconds

<<1112