Searched refs:specification (Results 1 - 25 of 73) sorted by relevance

123

/external/chromium_org/tools/gyp/pylib/gyp/
H A DMSVSProject.py93 """Returns the specification for a configuration.
111 specification = [config_type, node_attrs]
117 specification.append(t._GetSpecification())
119 specification.append(Tool(t)._GetSpecification())
120 return specification
H A Deasy_xml.py57 def _ConstructContentList(xml_parts, specification, pretty, level=0):
58 """ Appends the XML parts corresponding to the specification.
62 specification: The specification of the element. See EasyXml docs.
66 # The first item in a specification is the name of the element.
73 name = specification[0]
75 raise Exception('The first item of an EasyXml specification should be '
76 'a string. Specification was ' + str(specification))
80 rest = specification[1:]
/external/libvorbis/doc/
H A Dfooter.tex18 distribute the Ogg and Vorbis specification, whether in a private,
21 specification and certify specification compliance.
H A D09-helper.tex9 specification. Rather than cluttering up the main specification
/external/deqp/modules/glshared/
H A DglsShaderLibraryCase.cpp324 ShaderCase::ShaderCase (tcu::TestContext& testCtx, RenderContext& renderCtx, const glu::ContextInfo& contextInfo, const char* name, const char* description, const ShaderCaseSpecification& specification)
328 , m_caseType (specification.caseType)
329 , m_expectResult (specification.expectResult)
330 , m_targetVersion (specification.targetVersion)
332 , m_valueBlocks (specification.valueBlocks)
337 DE_ASSERT(specification.vertexSources.size() == 1);
338 DE_ASSERT(specification.fragmentSources.empty());
339 DE_ASSERT(specification.tessCtrlSources.empty());
340 DE_ASSERT(specification.tessEvalSources.empty());
341 DE_ASSERT(specification
[all...]
H A DglsShaderLibraryCase.hpp181 const ShaderCaseSpecification& specification);
187 const PipelineCaseSpecification& specification);
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_pixmap_colormap.spec40 which allows specification of a colormap.
90 8 June 2000 - initial specification
H A DMESA_agp_offset.spec38 no real specification exists. See GL_NV_vertex_array_range for more
H A DMESA_window_pos.spec124 * Revision 1.0 - Initial specification
H A DMESA_resize_buffers.spec81 * Revision 1.0 - Initial specification
H A DMESA_set_3dfx_mode.spec85 8 June 2000 - initial specification
H A DMESA_texture_signed_rgba.spec35 Written based on the wording of the OpenGL 2.0 specification.
127 The specification language for this extension is silent
128 about clamping behavior leaving this to the core specification
130 to the core specification and other extensions.
H A DMESA_shader_debug.spec35 The extension is written against the OpenGL 1.5 specification.
H A DWL_bind_wayland_display.spec29 wording of the EGL 1.4 specification.
/external/mesa3d/docs/
H A DMESA_pixmap_colormap.spec40 which allows specification of a colormap.
90 8 June 2000 - initial specification
H A DMESA_agp_offset.spec38 no real specification exists. See GL_NV_vertex_array_range for more
H A DMESA_window_pos.spec124 * Revision 1.0 - Initial specification
H A DMESA_resize_buffers.spec81 * Revision 1.0 - Initial specification
H A DMESA_set_3dfx_mode.spec85 8 June 2000 - initial specification
H A DMESA_texture_signed_rgba.spec35 Written based on the wording of the OpenGL 2.0 specification.
127 The specification language for this extension is silent
128 about clamping behavior leaving this to the core specification
130 to the core specification and other extensions.
H A DMESA_shader_debug.spec35 The extension is written against the OpenGL 1.5 specification.
H A DWL_bind_wayland_display.spec29 wording of the EGL 1.4 specification.
/external/clang/test/SemaCXX/
H A Dcxx0x-defaulted-functions.cpp62 // DR1330: The exception-specification of an implicitly-declared special
107 // Don't instantiate the exception specification here.
112 // Any odr-use causes the exception specification to be evaluated.
114 expected-note {{instantiation of exception specification for 'Error'}} \
115 expected-note {{instantiation of exception specification for '~Error'}}
/external/flac/libFLAC/
H A Dstream_encoder.c1537 FLAC_API FLAC__bool FLAC__stream_encoder_set_apodization(FLAC__StreamEncoder *encoder, const char *specification) argument
1542 FLAC__ASSERT(0 != specification);
1546 (void)specification; /* silently ignore since we haven't integerized; will always use a rectangular window */
1550 const char *s = strchr(specification, ';');
1551 const size_t n = s? (size_t)(s - specification) : strlen(specification);
1552 if (n==8 && 0 == strncmp("bartlett" , specification, n))
1554 else if(n==13 && 0 == strncmp("bartlett_hann", specification, n))
1556 else if(n==8 && 0 == strncmp("blackman" , specification, n))
1558 else if(n==26 && 0 == strncmp("blackman_harris_4term_92db", specification,
[all...]
/external/flac/include/FLAC/
H A Dstream_encoder.h207 * for the specification of metadata blocks and their lengths.
914 * The \a specification is a plain ASCII string which specifies exactly
935 * to 32 functions are kept, the rest are dropped. If the specification
947 * \param specification See above.
950 * \code specification != NULL \endcode
954 FLAC_API FLAC__bool FLAC__stream_encoder_set_apodization(FLAC__StreamEncoder *encoder, const char *specification);

Completed in 3596 milliseconds

123