Searched defs:declarations (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py39 from pygccxml import declarations namespace
41 from pygccxml.declarations import algorithm
42 from pygccxml.declarations import decl_visitor
43 from pygccxml.declarations import type_traits
44 from pygccxml.declarations import type_visitor
323 global_ns = declarations.get_global_namespace(decls)
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.py39 from pygccxml import declarations namespace
41 from pygccxml.declarations import algorithm
42 from pygccxml.declarations import decl_visitor
43 from pygccxml.declarations import type_traits
44 from pygccxml.declarations import type_visitor
323 global_ns = declarations.get_global_namespace(decls)
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNamespaceSupport2.java33 * namespace declarations currently in scope, providing lookup
109 * the declarations of its parent context, but it will also keep
110 * track of which declarations were made within this context.</p>
467 private Vector declarations = null; field in class:Context2
518 declarations = null;
541 if (declarations == null) {
542 declarations = new Vector();
557 declarations.addElement(prefix);
686 if (declarations == null) {
689 return declarations
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc.h62 uint declarations[I915_PROGRAM_SIZE]; member in struct:i915_fp_compile
67 uint *decl; /**< Cursor, points into declarations. */
/external/chromium_org/v8/src/
H A Dscopes.h116 // block scoped declarations. In that case it is removed from the scope
201 // Adds the specific declaration node to the list of declarations in
202 // this scope. The declarations are processed as part of entering
223 // declarations, i.e. a var declaration that has been hoisted from a nested
352 ZoneList<Declaration*>* declarations() { return &decls_; } function in class:v8::internal::Scope
410 // where var declarations will be hoisted to in the implementation.
H A Dast.cc121 // non-const) multiple variable declarations, const vars introduced via
122 // eval() etc. Const-ness and variable declarations are a complete mess
754 void AstVisitor::VisitDeclarations(ZoneList<Declaration*>* declarations) { argument
755 for (int i = 0; i < declarations->length(); i++) {
756 Visit(declarations->at(i));
H A Dprettyprinter.cc618 void PrettyPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) { argument
619 for (int i = 0; i < declarations->length(); i++) {
621 Visit(declarations->at(i));
631 PrintDeclarations(function->scope()->declarations());
722 PrintDeclarations(program->scope()->declarations());
729 void AstPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) { argument
730 if (declarations->length() > 0) {
732 for (int i = 0; i < declarations->length(); i++) {
733 Visit(declarations->at(i));
H A Dfull-codegen.cc601 void FullCodeGenerator::AllocateModules(ZoneList<Declaration*>* declarations) { argument
604 for (int i = 0; i < declarations->length(); i++) {
605 ModuleDeclaration* declaration = declarations->at(i)->AsModuleDeclaration();
624 AllocateModules(scope->declarations());
698 ZoneList<Declaration*>* declarations) {
716 AllocateModules(declarations);
719 AstVisitor::VisitDeclarations(declarations);
765 VisitDeclarations(scope_->declarations());
1102 VisitDeclarations(scope_->declarations());
1426 ASSERT(scope_->declarations()
697 VisitDeclarations( ZoneList<Declaration*>* declarations) argument
[all...]
H A Dhydrogen.cc3693 // expressions before other declarations.
3697 VisitDeclarations(scope->declarations());
3889 // not have declarations).
7105 // All declarations must be inlineable.
7106 ZoneList<Declaration*>* decls = target_info.scope()->declarations();
7190 VisitDeclarations(target_info.scope()->declarations());
9601 ZoneList<Declaration*>* declarations) {
9603 AstVisitor::VisitDeclarations(declarations);
9600 VisitDeclarations( ZoneList<Declaration*>* declarations) argument
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc.h62 uint declarations[I915_PROGRAM_SIZE]; member in struct:i915_fp_compile
67 uint *decl; /**< Cursor, points into declarations. */
/external/v8/src/
H A Dprettyprinter.cc579 void PrettyPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) { argument
580 for (int i = 0; i < declarations->length(); i++) {
582 Visit(declarations->at(i));
592 PrintDeclarations(function->scope()->declarations());
706 PrintDeclarations(program->scope()->declarations());
713 void AstPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) { argument
714 if (declarations->length() > 0) {
716 for (int i = 0; i < declarations->length(); i++) {
717 Visit(declarations->at(i));
H A Dscopes.h105 // block scoped declarations. In that case it is removed from the scope
188 // Adds the specific declaration node to the list of declarations in
189 // this scope. The declarations are processed as part of entering
210 // declarations, i.e. a var declaration that has been hoisted from a nested
335 ZoneList<Declaration*>* declarations() { return &decls_; } function in class:v8::internal::Scope
386 // where var declarations will be hoisted to in the implementation.
H A Dast.cc109 // non-const) multiple variable declarations, const vars introduced via
110 // eval() etc. Const-ness and variable declarations are a complete mess
626 void AstVisitor::VisitDeclarations(ZoneList<Declaration*>* declarations) { argument
627 for (int i = 0; i < declarations->length(); i++) {
628 Visit(declarations->at(i));
H A Dfull-codegen.cc575 ZoneList<Declaration*>* declarations) {
579 AstVisitor::VisitDeclarations(declarations);
585 int length = declarations->length();
587 Declaration* decl = declarations->at(i);
938 VisitDeclarations(scope_->declarations());
1236 ASSERT(scope_->declarations()->is_empty());
574 VisitDeclarations( ZoneList<Declaration*>* declarations) argument
H A Dhydrogen.cc2485 // expressions before other declarations.
2489 VisitDeclarations(scope->declarations());
2665 // not have declarations).
5308 // All declarations must be inlineable.
5309 ZoneList<Declaration*>* decls = target_info.scope()->declarations();
5390 VisitDeclarations(target_info.scope()->declarations());
6976 void HGraphBuilder::VisitDeclarations(ZoneList<Declaration*>* declarations) { argument
6977 int length = declarations->length();
6979 for (int i = 0; i < declarations->length(); i++) {
6980 Declaration* decl = declarations
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_context.h164 /* declarations contains the packet header. */
165 GLuint declarations[I915_MAX_DECL_INSN * 3 + 1]; member in struct:i915_fragment_program
175 GLuint *decl; /* Cursor, points into declarations.
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_context.h164 /* declarations contains the packet header. */
165 GLuint declarations[I915_MAX_DECL_INSN * 3 + 1]; member in struct:i915_fragment_program
175 GLuint *decl; /* Cursor, points into declarations.
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c637 struct tgsi_full_declaration *declarations; local
708 declarations = (struct tgsi_full_declaration *)
711 if (!declarations) {
719 FREE( declarations );
731 declarations = REALLOC(declarations,
759 memcpy(declarations + numDeclarations,
761 sizeof(declarations[0]));
810 mach->Declarations = declarations;
4263 /* execute declarations (interpolant
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast.h465 exec_list declarations; member in class:ast_struct_specifier
529 exec_list declarations; member in class:ast_declarator_list
532 * Special flag for vertex shader "invariant" declarations.
811 declarations.push_degenerate_list_at_head(&member_list->link);
820 exec_list declarations; member in class:ast_uniform_block
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c637 struct tgsi_full_declaration *declarations; local
708 declarations = (struct tgsi_full_declaration *)
711 if (!declarations) {
719 FREE( declarations );
731 declarations = REALLOC(declarations,
759 memcpy(declarations + numDeclarations,
761 sizeof(declarations[0]));
810 mach->Declarations = declarations;
4263 /* execute declarations (interpolant
[all...]
/external/mesa3d/src/glsl/
H A Dast.h465 exec_list declarations; member in class:ast_struct_specifier
529 exec_list declarations; member in class:ast_declarator_list
532 * Special flag for vertex shader "invariant" declarations.
811 declarations.push_degenerate_list_at_head(&member_list->link);
820 exec_list declarations; member in class:ast_uniform_block
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar ... public abstract com.sun.mirror.util.Declarations getDeclarationUtils () public abstract com.sun.mirror.util ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 941 milliseconds