HomeSort by relevance Sort by last modified time
    Searched refs:channelIndex (Results 1 - 6 of 6) sorted by null

  /external/skia/src/core/
SkColorSpaceXform_A2B.h 37 void addTransferFn(const SkColorSpaceTransferFn& fn, int channelIndex);
39 void addTableFn(const SkTableTransferFn& table, int channelIndex);
SkColorSpaceXform_A2B.cpp 256 void SkColorSpaceXform_A2B::addTransferFn(const SkColorSpaceTransferFn& fn, int channelIndex) {
258 switch (channelIndex) {
276 void SkColorSpaceXform_A2B::addTableFn(const SkTableTransferFn& fn, int channelIndex) {
278 switch (channelIndex) {
  /packages/apps/TV/src/com/android/tv/
ChannelTuner.java 231 int channelIndex;
233 channelIndex = 0;
234 Channel channel = mChannels.get(channelIndex);
239 channelIndex = mChannelIndexMap.get(mCurrentChannel.getId());
243 int nextChannelIndex = up ? channelIndex + 1 + i
244 : channelIndex - 1 - i + size;
  /packages/apps/TV/src/com/android/tv/guide/
ProgramListAdapter.java 47 public ProgramListAdapter(Resources res, ProgramManager programManager, int channelIndex) {
50 mChannelIndex = channelIndex;
ProgramManager.java 603 * Returns a {@link Channel} at a given {@code channelIndex} of the currently managed channels.
606 public Channel getChannel(int channelIndex) {
607 if (channelIndex < 0 || channelIndex >= getChannelCount()) {
610 return mFilteredChannels.get(channelIndex);
ProgramTableAdapter.java 237 int channelIndex = mProgramManager.getChannelIndex(tableEntry.channelId);
239 if (DEBUG) Log.d(TAG, "update(" + channelIndex + ", " + pos + ")");
240 mProgramListAdapters.get(channelIndex).notifyItemChanged(pos, tableEntry);
241 notifyItemChanged(channelIndex, true);
    [all...]

Completed in 3411 milliseconds