Searched refs:decl (Results 201 - 225 of 336) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/compiler/
H A Dast-graph-builder.cc354 void AstGraphBuilder::VisitVariableDeclaration(VariableDeclaration* decl) { argument
355 Variable* variable = decl->proxy()->var();
356 VariableMode mode = decl->mode();
387 void AstGraphBuilder::VisitFunctionDeclaration(FunctionDeclaration* decl) { argument
388 Variable* variable = decl->proxy()->var();
392 Compiler::BuildFunctionInfo(decl->fun(), info()->script(), info());
401 VisitForValue(decl->fun());
407 VisitForValue(decl->fun());
419 void AstGraphBuilder::VisitModuleDeclaration(ModuleDeclaration* decl) { argument
424 void AstGraphBuilder::VisitImportDeclaration(ImportDeclaration* decl) { argument
429 VisitExportDeclaration(ExportDeclaration* decl) argument
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dxmlschemas.c521 * The attr. decl. OR a QName-ref. to an attr. decl. OR
685 xmlSchemaTreeItemPtr children; /* first particle (OR "element decl" OR "wildcard") */
894 xmlSchemaElementPtr decl; /* the element/attribute declaration */ member in struct:_xmlSchemaNodeInfo
949 xmlSchemaAttributePtr decl; /* the attribute declaration */ member in struct:_xmlSchemaAttrInfo
1655 *buf = xmlStrdup(BAD_CAST "attribute decl.");
1670 *buf = xmlStrdup(BAD_CAST "element decl.");
4742 fprintf(stderr, "Unable to lookup element decl. %s", name);
4744 fprintf(stderr, "Unable to lookup element decl. %s:%s", name,
7423 * TODO: Should this go into the attr decl
8438 xmlSchemaElementPtr decl = NULL; local
25794 xmlSchemaElementPtr decl = NULL; local
[all...]
/external/libxml2/
H A Dxmlschemas.c521 * The attr. decl. OR a QName-ref. to an attr. decl. OR
685 xmlSchemaTreeItemPtr children; /* first particle (OR "element decl" OR "wildcard") */
894 xmlSchemaElementPtr decl; /* the element/attribute declaration */ member in struct:_xmlSchemaNodeInfo
949 xmlSchemaAttributePtr decl; /* the attribute declaration */ member in struct:_xmlSchemaAttrInfo
1660 *buf = xmlStrdup(BAD_CAST "attribute decl.");
1675 *buf = xmlStrdup(BAD_CAST "element decl.");
4761 fprintf(stderr, "Unable to lookup element decl. %s", name);
4763 fprintf(stderr, "Unable to lookup element decl. %s:%s", name,
7442 * TODO: Should this go into the attr decl
8457 xmlSchemaElementPtr decl = NULL; local
25823 xmlSchemaElementPtr decl = NULL; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c405 const struct tgsi_full_declaration *decl)
410 unsigned first = decl->Range.First;
411 unsigned last = decl->Range.Last;
415 switch (decl->Declaration.File) {
403 lp_emit_declaration_aos( struct lp_build_tgsi_aos_context *bld, const struct tgsi_full_declaration *decl) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_context.h107 uint *decl; member in struct:i915_fragment_shader
H A Di915_fpc.h67 uint *decl; /**< Cursor, points into declarations. */ member in struct:i915_fp_compile
69 uint decl_s; /**< flags for which s regs need to be decl'd */
70 uint decl_t; /**< flags for which t regs need to be decl'd */
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_context.h132 * decl, tex, and ALU instructions.
175 GLuint *decl; /* Cursor, points into declarations. member in struct:i915_fragment_program
178 GLuint decl_s; /* flags for which s regs need to be decl'd */
179 GLuint decl_t; /* flags for which t regs need to be decl'd */
/external/javassist/src/main/javassist/compiler/
H A DMemberCodeGen.java221 Declarator decl = (Declarator)p.getLeft();
224 decl.setLocalVar(var);
226 CtClass type = resolver.lookupClassByJvmName(decl.getClassName());
227 decl.setClassName(MemberResolver.javaToJvmName(type.getName()));
/external/lldb/include/lldb/Expression/
H A DClangASTSource.h521 /// @param[in] decl
525 void AddNamedDecl (clang::NamedDecl *decl);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c405 const struct tgsi_full_declaration *decl)
410 unsigned first = decl->Range.First;
411 unsigned last = decl->Range.Last;
415 switch (decl->Declaration.File) {
403 lp_emit_declaration_aos( struct lp_build_tgsi_aos_context *bld, const struct tgsi_full_declaration *decl) argument
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_context.h107 uint *decl; member in struct:i915_fragment_shader
H A Di915_fpc.h67 uint *decl; /**< Cursor, points into declarations. */ member in struct:i915_fp_compile
69 uint decl_s; /**< flags for which s regs need to be decl'd */
70 uint decl_t; /**< flags for which t regs need to be decl'd */
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_context.h132 * decl, tex, and ALU instructions.
175 GLuint *decl; /* Cursor, points into declarations. member in struct:i915_fragment_program
178 GLuint decl_s; /* flags for which s regs need to be decl'd */
179 GLuint decl_t; /* flags for which t regs need to be decl'd */
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXWriter.java75 public void decl(char[] buff, int offset, int length) throws SAXException { method in class:PYXWriter
/external/zlib/src/contrib/asm686/
H A Dmatch.S134 decl %ebx
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg333 <exceptions:{e|<catch(decl=e.decl,action=e.action)><\n>}>
359 catch(decl,action) ::= <<
360 catch (<e.decl>) {
1117 <scope.attributes:{public <it.decl>;}; separator="\n">
/external/chromium_org/v8/src/
H A Dscopes.cc548 Declaration* decl = decls_[i]; local
549 if (decl->mode() != VAR) continue;
550 const AstRawString* name = decl->proxy()->raw_name();
554 Scope* current = decl->scope();
559 return decl;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c749 struct tgsi_full_declaration *decl = local
751 debug_assert(decl->Range.Last < TGSI_EXEC_NUM_IMMEDIATES);
752 for (reg = decl->Range.First; reg <= decl->Range.Last; ++reg) {
755 mach->ImmArray[reg][i] = decl->ImmediateData.u[idx].Float;
2339 const struct tgsi_full_declaration *decl)
2341 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
2342 mach->SamplerViews[decl->Range.First] = decl->SamplerView;
2347 if (decl
2338 exec_declaration(struct tgsi_exec_machine *mach, const struct tgsi_full_declaration *decl) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c749 struct tgsi_full_declaration *decl = local
751 debug_assert(decl->Range.Last < TGSI_EXEC_NUM_IMMEDIATES);
752 for (reg = decl->Range.First; reg <= decl->Range.Last; ++reg) {
755 mach->ImmArray[reg][i] = decl->ImmediateData.u[idx].Float;
2339 const struct tgsi_full_declaration *decl)
2341 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
2342 mach->SamplerViews[decl->Range.First] = decl->SamplerView;
2347 if (decl
2338 exec_declaration(struct tgsi_exec_machine *mach, const struct tgsi_full_declaration *decl) argument
[all...]
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.cpp1157 sglr::pdec::ShaderProgramDeclaration decl;
1160 decl << sglr::pdec::VertexAttribute(std::string("a_") + de::toString(arrayNdx), mapOutputType(arrays[arrayNdx]->getOutputType()));
1162 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT);
1163 decl << sglr::pdec::FragmentOutput(rr::GENERICVECTYPE_FLOAT);
1165 decl << sglr::pdec::VertexSource(genVertexSource(ctx, arrays));
1166 decl << sglr::pdec::FragmentSource(genFragmentSource(ctx));
1168 decl << sglr::pdec::Uniform("u_coordScale", glu::TYPE_FLOAT);
1169 decl << sglr::pdec::Uniform("u_colorScale", glu::TYPE_FLOAT);
1171 return decl;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg539 <exceptions:{e|<catch(decl=e.decl,action=e.action)><\n>}>
581 catch(decl,action) ::= <<
582 catch (<e.decl>)
1437 <scope.attributes:{it|public <it.decl>;}; separator="\n">
1520 <scope.attributes:{it|public <it.decl>;}; separator="\n">
1534 <scope.attributes:{it|<it.decl>}; separator=", ">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg517 <exceptions:{e|<catch(decl=e.decl,action=e.action)><\n>}>
559 catch(decl,action) ::= <<
560 catch (<e.decl>)
1416 <scope.attributes:{it|public <it.decl>;}; separator="\n">
1502 <scope.attributes:{it|public <it.decl>;}; separator="\n">
1518 <scope.attributes:{it|<it.decl>}; separator=", ">
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg682 <exceptions:{e|<catch(decl=e.decl,action=e.action)><\n>}>
714 catch(decl,action) ::= <<
715 catch (<e.decl>)
1615 <scope.attributes:{public <it.decl>;}; separator="\n">
1625 <scope.attributes:{public <it.decl>;}; separator="\n">
1632 <scope.attributes:{<it.decl>}; separator=", ">
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp10 // This file implements decl-related attribute processing.
47 /// isFunctionOrMethod - Return true if the given decl has function
54 /// Return true if the given decl has a declarator that should have
62 /// hasFunctionProto - Return true if the given decl has a argument
63 /// information. This decl should have already passed
998 // Remember this typedef decl, we will need it later for diagnostics.
1142 // FIXME: Should also highlight argument in decl in the diagnostic.
1365 // check for an existing decl?
1969 static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl, argument
1971 ObjCMethodDecl *method = cast<ObjCMethodDecl>(decl);
4736 isForbiddenTypeAllowed(Sema &S, Decl *decl) argument
4750 handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag, Decl *decl) argument
4775 PopParsingDeclaration(ParsingDeclState state, Decl *decl) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DParseTreeTransforms.py230 def handle_bufferdefaults(self, decl):
231 if not isinstance(decl.default, ExprNodes.DictNode):
232 raise PostParseError(decl.pos, ERR_BUF_DEFAULTS)
233 self.scope_node.buffer_defaults_node = decl.default
234 self.scope_node.buffer_defaults_pos = decl.pos
238 # declaration. Also, it makes use of the fact that a cdef decl
245 for decl in node.declarators:
246 declbase = decl
253 handler = self.specialattribute_handlers.get(decl.name)
255 if decl i
[all...]

Completed in 4810 milliseconds

1234567891011>>