/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...] |
/prebuilts/go/darwin-x86/src/cmd/pprof/ |
doc.go | 5 // Pprof interprets and displays profiles of Go programs. 11 // For more information, see https://blog.golang.org/profiling-go-programs.
|
/prebuilts/go/linux-x86/src/cmd/pprof/ |
doc.go | 5 // Pprof interprets and displays profiles of Go programs. 11 // For more information, see https://blog.golang.org/profiling-go-programs.
|
/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.
|
/prebuilts/go/darwin-x86/src/internal/testenv/ |
testenv.go | 28 // HasGoBuild reports whether the current system can build programs with ``go build'' 42 // MustHaveGoBuild checks that the current system can build programs with ``go build'' 51 // HasGoRun reports whether the current system can run programs with ``go run.'' 57 // MustHaveGoRun checks that the current system can run programs with ``go run.''
|
/prebuilts/go/linux-x86/src/internal/testenv/ |
testenv.go | 28 // HasGoBuild reports whether the current system can build programs with ``go build'' 42 // MustHaveGoBuild checks that the current system can build programs with ``go build'' 51 // HasGoRun reports whether the current system can run programs with ``go run.'' 57 // MustHaveGoRun checks that the current system can run programs with ``go run.''
|
/prebuilts/go/darwin-x86/src/cmd/fix/ |
doc.go | 6 Fix finds Go programs that use old APIs and rewrites them to use 8 the necessary changes to your programs.
|
/prebuilts/go/linux-x86/src/cmd/fix/ |
doc.go | 6 Fix finds Go programs that use old APIs and rewrites them to use 8 the necessary changes to your 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...] |