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

/external/bison/src/
H A Dparse-gram.y202 declarations "%%" grammar epilogue.opt
210 declarations: label
212 | declarations declaration
403 /* As a Bison extension, one can use the grammar declarations in the
/external/v8/src/
H A Dast.cc86 // non-const) multiple variable declarations, const vars introduced via
87 // eval() etc. Const-ness and variable declarations are a complete mess
163 void AstVisitor::VisitDeclarations(ZoneList<Declaration*>* declarations) { argument
164 for (int i = 0; i < declarations->length(); i++) {
165 Visit(declarations->at(i));
H A Dcodegen.cc297 void CodeGenerator::ProcessDeclarations(ZoneList<Declaration*>* declarations) { argument
298 int length = declarations->length();
301 Declaration* node = declarations->at(i);
319 // Compute array of global variable and function declarations.
322 Declaration* node = declarations->at(i);
H A Dscopes.h154 // Adds the specific declaration node to the list of declarations in
155 // this scope. The declarations are processed as part of entering
243 ZoneList<Declaration*>* declarations() { return &decls_; } function in class:v8::internal::Scope
H A Dfull-codegen.cc58 VisitDeclarations(scope->declarations());
488 ZoneList<Declaration*>* declarations) {
489 int length = declarations->length();
492 Declaration* decl = declarations->at(i);
507 // Compute array of global variable and function declarations.
512 Declaration* decl = declarations->at(i);
487 VisitDeclarations( ZoneList<Declaration*>* declarations) argument
H A Dprettyprinter.cc556 void PrettyPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) { argument
557 for (int i = 0; i < declarations->length(); i++) {
559 Visit(declarations->at(i));
569 PrintDeclarations(function->scope()->declarations());
719 PrintDeclarations(program->scope()->declarations());
726 void AstPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) { argument
727 if (declarations->length() > 0) {
729 for (int i = 0; i < declarations->length(); i++) {
730 Visit(declarations->at(i));
784 // var or const declarations
[all...]

Completed in 74 milliseconds