/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
H A D | Attribute.java | 36 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/valgrind/coregrind/m_demangle/ |
H A D | d-demangle.c | 216 dlang_call_convention (string *decl, const char *mangled) argument 228 string_append (decl, "extern(C) "); 232 string_append (decl, "extern(Windows) "); 236 string_append (decl, "extern(Pascal) "); 240 string_append (decl, "extern(C++) "); 244 string_append (decl, "extern(Objective-C) "); 256 dlang_type_modifiers (string *decl, const char *mangled) argument 265 string_append (decl, " const"); 269 string_append (decl, " immutable"); 273 string_append (decl, " share 294 dlang_attributes(string *decl, const char *mangled) argument 359 dlang_function_type(string *decl, const char *mangled) argument 408 dlang_function_args(string *decl, const char *mangled) argument 470 dlang_type(string *decl, const char *mangled) argument 718 dlang_identifier(string *decl, const char *mangled, enum dlang_symbol_kinds kind) argument 882 dlang_parse_integer(string *decl, const char *mangled, char type) argument 992 dlang_parse_real(string *decl, const char *mangled) argument 1086 dlang_parse_string(string *decl, const char *mangled) argument 1160 dlang_parse_arrayliteral(string *decl, const char *mangled) argument 1184 dlang_parse_assocarray(string *decl, const char *mangled) argument 1211 dlang_parse_structlit(string *decl, const char *mangled, const char *name) argument 1238 dlang_value(string *decl, const char *mangled, const char *name, char type) argument 1372 dlang_parse_symbol(string *decl, const char *mangled, enum dlang_symbol_kinds kind) argument 1459 dlang_parse_tuple(string *decl, const char *mangled) argument 1484 dlang_template_args(string *decl, const char *mangled) argument 1547 dlang_parse_template(string *decl, const char *mangled, long len) argument 1586 string decl; local [all...] |
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
H A D | streamout_jit.h | 36 /// STREAMOUT_DECL - Stream decl 49 // indicates this decl is a hole 62 STREAMOUT_DECL decl[128]; member in struct:STREAMOUT_STREAM 86 if (stream.decl[i].bufferIndex != other.stream.decl[i].bufferIndex) return false; 87 if (stream.decl[i].attribSlot != other.stream.decl[i].attribSlot) return false; 88 if (stream.decl[i].componentMask != other.stream.decl[i].componentMask) return false; 89 if (stream.decl[ [all...] |
/external/elfutils/libdw/ |
H A D | dwarf_decl_column.c | 39 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 D | SkSLASTVarDeclarationStatement.h | 20 ASTVarDeclarationStatement(std::unique_ptr<ASTVarDeclarations> decl) argument 21 : INHERITED(decl->fPosition, kVarDeclaration_Kind) 22 , fDeclarations(std::move(decl)) {}
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
H A D | tgsi_two_side.c | 72 struct tgsi_full_declaration *decl) 76 if (decl->Declaration.File == TGSI_FILE_INPUT) { 77 if (decl->Semantic.Name == TGSI_SEMANTIC_COLOR) { 79 assert(decl->Semantic.Index < 2); 80 ts->front_color_input[decl->Semantic.Index] = decl->Range.First; 81 ts->front_color_interp[decl->Semantic.Index] = decl->Interp.Interpolate; 83 else if (decl->Semantic.Name == TGSI_SEMANTIC_FACE) { 84 ts->face_input = decl 71 xform_decl(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *decl) argument 100 struct tgsi_full_declaration decl; local [all...] |
H A D | tgsi_emulate.c | 48 struct tgsi_full_declaration *decl) 53 decl->Declaration.File == TGSI_FILE_INPUT) { 54 assert(decl->Declaration.Interpolate); 55 decl->Interp.Location = TGSI_INTERPOLATE_LOC_SAMPLE; 58 tctx->emit_declaration(tctx, decl); 65 struct tgsi_full_declaration decl; local 69 decl = tgsi_default_full_declaration(); 70 decl.Declaration.File = TGSI_FILE_INPUT; 71 decl.Range.First = decl 47 transform_decl(struct tgsi_transform_context *tctx, struct tgsi_full_declaration *decl) argument [all...] |
H A D | tgsi_transform.h | 52 struct tgsi_full_declaration *decl); 81 const struct tgsi_full_declaration *decl); 101 struct tgsi_full_declaration decl; local 103 decl = tgsi_default_full_declaration(); 104 decl.Declaration.File = TGSI_FILE_TEMPORARY; 105 decl.Range.First = firstIdx; 106 decl.Range.Last = lastIdx; 107 ctx->emit_declaration(ctx, &decl); 121 struct tgsi_full_declaration decl; local 123 decl 136 struct tgsi_full_declaration decl; local 157 struct tgsi_full_declaration decl; local 176 struct tgsi_full_declaration decl; local 191 struct tgsi_full_declaration decl; local [all...] |
H A D | tgsi_parse.c | 105 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 D | tgsi_dump.c | 296 struct tgsi_full_declaration *decl ) 299 boolean patch = decl->Semantic.Name == TGSI_SEMANTIC_PATCH || 300 decl->Semantic.Name == TGSI_SEMANTIC_TESSINNER || 301 decl->Semantic.Name == TGSI_SEMANTIC_TESSOUTER || 302 decl->Semantic.Name == TGSI_SEMANTIC_PRIMID; 306 TXT(tgsi_file_name(decl->Declaration.File)); 311 if (decl->Declaration.File == TGSI_FILE_INPUT && 320 if (decl->Declaration.File == TGSI_FILE_OUTPUT && 326 if (decl->Declaration.Dimension) { 328 SID(decl [all...] |
/external/skia/src/sksl/ir/ |
H A D | SkSLVarDeclarationsStatement.h | 20 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 D | sglrShaderProgram.cpp | 133 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 D | avrule_block.c | 55 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 D | 2005-09-24-BitFieldCrash.c | 29 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 D | Compiler.h | 114 // 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 D | PTXAsmPrinter.cpp | 298 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 D | r300_vs_draw.c | 65 /* 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/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_pstipple.c | 197 struct tgsi_full_declaration *decl) 204 if (decl->Declaration.File == TGSI_FILE_SAMPLER) { 206 for (i = decl->Range.First; i <= decl->Range.Last; i++) { 210 else if (decl->Declaration.File == pctx->wincoordFile) { 211 pctx->maxInput = MAX2(pctx->maxInput, (int) decl->Range.Last); 212 if (decl->Semantic.Name == TGSI_SEMANTIC_POSITION) 213 pctx->wincoordInput = (int) decl->Range.First; 215 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) { 217 for (i = decl 196 pstip_transform_decl(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *decl) argument 282 struct tgsi_full_declaration decl; local [all...] |
/external/deqp/framework/opengl/ |
H A D | gluVarType.cpp | 327 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...] |
/external/javassist/src/main/javassist/expr/ |
H A D | ConstructorCall.java | 35 protected ConstructorCall(int pos, CodeIterator i, CtClass decl, MethodInfo m) { argument 36 super(pos, i, decl, m);
|
/external/pdfium/xfa/fxfa/app/ |
H A D | cxfa_textparsecontext.h | 27 void SetDecls(std::vector<const CFDE_CSSDeclaration*>&& decl) { argument 28 decls_ = std::move(decl);
|
/external/selinux/libsepol/tests/ |
H A D | test-common.h | 31 * 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...] |
/external/v8/tools/clang/blink_gc_plugin/ |
H A D | CheckDispatchVisitor.cpp | 31 for (Decl* decl : member->decls()) { 32 if (CXXMethodDecl* method = dyn_cast<CXXMethodDecl>(decl)) {
|
/external/libvpx/libvpx/vpx_ports/ |
H A D | mem.h | 27 #define DECLARE_PROTECTED(decl) decl __attribute__((visibility("protected"))) 29 #define DECLARE_PROTECTED(decl) decl
|
/external/syslinux/core/thread/ |
H A D | sem_asm.S | 4 decl (%eax)
|