HomeSort by relevance Sort by last modified time
    Searched refs:decl (Results 1 - 25 of 683) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Attribute.java 36 public String decl; field in class:Attribute
47 public Attribute(String decl) {
48 extractAttribute(decl);
51 public Attribute(String name, String decl) {
53 this.decl = decl;
62 * Set name, type, initvalue, and full decl instance vars.
64 protected void extractAttribute(String decl) {
65 if ( decl==null ) {
70 int rightEdgeOfDeclarator = decl.length()-1
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
stub-dynsym-1.s 1 .macro decl
7 decl
mips16-pic-1a.s 6 decl unused1,lstub
10 decl unused2,lstub
14 decl unused3,lstub
17 decl unused4,hstub
21 decl unused5,hstub
25 decl unused6,hstub
28 decl unused7,hstub
31 decl unused8,hstub
34 decl unused9,gstub
38 decl unused10,gstu
    [all...]
  /system/nvram/core/tests/
gtest_stubs.cpp 28 for (TestDeclarationBase* decl = tests_; decl; decl = decl->next) {
29 TestInstanceBase* instance = decl->create_function();
30 fprintf(stderr, "[ %s ] Starting...\n", decl->name);
35 fprintf(stderr, "[ %s ] %s\n", decl->name, g_test_status ? "PASS" : "FAIL");
  /external/valgrind/coregrind/m_demangle/
d-demangle.c 213 /* Demangle the calling convention from MANGLED and append it to DECL.
216 dlang_call_convention (string *decl, const char *mangled)
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) ");
253 /* Extract the type modifiers from MANGLED and append them to DECL.
256 dlang_type_modifiers (string *decl, const char *mangled)
265 string_append (decl, " const")
1586 string decl; local
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
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[i].hole != other.stream.decl[i].hole) return false
    [all...]
  /external/elfutils/libdw/
dwarf_decl_column.c 39 dwarf_decl_column (Dwarf_Die *decl, int *colp)
41 return __libdw_attr_intval (decl, colp, DW_AT_decl_column);
  /toolchain/binutils/binutils-2.25/libiberty/
d-demangle.c 182 /* Demangle the calling convention from MANGLED and append it to DECL.
185 dlang_call_convention (string *decl, const char *mangled)
197 string_append (decl, "extern(C) ");
201 string_append (decl, "extern(Windows) ");
205 string_append (decl, "extern(Pascal) ");
209 string_append (decl, "extern(C++) ");
218 /* Demangle the D function attributes from MANGLED and append it to DECL.
221 dlang_attributes (string *decl, const char *mangled)
233 string_append (decl, "pure ");
237 string_append (decl, "nothrow ")
1306 string decl; local
    [all...]
  /external/skia/src/sksl/ast/
SkSLASTVarDeclarationStatement.h 20 ASTVarDeclarationStatement(std::unique_ptr<ASTVarDeclarations> decl)
21 : INHERITED(decl->fPosition, kVarDeclaration_Kind)
22 , fDeclarations(std::move(decl)) {}
  /external/mesa3d/src/gallium/auxiliary/tgsi/
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->Range.First
100 struct tgsi_full_declaration decl; local
    [all...]
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.Range.Last = ctx->info.num_inputs
    [all...]
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 = tgsi_default_full_declaration()
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...]
  /external/skia/src/sksl/ir/
SkSLVarDeclarationsStatement.h 20 VarDeclarationsStatement(std::unique_ptr<VarDeclarations> decl)
21 : INHERITED(decl->fPosition, kVarDeclarations_Kind)
22 , fDeclaration(std::move(decl)) {}
  /external/deqp/framework/opengl/simplereference/
sglrShaderProgram.cpp 133 ShaderProgram::ShaderProgram (const pdec::ShaderProgramDeclaration& decl)
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.getFragmentInputCount(), decl.getFragmentOutputCount()
    [all...]
  /external/selinux/libsepol/src/
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
167 avrule_decl_t *decl = local
    [all...]
  /external/clang/test/CodeGen/
2005-09-24-BitFieldCrash.c 29 void foo (union tree_node * decl) {
30 decl->function_decl.built_in_class != 0;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
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/
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 += gvsym->getName()
412 std::string decl = isKernel ? ".entry" : ".func"; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
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.Declaration.File = TGSI_FILE_OUTPUT
    [all...]
  /development/vndk/tools/header-checker/header-abi-dumper/src/
ast_processing.cpp 42 const clang::Decl *tu_decl)
51 bool HeaderASTVisitor::VisitRecordDecl(const clang::RecordDecl *decl) {
53 if (!decl->isThisDeclarationADefinition() ||
54 decl->getTypeForDecl()->isDependentType()) {
58 mangle_contextp_, ast_contextp_, cip_, decl);
62 llvm::errs() << "Getting Record Decl failed\n";
73 bool HeaderASTVisitor::VisitEnumDecl(const clang::EnumDecl *decl) {
74 if (!decl->isThisDeclarationADefinition() ||
75 decl->getTypeForDecl()->isDependentType()) {
79 mangle_contextp_, ast_contextp_, cip_, decl);
    [all...]
  /external/pdfium/xfa/fxfa/app/
cxfa_textparsecontext.h 27 void SetDecls(std::vector<const CFDE_CSSDeclaration*>&& decl) {
28 decls_ = std::move(decl);
  /libcore/luni/src/main/java/libcore/reflect/
TypeVariableImpl.java 83 private static GenericDeclaration nextLayer(GenericDeclaration decl) {
84 if (decl instanceof Class) {
86 Class cl = (Class)decl;
88 decl = (GenericDeclaration) m != null ? m : cl.getEnclosingConstructor();
89 if (decl != null) {
90 return decl;
93 } else if (decl instanceof Method) {
94 return ((Method)decl).getDeclaringClass();
95 } else if (decl instanceof Constructor) {
96 return ((Constructor)decl).getDeclaringClass()
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
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->Range.First; i <= decl->Range.Last; i++)
282 struct tgsi_full_declaration decl; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
debug.h 83 /* Called at start of function DECL, before it is declared. */
84 void (* begin_function) (tree decl);
89 /* Debug information for a function DECL. This might include the
93 void (* function_decl) (tree decl);
95 /* Debug information for a global DECL. Called from toplev.c after
97 void (* global_decl) (tree decl);
99 /* Debug information for a type DECL. Called from toplev.c after
105 void (* type_decl) (tree decl, int local);
108 void (* imported_module_or_decl) (tree decl, tree name,
111 /* DECL is an inline function, whose body is present, but which i
    [all...]
  /external/deqp/framework/opengl/
gluVarType.cpp 327 std::ostream& operator<< (std::ostream& str, const VariableDeclaration& decl)
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.name)
347 namespace decl namespace in namespace:glu
    [all...]

Completed in 863 milliseconds

1 2 3 4 5 6 7 8 91011>>