Searched refs:track (Results 51 - 68 of 68) sorted by relevance

123

/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java310 * the track.
320 * Specifies whether the track should be split by the thumb. When true,
321 * the thumb's optical bounds will be clipped out of the track drawable,
324 * @param splitTrack Whether the track should be split by the thumb
332 * Returns whether the track should be split by the thumb.
563 final Drawable track = getCurrentDrawable();
584 if (track != null) {
586 track.setBounds(0, trackOffset, trackWidth, trackOffset + trackHeight);
614 // The extra space for the thumb to move on the track
H A DSwitch.java125 * Width required to draw the switch track and thumb. Includes padding and
126 * optical bounds for both the track and thumb.
131 * Height required to draw the switch track and thumb. Includes padding and
132 * optical bounds for both the track and thumb.
142 /** Left bound for drawing the switch track and thumb. */
145 /** Top bound for drawing the switch track and thumb. */
148 /** Right bound for drawing the switch track and thumb. */
151 /** Bottom bound for drawing the switch track and thumb. */
487 * Set the drawable used for the track that the switch slides within.
489 * @param track Trac
493 setTrackDrawable(Drawable track) argument
[all...]
H A DFastScroller.java87 // Positions for thumb in relation to track.
140 // Used to convert between y-coordinate and thumb position within track.
183 * <li>{@link #STATE_VISIBLE}, showing track and thumb
293 // Add track to overlay if it has an image.
765 * Lays out the track centered on the thumb. Must be called after
769 final View track = mTrackImage;
777 track.measure(widthMeasureSpec, heightMeasureSpec);
790 final int trackWidth = track.getMeasuredWidth();
793 track.layout(left, top, right, bottom);
798 * thumb position within the track
[all...]
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java33 * A subtitle track abstract base class that is responsible for parsing and displaying
88 * Called when there is input data for the subtitle track. The
89 * complete subtitle for a track can include multiple whole units
100 * only at the deletion of the track object. Cues
109 * as well as when showing or hiding the subtitle track, or when the video
112 * @return the widget that renders this subtitle track. For most renderers
114 * tracks supported by that renderer, as at most one subtitle track
344 final SubtitleTrack track = this;
352 synchronized (track) {
612 /** @hide whether this is a text track wh
[all...]
H A DJetPlayer.java86 private static final int JET_EVENT_TRACK_MASK = 0x00fc0000; // mask for track number
90 private static final int JET_EVENT_TRACK_SHIFT = 18; // shift to get track ID to bit 0
273 * affects track 0, bit 1 affects track 1 etc.
279 * track including trigger clips and mute flags.
301 * playback. The value at index 0 affects track 0, value at index 1 affects track 1 etc.
308 * track including trigger clips and mute flags.
324 * @param muteFlags a bitmask to specify which MIDI tracks are muted. Bit 0 affects track 0,
325 * bit 1 affects track
508 onJetEvent(JetPlayer player, short segment, byte track, byte channel, byte controller, byte value) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.h290 bool seeking, bool formatChange, media_track_type trackType, Track *track);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSwitchCompat.java129 * Width required to draw the switch track and thumb. Includes padding and
130 * optical bounds for both the track and thumb.
135 * Height required to draw the switch track and thumb. Includes padding and
136 * optical bounds for both the track and thumb.
146 /** Left bound for drawing the switch track and thumb. */
149 /** Top bound for drawing the switch track and thumb. */
152 /** Right bound for drawing the switch track and thumb. */
155 /** Bottom bound for drawing the switch track and thumb. */
457 * Set the drawable used for the track that the switch slides within.
459 * @param track Trac
463 setTrackDrawable(Drawable track) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaAudioEffectTest.java400 AudioTrack track = new AudioTrack(
409 assertNotNull(msg + ": could not create AudioTrack", track);
415 track.attachAuxEffect(effect.getId());
416 track.setAuxEffectSendLevel(1.0f);
419 track.release();
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.cpp260 sp<WebmElement> WebmElement::CuePointEntry(uint64_t time, int track, uint64_t off) { argument
262 cuePointEntryFields.push_back(new WebmUnsigned(kMkvCueTrack, track));
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h2031 SLuint16 track
2041 SLuint16 track
2107 SLuint16 track,
2112 SLuint16 track,
2117 SLuint16 track,
2122 SLuint16 track,
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp329 // Update the audio track's drift information.
357 // Determine the track time scale
358 // If it is an audio track, try to use the sampling rate as
480 snprintf(buffer, SIZE, " %s track\n", mIsAudio? "Audio": "Video");
545 // At this point, we know the track to be added is either
547 // is an audio track or not (if it is not, then it must be
548 // a video track).
550 // No more than one video or one audio track is supported.
554 ALOGE("%s track already exists", isAudio? "Audio": "Video");
559 // This is the first track o
561 Track *track = new Track(this, source, 1 + mTracks.size()); local
1797 Track *track = NULL; local
1996 Track *track = static_cast<Track *>(me); local
[all...]
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp365 // stream type shouldn't be looked at, this track has audio attributes
460 ALOGE("notificationFrames=%d not permitted for non-fast track",
593 // We save the time when the track is started to later verify whether
735 // the same configuration. A timestamp query for a paused track
738 // this time when requested until the track is resumed.
949 // Reject if timed track or compressed audio.
1302 "track %u Hz, output %u Hz",
1387 sp<IAudioTrack> track = audioFlinger->createTrack(streamType, local
1404 ALOGE("AudioFlinger could not create track, status: %d", status);
1407 ALOG_ASSERT(track !
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h488 TrackHandle(const sp<PlaybackThread::Track>& track);
H A DAudioFlinger.cpp591 sp<PlaybackThread::Track> track; local
681 track = thread->createTrack_l(client, streamType, sampleRate, format,
683 LOG_ALWAYS_FATAL_IF((lStatus == NO_ERROR) && (track == 0));
687 // for a track to be created
700 (void) track->setSyncEvent(mPendingSyncEvents[i]);
716 // Don't hold mClientLock when releasing the reference on the track as the
722 track.clear();
727 trackHandle = new TrackHandle(track);
1584 // Don't hold mClientLock when releasing the reference on the track as the
2765 // thread when a track wit
[all...]
H A DTracks.cpp108 // clientUid contains the uid of the app that is responsible for this track, so we can blame
112 // ALOGD("Creating track with %d buffers @ %d bytes", bufferCount, bufferSize);
170 mCblk->mFlags = CBLK_FORCEREADY; // FIXME hack, need to fix the track ready logic
271 AudioFlinger::TrackHandle::TrackHandle(const sp<AudioFlinger::PlaybackThread::Track>& track) argument
273 mTrack(track)
278 // just stop the track on deletion, associated resources
280 // been played. Unless it's not in the active track list, in which
362 mFrameMap(16 /* sink-frame-to-track-frame map memory */),
393 ALOGE("no more track names available");
396 // only allocate a fast track inde
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1537 } else if (res == WOULD_BLOCK) { // case 2: transitory state on start of a new track
1542 } else { // case 3: transitory at new track or audio fast tracks.
1635 ALOGD("deleting recycled track, waiting for data drain (%d msec)", msec);
1644 // An offloaded track isn't flushed because the STREAM_END is reported
1645 // slightly prematurely to allow time for the gapless track switch
1646 // but this means that if we decide not to recycle the track there
1648 // AudioFlinger to drain the track.
1725 // Check whether we can recycle the track
1734 // check if the existing track can be reused as-is, or if a new track need
2034 sp<AudioTrack> track; local
[all...]
/frameworks/base/core/java/android/view/
H A DView.java567 * scroll their content. This includes keeping track of the X and Y scroll
2464 * Flag indicating that view has a transform animation set on it. This is used to track whether
2471 * Flag indicating that view has an alpha animation set on it. This is used to track whether an
5116 Drawable track = a.getDrawable(R.styleable.View_scrollbarTrackHorizontal);
5117 scrollabilityCache.scrollBar.setHorizontalTrackDrawable(track);
5130 track = a.getDrawable(R.styleable.View_scrollbarTrackVertical);
5131 scrollabilityCache.scrollBar.setVerticalTrackDrawable(track);
5146 if (track != null) {
5147 track.setLayoutDirection(layoutDirection);
10832 * Generic motion events describe joystick movements, mouse hovers, track pa
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 2711 milliseconds

123