Searched refs:decl (Results 1 - 25 of 316) sorted by relevance

1234567891011>>

/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...]
/external/elfutils/libdw/
H A Ddwarf_decl_column.c39 dwarf_decl_column (Dwarf_Die *decl, int *colp) argument
41 return __libdw_attr_intval (decl, colp, DW_AT_decl_column);
/external/skia/src/sksl/ast/
H A DSkSLASTVarDeclarationStatement.h20 ASTVarDeclarationStatement(std::unique_ptr<ASTVarDeclarations> decl) argument
21 : INHERITED(decl->fPosition, kVarDeclaration_Kind)
22 , fDeclarations(std::move(decl)) {}
/external/skia/src/sksl/ir/
H A DSkSLVarDeclarationsStatement.h20 VarDeclarationsStatement(std::unique_ptr<VarDeclarations> decl) argument
21 : INHERITED(decl->fPosition, kVarDeclarations_Kind)
22 , fDeclaration(std::move(decl)) {}
/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/selinux/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;
114 avrule_decl_t *decl; local
138 get_decl_cond_list(policydb_t * p, avrule_decl_t * decl, cond_list_t * cond) argument
167 avrule_decl_t *decl = local
[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/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCompiler.h114 // LLVM_ATTRIBUTE_DEPRECATED(decl, "message")
116 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
117 decl __attribute__((deprecated(message)))
119 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
120 decl __attribute__((deprecated))
122 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
123 __declspec(deprecated(message)) decl
125 # define LLVM_ATTRIBUTE_DEPRECATED(decl, message) \
126 decl
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXAsmPrinter.cpp298 std::string decl; local
302 decl += ".extern ";
305 decl += ".";
306 decl += getStateSpaceName(gv->getType()->getAddressSpace());
307 decl += " ";
312 decl += ".align ";
313 decl += utostr(gv->getAlignment());
314 decl += " ";
322 decl += ".b8 ";
323 decl
412 std::string decl = isKernel ? ".entry" : ".func"; local
[all...]
/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...]
/external/deqp/framework/opengl/
H A DgluVarType.cpp327 std::ostream& operator<< (std::ostream& str, const VariableDeclaration& decl) argument
329 if (decl.layout != Layout())
330 str << decl.layout << " ";
333 if (decl.memoryAccessQualifierBits & (1 << bitNdx))
336 if (decl.interpolation != INTERPOLATION_LAST)
337 str << getInterpolationName(decl.interpolation) << " ";
339 if (decl.storage != STORAGE_LAST)
340 str << getStorageName(decl.storage) << " ";
342 str << declare(decl.varType, decl
347 namespace decl namespace in namespace:glu
357 operator <<(std::ostream& str, const DeclareVariable& decl) argument
403 operator <<(std::ostream& str, const DeclareStructTypePtr& decl) argument
424 operator <<(std::ostream& str, const DeclareStructType& decl) argument
[all...]
H A DgluVarType.hpp285 namespace decl namespace in namespace:glu
320 std::ostream& operator<< (std::ostream& str, const DeclareStructTypePtr& decl);
321 std::ostream& operator<< (std::ostream& str, const DeclareStructType& decl);
322 std::ostream& operator<< (std::ostream& str, const DeclareVariable& decl);
324 } // decl
326 inline decl::Indent indent (int indentLevel) { return decl::Indent(indentLevel); }
327 inline decl::DeclareStructTypePtr declare (const StructType* structPtr, int indentLevel = 0) { return decl::DeclareStructTypePtr (structPtr, indentLevel); }
328 inline decl
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_dump.c242 struct tgsi_full_declaration *decl )
248 ENM(decl->Declaration.File, tgsi_file_names);
251 if (decl->Declaration.File == TGSI_FILE_INPUT &&
256 if (decl->Declaration.Dimension) {
258 SID(decl->Dim.Index2D);
263 SID(decl->Range.First);
264 if (decl->Range.First != decl->Range.Last) {
266 SID(decl->Range.Last);
272 decl
[all...]
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...]
/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/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c198 struct tgsi_full_declaration *decl)
205 if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
207 for (i = decl->Range.First; i <= decl->Range.Last; i++) {
211 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
212 pctx->maxInput = MAX2(pctx->maxInput, (int) decl->Range.Last);
213 if (decl->Semantic.Name == TGSI_SEMANTIC_POSITION)
214 pctx->wincoordInput = (int) decl->Range.First;
216 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
218 for (i = decl
197 pstip_transform_decl(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *decl) argument
270 struct tgsi_full_declaration decl; local
[all...]
/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/pdfium/xfa/fxfa/app/
H A Dcxfa_textparsecontext.h27 void SetDecls(std::vector<const CFDE_CSSDeclaration*>&& decl) { argument
28 decls_ = std::move(decl);
/external/selinux/libsepol/tests/
H A Dtest-common.h31 * decls integer array of decl id's that we expect the role to have in the scope table
35 * the scope table, and that the decl blocks we think this symbol is in are correct
57 * decl the decl block which we are looking in for the role datum
63 * avrule decl block matches our expectations
65 extern role_datum_t *test_role_type_set(policydb_t * p, const char *id, avrule_decl_t * decl, const char **types, unsigned int len, unsigned int flags);
69 * decl the decl block which we are looking in for the attribute datum
74 * avrule decl block matches our expectations
76 extern void test_attr_types(policydb_t * p, const char *id, avrule_decl_t * decl, cons
[all...]
H A Dtest-deps.c143 avrule_decl_t *decl; local
174 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type);
175 CU_ASSERT_FATAL(decl != NULL);
177 CU_ASSERT(decl->enabled == 1);
226 avrule_decl_t *decl; local
254 decl = test_find_decl_by_sym(base, SYM_TYPES, decl_type);
255 CU_ASSERT_FATAL(decl != NULL);
258 CU_ASSERT(decl->enabled == 1);
260 CU_ASSERT(decl->enabled == 0);
/external/v8/tools/clang/blink_gc_plugin/
H A DCheckDispatchVisitor.cpp31 for (Decl* decl : member->decls()) {
32 if (CXXMethodDecl* method = dyn_cast<CXXMethodDecl>(decl)) {
/external/libvpx/libvpx/vpx_ports/
H A Dmem.h27 #define DECLARE_PROTECTED(decl) decl __attribute__((visibility("protected")))
29 #define DECLARE_PROTECTED(decl) decl
/external/syslinux/core/thread/
H A Dsem_asm.S4 decl (%eax)
/external/v8/tools/clang/rewrite_to_chrome_style/
H A DRewriteToChromeStyle.cpp108 for (clang::NamedDecl* decl : Node.decls()) {
109 if (!InnerMatcher.matches(*decl, Finder, Builder))
117 const clang::CXXMethodDecl& decl,
124 for (auto it = decl.begin_overridden_methods();
125 it != decl.end_overridden_methods(); ++it) {
151 return inner_matcher.matches(decl, finder, builder);
161 bool IsMethodOverrideOf(const clang::CXXMethodDecl& decl, argument
163 if (decl.getParent()->getQualifiedNameAsString() == class_name)
165 for (auto it = decl.begin_overridden_methods();
166 it != decl
116 MatchAllOverriddenMethods( const clang::CXXMethodDecl& decl, T&& inner_matcher, clang::ast_matchers::internal::ASTMatchFinder* finder, clang::ast_matchers::internal::BoundNodesTreeBuilder* builder) argument
173 IsBlacklistedFunction(const clang::FunctionDecl& decl) argument
178 IsBlacklistedMethod(const clang::CXXMethodDecl& decl) argument
261 IsProbablyConst(const clang::VarDecl& decl, const clang::ASTContext& context) argument
297 GetNameForDecl(const clang::FunctionDecl& decl, clang::ASTContext& context, std::string& name) argument
331 GetNameForDecl(const clang::EnumConstantDecl& decl, clang::ASTContext& context, std::string& name) argument
358 GetNameForDecl(const clang::FieldDecl& decl, clang::ASTContext& context, std::string& name) argument
377 GetNameForDecl(const clang::VarDecl& decl, clang::ASTContext& context, std::string& name) argument
444 GetNameForDecl(const clang::FunctionTemplateDecl& decl, clang::ASTContext& context, std::string& name) argument
451 GetNameForDecl(const clang::NamedDecl& decl, clang::ASTContext& context, std::string& name) argument
469 GetNameForDecl(const clang::UsingDecl& decl, clang::ASTContext& context, std::string& name) argument
486 GetLoc(const clang::NamedDecl& decl) argument
546 const DeclNode* decl = result.Nodes.getNodeAs<DeclNode>("decl"); variable
[all...]
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py52 def __init__(self, instance = '', decl = None):
55 self.decl = decl
58 return decl_dumper_t(self._instance, self.decl)
61 class_ = self.decl
62 assert self.decl.class_type in ('struct', 'union')
72 for name, value in self.decl.values:
84 def dump_decl(instance, decl):
85 dumper = decl_dumper_t(instance, decl)
86 algorithm.apply_visitor(dumper, decl)
[all...]

Completed in 748 milliseconds

1234567891011>>