Searched defs:decl (Results 1 - 25 of 144) sorted by relevance

123456

/external/lldb/source/Symbol/
H A DVerifyDecl.cpp13 void lldb_private::VerifyDecl (clang::Decl *decl) argument
15 decl->getAccess();
/external/elfutils/0.153/libdw/
H A Ddwarf_decl_column.c60 dwarf_decl_column (Dwarf_Die *decl, int *colp) argument
62 return __libdw_attr_intval (decl, colp, DW_AT_decl_column);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DAttribute.java36 public String decl; field in class:Attribute
47 public Attribute(String decl) { argument
48 extractAttribute(decl);
51 public Attribute(String name, String decl) { argument
53 this.decl = decl;
62 * Set name, type, initvalue, and full decl instance vars.
64 protected void extractAttribute(String decl) { argument
65 if ( decl==null ) {
70 int rightEdgeOfDeclarator = decl
[all...]
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/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_vdecl.c49 SVGA3dVertexDecl decl; local
107 decl.identity.type = svga->state.sw.ve_format[i];
108 decl.identity.method = SVGA3D_DECLMETHOD_DEFAULT;
109 decl.identity.usage = usage;
110 decl.identity.usageIndex = index;
111 decl.array.stride = vb->stride;
116 decl.array.offset = (vb->buffer_offset
121 assert(decl.array.offset >= 0);
125 &decl,
149 "hw vertex decl stat
[all...]
H A Dsvga_draw.c118 const SVGA3dVertexDecl *decl,
125 hwtnl->cmd.vdecl[i] = *decl;
116 svga_hwtnl_vdecl( struct svga_hwtnl *hwtnl, unsigned i, const SVGA3dVertexDecl *decl, struct pipe_resource *vb) argument
/external/javassist/src/main/javassist/expr/
H A DConstructorCall.java35 protected ConstructorCall(int pos, CodeIterator i, CtClass decl, MethodInfo m) { argument
36 super(pos, i, decl, m);
/external/libsepol/tests/
H A Dtest-linker-roles.c33 * - role in appropriate symtab (global and decl)
34 * - datum in the decl symtab has correct type_set
35 * - scope datum has correct decl ids
72 avrule_decl_t *decl; local
80 /**** test for g_b_role_1 in base and decl 1 (global) ****/
89 /**** test for o1_b_role_1 in optional (decl 2) ****/
90 decl = test_find_decl_by_sym(base, SYM_TYPES, "tag_o1_b");
91 decls[0] = decl->decl_id;
95 role = test_role_type_set(base, "o1_b_role_1", decl, types, 1, 0);
103 avrule_decl_t *decl; local
[all...]
H A Dtest-deps.c143 avrule_decl_t *decl; local
173 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type);
174 CU_ASSERT_FATAL(decl != NULL);
176 CU_ASSERT(decl->enabled == 1);
225 avrule_decl_t *decl; local
252 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type);
253 CU_ASSERT_FATAL(decl != NULL);
256 CU_ASSERT(decl->enabled == 1);
258 CU_ASSERT(decl->enabled == 0);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.cpp26 const lldb_private::Declaration &decl,
41 if (pos->m_declaration == decl)
21 Find( SymbolFileDWARF *symfile, const DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry ) const argument
H A DUniqueDWARFASTType.h47 const lldb_private::Declaration &decl,
53 m_declaration (decl),
123 const lldb_private::Declaration &decl,
156 const lldb_private::Declaration &decl,
164 return pos->second.Find (symfile, cu, die, decl, byte_size, entry);
43 UniqueDWARFASTType(lldb::TypeSP &type_sp, SymbolFileDWARF *symfile, DWARFCompileUnit *cu, DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, int32_t byte_size) argument
152 Find(const lldb_private::ConstString &name, SymbolFileDWARF *symfile, const DWARFCompileUnit *cu, const DWARFDebugInfoEntry *die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry) const argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_vdecl.c49 SVGA3dVertexDecl decl; local
107 decl.identity.type = svga->state.sw.ve_format[i];
108 decl.identity.method = SVGA3D_DECLMETHOD_DEFAULT;
109 decl.identity.usage = usage;
110 decl.identity.usageIndex = index;
111 decl.array.stride = vb->stride;
116 decl.array.offset = (vb->buffer_offset
121 assert(decl.array.offset >= 0);
125 &decl,
149 "hw vertex decl stat
[all...]
/external/clang/test/CodeGen/
H A D2005-09-24-BitFieldCrash.c29 void foo (union tree_node * decl) { argument
30 decl->function_decl.built_in_class != 0;
/external/deqp/framework/opengl/simplereference/
H A DsglrShaderProgram.cpp133 ShaderProgram::ShaderProgram (const pdec::ShaderProgramDeclaration& decl) argument
134 : rr::VertexShader (decl.getVertexInputCount(), decl.getVertexOutputCount())
135 , rr::GeometryShader (decl.getGeometryInputCount(),
136 decl.getGeometryOutputCount(),
137 decl.m_geometryDecl.inputType,
138 decl.m_geometryDecl.outputType,
139 decl.m_geometryDecl.numOutputVertices,
140 decl.m_geometryDecl.numInvocations)
141 , rr::FragmentShader (decl
[all...]
/external/lldb/source/Expression/
H A DASTDumper.cpp18 ASTDumper::ASTDumper (clang::Decl *decl) argument
20 clang::DeclContext *decl_ctx = llvm::dyn_cast<clang::DeclContext>(decl);
34 decl->print (os);
52 if (clang::Decl *decl = llvm::dyn_cast<clang::Decl>(decl_ctx))
55 decl->print (os);
H A DASTStructExtractor.cpp157 Decl *decl = *decl_iterator; local
159 ExtractFromTopLevelDecl(decl);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.c105 struct tgsi_full_declaration *decl = &ctx->FullToken.FullDeclaration; local
107 memset(decl, 0, sizeof *decl);
108 copy_token(&decl->Declaration, &token);
110 next_token( ctx, &decl->Range );
112 if (decl->Declaration.Dimension) {
113 next_token(ctx, &decl->Dim);
116 if( decl->Declaration.Interpolate ) {
117 next_token( ctx, &decl->Interp );
120 if( decl
[all...]
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/libsepol/src/
H A Davrule_block.c55 avrule_decl_t *decl; local
57 if ((decl = calloc(1, sizeof(*decl))) == NULL) {
60 decl->decl_id = decl_id;
62 if (symtab_init(&decl->symtab[i], symtab_sizes[i])) {
63 avrule_decl_destroy(decl);
69 ebitmap_init(&decl->required.scope[i]);
70 ebitmap_init(&decl->declared.scope[i]);
72 return decl;
112 avrule_decl_t *decl; local
136 get_decl_cond_list(policydb_t * p, avrule_decl_t * decl, cond_list_t * cond) argument
165 avrule_decl_t *decl = local
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.c105 struct tgsi_full_declaration *decl = &ctx->FullToken.FullDeclaration; local
107 memset(decl, 0, sizeof *decl);
108 copy_token(&decl->Declaration, &token);
110 next_token( ctx, &decl->Range );
112 if (decl->Declaration.Dimension) {
113 next_token(ctx, &decl->Dim);
116 if( decl->Declaration.Interpolate ) {
117 next_token( ctx, &decl->Interp );
120 if( decl
[all...]
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/tagsoup/src/org/ccil/cowan/tagsoup/
H A DScanHandler.java52 public void decl(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_vs_draw.c65 /* Used to shift output decl. indices when inserting new ones. */
80 struct tgsi_full_declaration decl; local
82 decl = tgsi_default_full_declaration();
83 decl.Declaration.File = TGSI_FILE_TEMPORARY;
84 decl.Range.First = decl.Range.Last = reg;
85 ctx->emit_declaration(ctx, &decl);
93 struct tgsi_full_declaration decl; local
95 decl = tgsi_default_full_declaration();
96 decl
145 transform_decl(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *decl) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dgen7_sol_state.c131 uint16_t decl = 0; local
146 decl |= buffer << SO_DECL_OUTPUT_BUFFER_SLOT_SHIFT;
147 decl |= vue_map->vert_result_to_slot[vert_result] <<
149 decl |= component_mask << SO_DECL_COMPONENT_MASK_SHIFT;
158 so_decl[i] = decl;
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_vs_draw.c65 /* Used to shift output decl. indices when inserting new ones. */
80 struct tgsi_full_declaration decl; local
82 decl = tgsi_default_full_declaration();
83 decl.Declaration.File = TGSI_FILE_TEMPORARY;
84 decl.Range.First = decl.Range.Last = reg;
85 ctx->emit_declaration(ctx, &decl);
93 struct tgsi_full_declaration decl; local
95 decl = tgsi_default_full_declaration();
96 decl
145 transform_decl(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *decl) argument
[all...]

Completed in 666 milliseconds

123456