Searched refs:programs (Results 1 - 25 of 142) sorted by relevance

123456

/external/lldb/test/
H A DMakefile4 .PHONY: programs
9 # Make all of the test programs
11 programs:
19 # Clean all of the test programs
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js11 * 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[programNam
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb39 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[ 'defaul
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs52 * 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
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmsndlib.c1611 const S_PROGRAM programs[] = variable
1655 programs,
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as42 * 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;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs55 * 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
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java42 * 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
[all...]
/external/libexif/
H A Dlibexif.spec17 utilities and programs with GUIs.
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dtools_common.sh291 --show-program-output: Shows output from all programs being tested.
293 programs. Grants the ability, for example, to run test programs
/external/chromium_org/third_party/mesa/src/docs/OLD/
H A DMESA_program_debug.spec36 vertex and fragment programs.
85 programs I don't see another way to do it.
245 vertex and/or fragment programs defined by those extensions may
313 vertex programs.
H A DMESA_trace.spec36 linked for standalone test programs. The set of calls and the
/external/mesa3d/docs/OLD/
H A DMESA_program_debug.spec36 vertex and fragment programs.
85 programs I don't see another way to do it.
245 vertex and/or fragment programs defined by those extensions may
313 vertex programs.
H A DMESA_trace.spec36 linked for standalone test programs. The set of calls and the
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTokenRewriteStream.h105 * I'm calling these things "programs."
108 ANTLRHashMap *programs; variable
114 @property (retain, getter=getPrograms, setter=setPrograms:) ANTLRHashMap *programs; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTokenRewriteStream.h105 * I'm calling these things "programs."
108 ANTLRHashMap *programs; variable
114 @property (retain, getter=getPrograms, setter=setPrograms:) ANTLRHashMap *programs; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTokenRewriteStream.h105 * I'm calling these things "programs."
108 ANTLRHashMap *programs; variable
114 @property (retain, getter=getPrograms, setter=setPrograms:) ANTLRHashMap *programs; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTokenRewriteStream.h105 * I'm calling these things "programs."
108 ANTLRHashMap *programs; variable
114 @property (retain, getter=getPrograms, setter=setPrograms:) ANTLRHashMap *programs; variable
/external/chromium_org/third_party/re2/doc/
H A Dmksyntaxgo26 parse trees into programs. Most clients of regular expressions will use the
/external/chromium_org/third_party/tcmalloc/vendor/packages/rpm/
H A Drpm.spec21 performance of C++ programs. This includes an optimized thread-caching
/external/libpng/contrib/gregbook/
H A Dmakevms.com2 $! make "PNG: The Definitive Guide" demo programs (for X) under OpenVMS
66 $ write sys$output "Compiling PNG book programs ..."
/external/libpng/contrib/pngminus/
H A Dmakevms.com2 $! make Contrib programs of libpng under OpenVMS
38 $ write sys$output "Compiling PNG contrib programs ..."
/external/regex-re2/doc/
H A Dmksyntaxgo26 parse trees into programs. Most clients of regular expressions will use the
/external/deqp/modules/glshared/
H A DglsShaderLibraryCase.cpp383 for (int pipelineProgramNdx = 0; pipelineProgramNdx < (int)specification.programs.size(); ++pipelineProgramNdx)
386 DE_ASSERT(((specification.programs[pipelineProgramNdx].activeStageBits & (1 << glu::SHADERTYPE_VERTEX)) == 0) || !specification.programs[pipelineProgramNdx].vertexSources.empty());
387 DE_ASSERT(((specification.programs[pipelineProgramNdx].activeStageBits & (1 << glu::SHADERTYPE_FRAGMENT)) == 0) || !specification.programs[pipelineProgramNdx].fragmentSources.empty());
388 DE_ASSERT(((specification.programs[pipelineProgramNdx].activeStageBits & (1 << glu::SHADERTYPE_TESSELLATION_CONTROL)) == 0) || !specification.programs[pipelineProgramNdx].tessCtrlSources.empty());
389 DE_ASSERT(((specification.programs[pipelineProgramNdx].activeStageBits & (1 << glu::SHADERTYPE_TESSELLATION_EVALUATION)) == 0) || !specification.programs[pipelineProgramNdx].tessEvalSources.empty());
390 DE_ASSERT(((specification.programs[pipelineProgramNd
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py1036 machine instruction streams (programs) operating on a single input tape. :)
1085 # I'm calling these things "programs."
1087 self.programs = {}
1088 self.programs[self.DEFAULT_PROGRAM_NAME] = []
1110 p = self.programs.get(programName, None)
1112 self.programs[programName] = (
1222 p = self.programs.get(name, None)
1231 self.programs[name] = p
1290 rewrites = self.programs.get(programName)

Completed in 664 milliseconds

123456