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

123456

/external/expat/conftools/
H A DPrintPath38 * ) programs="$programs $args" ;;
46 # First of all, all OS/2 programs have the '.exe' extension.
91 for program in $programs
/external/deqp/modules/glshared/
H A DglsShaderConstExprTests.cpp163 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);
H A DglsShaderLibraryCase.cpp836 if (spec.programs[0].sources.separable)
841 for (int programNdx = 0; programNdx < (int)spec.programs.size(); ++programNdx)
842 if (spec.programs[programNdx].activeStages & tessellationBits)
847 return !spec.programs[0].sources.sources[glu::SHADERTYPE_TESSELLATION_CONTROL].empty() ||
848 !spec.programs[0].sources.sources[glu::SHADERTYPE_TESSELLATION_EVALUATION].empty();
929 const bool separablePrograms = m_spec.programs[0].sources.separable;
935 vector<ProgramSources> specializedSources (m_spec.programs.size());
939 vector<SharedPtr<ShaderProgram> > programs;
947 const vector<RequiredExtension> reqExt = checkAndSpecializeExtensions(m_spec.programs[0].requiredExtensions, m_contextInfo);
949 DE_ASSERT(m_spec.programs
[all...]
/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/deqp/external/vulkancts/modules/vulkan/
H A DvktBuildPrograms.cpp21 * \brief Utility for pre-compiling source programs to SPIR-V
387 de::PoolArray<Program> programs (&programPool);
434 programs.pushBack(Program(vk::ProgramIdentifier(casePath, progIter.getName()), progIter.getProgram().buildOptions.targetVersion));
435 buildGlslTasks.pushBack(BuildHighLevelShaderTask<vk::GlslSource>(progIter.getProgram(), &programs.back()));
447 programs.pushBack(Program(vk::ProgramIdentifier(casePath, progIter.getName()), progIter.getProgram().buildOptions.targetVersion));
448 buildHlslTasks.pushBack(BuildHighLevelShaderTask<vk::HlslSource>(progIter.getProgram(), &programs.back()));
460 programs.pushBack(Program(vk::ProgramIdentifier(casePath, progIter.getName()), progIter.getProgram().buildOptions.targetVersion));
461 buildSpirvAsmTasks.pushBack(BuildSpirVAsmTask(progIter.getProgram(), &programs.back()));
478 validationTasks.reserve(programs.size());
480 for (de::PoolArray<Program>::iterator progIter = programs
[all...]
/external/deqp/framework/opengl/
H A DgluShaderLibrary.cpp100 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[
[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/deqp/external/openglcts/modules/common/
H A DglcSeparableProgramsTransformFeedbackTests.cpp201 /* Create separate programs - start from vertex stage to catch varying names */
202 std::vector<Utils::program> programs(STAGES_COUNT, Utils::program(m_context));
214 programs[stageIndex].build(0, code[0], code[1], code[2], code[3], code[4], stageData->tfVaryings,
229 if (!programs[stageIndex].m_program_object_id)
231 gl.useProgramStages(pipelineId, StageTokens[stageIndex], programs[stageIndex].m_program_object_id);
/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/flatbuffers/docs/source/
H A DREADME_TO_GENERATE_DOCS.md4 will first need to install two programs.
/external/libexif/
H A Dlibexif.spec17 utilities and programs with GUIs.
/external/valgrind/
H A Dvalgrind.spec18 memory management and threading bugs, and profile your programs in detail. You
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureFilteringAnisotropyTests.cpp168 std::vector<util::Program> programs; local
169 programs.push_back(util::PROGRAM_2D_FLOAT);
170 initializePrograms(programCollection,glu::PRECISION_HIGHP, programs);
H A DvktTextureTestUtil.hpp116 void initializePrograms(vk::SourceCollections& programCollection, glu::Precision texCoordPrecision, const std::vector<Program>& programs);
275 initializePrograms(programCollection, m_testsParameters.texCoordPrecision, m_testsParameters.programs);
296 std::vector<util::Program> programs; member in struct:vkt::texture::util::TextureCommonTestCaseParameters
/external/libvpx/libvpx/test/
H A Dtools_common.sh296 --show-program-output: Shows output from all programs being tested.
298 programs. Grants the ability, for example, to run test programs
/external/mesa3d/docs/specs/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.
/external/lz4/examples/
H A DMakefile26 # example programs, using (mostly) LZ4 streaming library,
36 LZ4 = ../programs/lz4
/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/curl/packages/vms/
H A Dcurl_startup.com5 $! Procedure to setup the CURL libraries for use by programs from the

Completed in 704 milliseconds

123456