Searched defs:programs (Results 1 - 19 of 19) sorted by relevance

/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/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
H A DvktTextureTestUtil.cpp149 void initializePrograms(vk::SourceCollections& programCollection, glu::Precision texCoordPrecision, const std::vector<Program>& programs) argument
184 for (std::vector<Program>::const_iterator programIt = programs.begin(); programIt != programs.end(); ++programIt)
/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/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/deqp/framework/opengl/
H A DgluShaderLibrary.hpp147 std::vector<ProgramSpecification> programs; member in struct:glu::sl::ShaderCaseSpecification
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp487 vector<ShaderProgramObjectContainer*> programs; local
488 m_programs.getAll(programs);
489 for (vector<ShaderProgramObjectContainer*>::iterator i = programs.begin(); i != programs.end(); i++)
/external/deqp/framework/platform/null/
H A DtcuNullRenderContext.cpp107 ObjectManager programs; member in class:tcu::null::Context
503 return (GLuint)ctx->programs.allocate();
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/
H A DesextcTessellationShaderTCTE.cpp2507 const glw::GLuint* programs = DE_NULL; local
2517 programs = programs_for_program_iteration;
2522 programs = programs_for_pipeline_iteration;
2660 glw::GLuint program = programs[n_program];
2671 glw::GLuint program = programs[n_program];
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cShaderSubroutineTests.cpp7031 /* Initialize all shader programs */
8447 /* Iterate over both pipelines/programs and verify that calling glUseProgram() /
8555 * locations may be different between the two programs.
8575 * locations may be different between the two programs.
8595 * locations may be different between the two programs.
8615 * locations may be different between the two programs.
8635 * locations may be different between the two programs.
9989 /* Test separable programs */
9992 /* Prepare programs */
10302 * @param programs A
10305 prepareProgram(Utils::program** programs, bool is_separable) argument
10390 prepareProgramPipeline(glw::GLuint& out_pipeline_id, Utils::program** programs) argument
10494 testProgram(Utils::program** programs, bool is_separable, const glw::GLuint test_cases[][5], glw::GLuint n_test_cases) argument
[all...]
H A Dgl4cGPUShaderFP64Tests.cpp4653 /* Clean programs */
6433 const glw::GLuint programs[] = { m_po_cs_id, m_po_noncs_id }; local
6434 const unsigned int n_programs = sizeof(programs) / sizeof(programs[0]);
6439 glw::GLuint po_id = programs[n_program];
6472 glw::GLuint po_id = programs[n_program];
6630 /* Iterate through all programs */
6636 const glw::GLuint programs[] = { m_po_cs_id, m_po_noncs_id }; local
6637 const unsigned int n_programs = sizeof(programs) / sizeof(programs[
6771 const glw::GLuint programs[] = { m_po_cs_id, m_po_noncs_id }; local
6961 const glw::GLuint programs[] = { local
[all...]
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
H A DesextcTextureCubeMapArraySampling.cpp3219 m_testCtx.getLog() << tcu::TestLog::Message << "Invalid programs: " << invalid_programs
3238 m_testCtx.getLog() << tcu::TestLog::Message << "Total programs: " << linked_programs << tcu::TestLog::EndMessage;
3666 * @param program_collection Collection of programs
3693 const programCollectionForFunction* programs = 0; local
3698 programs = program_collection.getPrograms(function->m_function);
3699 program = programs->getProgram(shader->m_type);
4245 /** Get collection of programs for sampling function
4249 * @return Collection of programs for given sampling function
/external/guice/extensions/persist/lib/
H A Dantlr-2.7.5h3.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement.java package antlr ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 980 milliseconds