HomeSort by relevance Sort by last modified time
    Searched defs:currentProgram (Results 1 - 13 of 13) sorted by null

  /packages/apps/TV/src/com/android/tv/guide/
ProgramRow.java 106 View currentProgram = getCurrentProgramView();
107 if (currentProgram == null) {
108 currentProgram = getChildAt(0);
111 mChildFocusListener.onChildFocus(null, currentProgram);
ProgramManager.java 520 Program currentProgram = mProgramDataManager.getCurrentProgram(channel.getId());
521 if (currentProgram != null && currentProgram.getCanonicalGenres() != null) {
522 for (String genre : currentProgram.getCanonicalGenres()) {
  /packages/apps/TV/src/com/android/tv/menu/
ChannelCardView.java 107 Program currentProgram =
109 if (!Objects.equals(currentProgram, mProgram)) {
110 mProgram = currentProgram;
  /packages/apps/TV/src/com/android/tv/recommendation/
RoutineWatchEvaluator.java 46 Program currentProgram = cr.getCurrentProgram();
47 if (currentProgram == null) {
58 currentProgram.getStartTimeUtcMillis() - watchedProgram.getStartTimeUtcMillis();
72 currentProgram, watchedProgram, watchedDurationMs);
79 currentProgram.getStartTimeUtcMillis()
87 calculateRoutineWatchScore(currentProgram, watchedProgram, watchedDurationMs);
95 Program currentProgram, Program watchedProgram, long watchedDurationMs) {
96 double timeMatchScore = calculateTimeMatchScore(currentProgram, watchedProgram);
98 calculateTitleMatchScore(currentProgram.getTitle(), watchedProgram.getTitle());
101 currentProgram.getStartTimeUtcMillis() - watchedProgram.getStartTimeUtcMillis()
    [all...]
  /packages/apps/TV/src/com/android/tv/data/
ProgramDataManager.java 394 long channelId, Program currentProgram) {
396 if (!Program.isProgramValid(currentProgram)) {
412 if (cachedProgram.getEndTimeUtcMillis() <= currentProgram.getStartTimeUtcMillis()) {
419 if (cachedProgram.getStartTimeUtcMillis() < currentProgram.getStartTimeUtcMillis()) {
424 currentProgram.getStartTimeUtcMillis()));
425 i.add(currentProgram);
427 i.set(currentProgram);
429 if (currentProgram.getEndTimeUtcMillis() < cachedProgram.getEndTimeUtcMillis()) {
433 currentProgram.getEndTimeUtcMillis(),
440 // currentProgram would not have a chance to be inserted to the cache
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
TunerRecordingSessionWorker.java 456 PsipData.EitItem currentProgram = getCurrentProgram(items);
457 if (currentProgram == null
458 || !currentProgram.hasCaptionTrack()
459 || (mCurrenProgram != null && mCurrenProgram.compareTo(currentProgram) == 0)) {
462 mCurrenProgram = currentProgram;
463 mCaptionTracks = new ArrayList<>(currentProgram.getCaptionTracks());
467 "updated " + mCaptionTracks.size() + " caption tracks for " + currentProgram);
TunerSessionWorker.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 322 IGLProperty currentProgram = new GLIntegerProperty(GLStateType.CURRENT_PROGRAM,
360 currentProgram, programs);
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLClientState.h 246 GLint currentProgram() const { return m_currentProgram; }
  /external/swiftshader/src/OpenGL/libGL/
Context.h 494 GLuint currentProgram;
  /external/swiftshader/src/OpenGL/libGLESv2/
Context.h 417 GLuint currentProgram;
  /packages/apps/TV/src/com/android/tv/
TimeShiftManager.java 341 Program currentProgram =
343 if (currentProgram == null) {
346 Program nextProgram = mProgramManager.getProgramAt(currentProgram.getEndTimeUtcMillis());
451 Program currentProgram = getProgramAt(mCurrentPositionMediator.mCurrentPositionMs);
452 if (!Program.isProgramValid(currentProgram)) {
453 currentProgram = null;
455 if (!Objects.equals(mCurrentProgram, currentProgram)) {
456 if (DEBUG) Log.d(TAG, "Current program has been updated. " + currentProgram);
457 mCurrentProgram = currentProgram;
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java     [all...]

Completed in 867 milliseconds