Searched refs:decl (Results 101 - 125 of 336) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c393 struct tgsi_full_declaration *decl )
407 file = decl->Declaration.File;
410 for (i = decl->Range.First; i <= decl->Range.Last; i++) {
423 if (decl->Declaration.Dimension) {
424 fill_scan_register2d(reg, file, i, decl->Dim.Index2D);
H A Dtgsi_transform.c56 const struct tgsi_full_declaration *decl)
60 ti += tgsi_build_full_declaration(decl,
55 emit_declaration(struct tgsi_transform_context *ctx, const struct tgsi_full_declaration *decl) argument
/external/deqp/modules/gles31/functional/
H A Des31fFboTestUtil.cpp118 sglr::pdec::ShaderProgramDeclaration decl; local
120 decl << sglr::pdec::VertexAttribute("a_position", rr::GENERICVECTYPE_FLOAT);
121 decl << sglr::pdec::VertexAttribute("a_coord", rr::GENERICVECTYPE_FLOAT);
122 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT);
123 decl << sglr::pdec::FragmentOutput(mapDataTypeToGenericVecType(outputType));
125 decl << sglr::pdec::VertexSource(
135 decl << sglr::pdec::FragmentSource(genTexFragmentShader(samplerTypes.vec, outputType));
137 decl << sglr::pdec::Uniform("u_outScale0", glu::TYPE_FLOAT_VEC4);
138 decl << sglr::pdec::Uniform("u_outBias0", glu::TYPE_FLOAT_VEC4);
142 decl << sgl
[all...]
H A Des31fProgramInterfaceDefinitionUtil.hpp48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; } argument
/external/lldb/source/Symbol/
H A DClangASTContext.cpp1103 ClangASTContext::GetTypeForDecl (TagDecl *decl) argument
1106 // if it isn't created yet, because we can't have created a decl in this
1110 return ClangASTType (ast, ast->getTagDeclType(decl).getAsOpaquePtr());
1115 ClangASTContext::GetTypeForDecl (ObjCInterfaceDecl *decl) argument
1118 // if it isn't created yet, because we can't have created a decl in this
1122 return ClangASTType (ast, ast->getObjCInterfaceType(decl).getAsOpaquePtr());
1155 CXXRecordDecl *decl = CXXRecordDecl::Create (*ast, local
1162 if (decl)
1165 SetMetadata(ast, decl, *metadata);
1168 decl
1746 ObjCInterfaceDecl *decl = ObjCInterfaceDecl::Create (*ast, local
2048 CreateEnumerationType( const char *name, DeclContext *decl_ctx, const Declaration &decl, const ClangASTType &integer_clang_type ) argument
2148 GetCompleteDecl(clang::ASTContext *ast, clang::Decl *decl) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DAttributeScope.java137 public void addAttribute(String name, String decl) { argument
138 attributes.put(name, new Attribute(name,decl));
/external/chromium_org/third_party/cython/src/Cython/
H A DCodeWriter.py162 def visit_container_node(self, node, decl, extras, attributes):
164 self.startline(decl)
183 decl = u'ctypedef '
185 decl = u'cdef '
187 decl += u'public '
189 decl += u'packed '
190 decl += node.kind
191 self.visit_container_node(node, decl, None, node.attributes)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_transform.c56 const struct tgsi_full_declaration *decl)
60 ti += tgsi_build_full_declaration(decl,
55 emit_declaration(struct tgsi_transform_context *ctx, const struct tgsi_full_declaration *decl) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_program.c130 *(p->decl++) = (D0_DCL | D0_DEST(reg) | d0_flags);
131 *(p->decl++) = D1_MBZ;
132 *(p->decl++) = D2_MBZ;
133 assert(p->decl <= p->declarations + ARRAY_SIZE(p->declarations));
480 p->decl = p->declarations;
489 *(p->decl++) = _3DSTATE_PIXEL_SHADER_PROGRAM;
497 GLuint decl_size = p->decl - p->declarations;
542 GLuint decl_size = p->decl - p->declarations;
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DRecordInfo.h145 RecordInfo* Lookup(clang::DeclContext* decl) { argument
146 return Lookup(clang::dyn_cast<clang::CXXRecordDecl>(decl));
/external/javassist/src/main/javassist/
H A DCtMember.java49 Cache(CtClassType decl) { argument
50 super(decl);
/external/lldb/source/Expression/
H A DASTStructExtractor.cpp157 Decl *decl = *decl_iterator; local
159 ExtractFromTopLevelDecl(decl);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_program.c130 *(p->decl++) = (D0_DCL | D0_DEST(reg) | d0_flags);
131 *(p->decl++) = D1_MBZ;
132 *(p->decl++) = D2_MBZ;
133 assert(p->decl <= p->declarations + ARRAY_SIZE(p->declarations));
480 p->decl = p->declarations;
489 *(p->decl++) = _3DSTATE_PIXEL_SHADER_PROGRAM;
497 GLuint decl_size = p->decl - p->declarations;
542 GLuint decl_size = p->decl - p->declarations;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangParser.h144 - (LangParser_decl_return *)decl;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DPropertySetCSSStyleDeclaration.cpp44 StyleAttributeMutationScope(AbstractPropertySetCSSStyleDeclaration* decl) argument
46 InspectorInstrumentation::willMutateStyle(decl);
50 ASSERT(s_currentDecl == decl);
55 s_currentDecl = decl;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc_emit.c99 if (p->decl< p->declarations + I915_PROGRAM_SIZE) {
100 *(p->decl++) = (D0_DCL | D0_DEST(reg) | d0_flags);
101 *(p->decl++) = D1_MBZ;
102 *(p->decl++) = D2_MBZ;
/external/lldb/include/lldb/Symbol/
H A DVariable.h36 Declaration* decl,
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_emit.c99 if (p->decl< p->declarations + I915_PROGRAM_SIZE) {
100 *(p->decl++) = (D0_DCL | D0_DEST(reg) | d0_flags);
101 *(p->decl++) = D1_MBZ;
102 *(p->decl++) = D2_MBZ;
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DScalarizeVecAndMatConstructorArgs.cpp269 TIntermAggregate *decl = new TIntermAggregate(EOpDeclaration); local
270 decl->getSequence()->push_back(init);
274 sequence.push_back(decl);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.h323 const struct tgsi_full_declaration *decl);
408 const struct tgsi_full_declaration *decl);
487 const struct tgsi_full_declaration *decl);
/external/chromium_org/tools/clang/plugins/
H A DChromeClassTester.cpp232 const NamespaceDecl* decl = dyn_cast<NamespaceDecl>(context); local
235 if (decl->isAnonymousNamespace())
238 OS << *decl; local
H A DFindBadConstructsConsumer.cpp395 if (TemplateDecl* decl = name.getAsTemplateDecl()) {
396 std::string base_name = decl->getNameAsString();
485 if (TemplateDecl* decl = name.getAsTemplateDecl()) {
486 std::string base_name = decl->getNameAsString();
490 self->GetNamespace(decl) == "base") {
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi.h323 const struct tgsi_full_declaration *decl);
408 const struct tgsi_full_declaration *decl);
487 const struct tgsi_full_declaration *decl);
/external/openssl/crypto/aes/asm/
H A Daesni-x86.S19 decl %ecx
43 decl %ecx
65 decl %ecx
96 decl %ecx
128 decl %ecx
164 decl %ecx
198 decl %ecx
211 decl %ecx
255 decl %ecx
268 decl
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/x86-64/
H A Dxform4.S102 decl %ecx
281 decl %ecx
349 decl %ecx
405 decl %ecx
472 decl %ecx

Completed in 3599 milliseconds

1234567891011>>