HomeSort by relevance Sort by last modified time
    Searched refs:programs (Results 1 - 25 of 280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/providers/TvProvider/tests/src/com/android/providers/tv/
EpgDataCleanupServiceTests.java 28 import android.media.tv.TvContract.Programs;
131 private void insertPrograms(Program... programs) {
132 insertPrograms(Arrays.asList(programs));
135 private void insertPrograms(Collection<Program> programs) {
139 values.put(Programs.COLUMN_CHANNEL_ID, channelId);
140 for (Program program : programs) {
141 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, program.startTime);
142 values.put(Programs.COLUMN_END_TIME_UTC_MILLIS, program.endTime);
143 Uri uri = mResolver.insert(Programs.CONTENT_URI, values);
151 Programs._ID
159 Set<Program> programs = Sets.newHashSet(); local
198 Set<Program> programs = Sets.newHashSet(); local
225 ArrayList<Program> programs = new ArrayList<Program>(); local
248 ArrayList<Program> programs = new ArrayList<Program>(); local
260 ArrayList<Program> programs = new ArrayList<Program>(); local
    [all...]
  /external/deqp/modules/glshared/
glsShaderConstExprTests.cpp 163 spec.programs.resize(1);
165 spec.programs[0].sources << glu::VertexSource(mapped);
184 spec.programs.resize(1);
186 spec.programs[0].sources << glu::FragmentSource(mapped);
217 spec.programs.resize(1);
219 spec.programs[0].sources << glu::VertexSource(mapped);
238 spec.programs.resize(1);
240 spec.programs[0].sources << glu::FragmentSource(mapped);
glsShaderLibraryCase.cpp 833 if (spec.programs[0].sources.separable)
838 for (int programNdx = 0; programNdx < (int)spec.programs.size(); ++programNdx)
839 if (spec.programs[programNdx].activeStages & tessellationBits)
844 return !spec.programs[0].sources.sources[glu::SHADERTYPE_TESSELLATION_CONTROL].empty() ||
845 !spec.programs[0].sources.sources[glu::SHADERTYPE_TESSELLATION_EVALUATION].empty();
926 const bool separablePrograms = m_spec.programs[0].sources.separable;
932 vector<ProgramSources> specializedSources (m_spec.programs.size());
936 vector<SharedPtr<ShaderProgram> > programs;
    [all...]
  /frameworks/wilhelm/tests/
Android.mk 16 # Build the manual test programs.
  /frameworks/wilhelm/tests/automated/
Android.mk 30 # Build the manual test programs.
  /toolchain/binutils/binutils-2.25/config/
bootstrap-debug-big.mk 2 # trades space for speed: instead of recompiling programs during
  /packages/apps/TV/src/com/android/tv/data/
ProgramDataManager.java 24 import android.media.tv.TvContract.Programs;
75 // COLUMN_CHANNEL_ID, COLUMN_END_TIME_UTC_MILLIS are added to detect duplicated programs.
76 // Duplicated programs are always consecutive by the sorting order.
77 private static final String SORT_BY_TIME = Programs.COLUMN_START_TIME_UTC_MILLIS + ", "
78 + Programs.COLUMN_CHANNEL_ID + ", " + Programs.COLUMN_END_TIME_UTC_MILLIS;
152 * Set the program prefetch update wait which gives the delay to query all programs from DB
170 // to the handler. If not, another DB task can be executed before loading current programs.
175 mContentResolver.registerContentObserver(Programs.CONTENT_URI,
274 * Returns the programs for the given channel which ends after the given start time
487 ArrayList<Program> programs = programMap.get(program.getChannelId()); local
490 programMap.put(program.getChannelId(), programs); local
555 final List<Program> programs = new ArrayList<>(); local
    [all...]
  /system/extras/tests/sdcard/
Android.mk 15 # Build control file for Bionic's test programs
16 # define the BIONIC_TESTS environment variable to build the test programs
  /frameworks/native/services/inputflinger/tests/
Android.mk 39 # Build the manual test programs.
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/syncadapter/
SyncAdapter.java 88 * Inserts programs from now to {@link SyncAdapter#SYNC_WINDOW_SEC}.
95 List<ContentValues> programs = new ArrayList<>(); local
96 for (ProgramInfo program : channelInfo.programs) {
100 values.put(TvContract.Programs.COLUMN_CHANNEL_ID, ContentUris.parseId(channelUri));
101 values.put(TvContract.Programs.COLUMN_TITLE, program.title);
102 values.put(TvContract.Programs.COLUMN_SHORT_DESCRIPTION, program.description);
103 values.put(TvContract.Programs.COLUMN_CONTENT_RATING,
106 values.put(TvContract.Programs.COLUMN_POSTER_ART_URI, program.posterArtUri);
111 values.put(TvContract.Programs.COLUMN_INTERNAL_PROVIDER_DATA,
114 programs.add(values)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 39 TokenRewriteStream is a specialized form of CommonTokenStream that provides simple stream editing functionality. By creating <i>rewrite programs</i>, new text output can be created based upon the tokens in the stream. The basic token stream itself is preserved, and text output is rendered on demand using the #to_s method.
362 attr_reader :programs
367 @programs = Hash.new do |programs, name|
369 programs[ name ] = RewriteProgram.new( self, name )
370 else programs[ name.to_s ]
378 program = @programs[ program_name ]
387 return @programs[ name ]
391 @programs.delete( name )
401 @programs[ 'default' ].insert_before( *args
    [all...]
  /external/deqp/framework/opengl/
gluShaderLibrary.cpp 100 const bool isSeparable = !spec.programs.empty() && spec.programs[0].sources.separable;
102 if (spec.programs.empty())
104 print("ERROR: No programs specified!\n");
157 for (size_t progNdx = 0; progNdx < spec.programs.size(); ++progNdx)
165 const bool hasShader = !spec.programs[progNdx].sources.sources[shaderStageNdx].empty();
166 const bool isEnabled = (spec.programs[progNdx].activeStages & curStageMask) != 0;
176 print("ERROR: Stage %s enabled on multiple programs!\n", getShaderTypeName((ShaderType)shaderStageNdx));
183 else if (!spec.programs[progNdx].sources.sources[shaderStageNdx].empty())
205 const bool hasVertex = !spec.programs[0].sources.sources[SHADERTYPE_VERTEX].empty()
    [all...]
  /development/tools/checkstyle/gitlint/
utils.py 59 def programs_not_in_path(programs):
60 """Returns all the programs that are not found in the PATH."""
61 return [program for program in programs if not which(program)]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
TokenRewriteStream.js 11 * machine instruction streams (programs) operating on a single input tape. :)
57 * I'm calling these things "programs."
60 this.programs = null;
141 this.programs = {};
142 this.programs[trs.DEFAULT_PROGRAM_NAME] = [];
161 var is = this.programs[programName];
163 programs[programName] = is.slice(trs.MIN_TOKEN_INDEX, this.instructionIndex);
345 var is = this.programs[name];
354 this.programs[name] = is;
389 var rewrites = this.programs[programName]
    [all...]
  /frameworks/native/libs/input/tests/
Android.mk 39 # Build the manual test programs.
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
RichTvInputService.java 407 List<PlaybackInfo> programs = TvContractUtils.getProgramPlaybackInfo( local
409 if (!programs.isEmpty()) {
411 mHandler.obtainMessage(MSG_PLAY_PROGRAM, programs.get(0)).sendToTarget();
434 public final List<ProgramInfo> programs; field in class:RichTvInputService.ChannelInfo
438 List<ProgramInfo> programs) {
447 this.programs = programs;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 42 * machine instruction streams (programs) operating on a single input tape. :)
88 * I'm calling these things "programs."
91 protected var programs:Object = new Object();
98 programs[DEFAULT_PROGRAM_NAME] = new Array();
106 var isn:Array = programs[programName] as Array;
108 programs[programName] = isn.slice(MIN_TOKEN_INDEX,instructionIndex);
188 var isn:Array = programs[name] as Array;
197 programs[name] = isn;
222 var rewrites:Array = programs[programName] as Array;
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgFetcher.java 26 import android.media.tv.TvContract.Programs;
165 List<Program> programs = new ArrayList<>(epgReader.getPrograms(channel.getId())); local
166 Collections.sort(programs);
168 Log.d(TAG, "Fetching " + programs.size() + " programs for channel " + channel);
170 updateEpg(channel.getId(), programs); local
202 // Skip the past programs. They will be automatically removed by the system.
212 // Compare the new programs with old programs one by one and update/delete the old one
223 // Exact match. No need to update. Move on to the next programs
    [all...]
  /packages/apps/TV/src/com/android/tv/
TimeShiftManager.java 59 * {@link ProgramManager} loads programs of the current channel in the background.
1074 List<Program> programs = new ArrayList<>(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 52 * machine instruction streams (programs) operating on a single input tape. :)
178 * I'm calling these things "programs."
182 protected IDictionary<string, IList<RewriteOperation>> programs = null; field in class:Antlr.Runtime.TokenRewriteStream
192 programs = new Dictionary<string, IList<RewriteOperation>>();
193 programs[DEFAULT_PROGRAM_NAME] = new List<RewriteOperation>(PROGRAM_INIT_SIZE);
219 if (programs.TryGetValue(programName, out @is) && @is != null) {
224 programs[programName] = sublist;
350 if (!programs.TryGetValue(name, out @is) || @is == null) {
358 programs[name] = @is;
392 if (!programs.TryGetValue(programName, out rewrites)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 55 * machine instruction streams (programs) operating on a single input tape. :)
200 * I'm calling these things "programs."
204 protected IDictionary<string, IList<RewriteOperation>> programs = null; field in class:Antlr.Runtime.TokenRewriteStream
216 programs = new Dictionary<string, IList<RewriteOperation>>();
217 programs[DEFAULT_PROGRAM_NAME] = new List<RewriteOperation>( PROGRAM_INIT_SIZE );
247 if ( programs.TryGetValue( programName, out @is ) && @is != null )
253 programs[programName] = sublist;
404 if ( !programs.TryGetValue( name, out @is ) || @is == null )
414 programs[name] = @is;
455 if ( !programs.TryGetValue( programName, out rewrites )
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 42 * machine instruction streams (programs) operating on a single input tape. :)
159 * I'm calling these things "programs."
162 protected Map programs = null; field in class:TokenRewriteStream
172 programs = new HashMap();
173 programs.put(DEFAULT_PROGRAM_NAME, new ArrayList(PROGRAM_INIT_SIZE));
196 List is = (List)programs.get(programName);
198 programs.put(programName, is.subList(MIN_TOKEN_INDEX,instructionIndex));
321 List is = (List)programs.get(name);
330 programs.put(name, is);
362 List rewrites = (List)programs.get(programName)
    [all...]
  /external/harfbuzz_ng/win32/
info-msvc.mak 94 @echo library. Enables the build of utility programs.
124 @echo Note that GLib2 support is required for all utility and test programs.
129 @echo A 'tests' target is supported to build the test programs, if GLib2 support
132 @echo An 'install' target is supported to copy the build (DLLs, utility programs,
  /external/libexif/
libexif.spec 17 utilities and programs with GUIs.
  /external/lz4/
Makefile 42 PRGDIR = programs
106 @install -dD -m 700 lz4-$(RELEASE)/programs/

Completed in 698 milliseconds

1 2 3 4 5 6 7 8 91011>>