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

1 2

  /external/v8/src/
prettyprinter.h 74 void PrintDeclarations(ZoneList<Declaration*>* declarations);
99 void PrintDeclarations(ZoneList<Declaration*>* declarations);
scopes.h 40 // A hash map to support fast variable declaration and lookup.
188 // Adds the specific declaration node to the list of declarations in
191 void AddDeclaration(Declaration* declaration);
210 // declarations, i.e. a var declaration that has been hoisted from a nested
212 Declaration* CheckConflictingVarDeclarations();
335 ZoneList<Declaration*>* declarations() { return &decls_; }
377 // True if this scope is inside a with scope and all declaration scopes
378 // between them have empty contexts. Such declaration scopes become
448 ZoneList<Declaration*> decls_
    [all...]
ast.h 125 class Declaration;
222 virtual Declaration* AsDeclaration() { return NULL; }
446 class Declaration: public AstNode {
454 virtual Declaration* AsDeclaration() { return this; }
457 Declaration(VariableProxy* proxy,
473 // Nested scope from which the declaration originated.
478 class VariableDeclaration: public Declaration {
492 : Declaration(proxy, mode, scope) {
497 class FunctionDeclaration: public Declaration {
514 : Declaration(proxy, mode, scope)
    [all...]
scopes.cc 505 void Scope::AddDeclaration(Declaration* declaration) {
506 decls_.Add(declaration);
525 Declaration* Scope::CheckConflictingVarDeclarations() {
528 Declaration* decl = decls_[i];
532 // Iterate through all scopes until and including the declaration scope.
    [all...]
ast.cc 388 bool Declaration::IsInlineable() const {
626 void AstVisitor::VisitDeclarations(ZoneList<Declaration*>* declarations) {
    [all...]
prettyprinter.cc 579 void PrettyPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) {
713 void AstPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) {
full-codegen.h 379 void VisitDeclarations(ZoneList<Declaration*>* declarations);
422 // declaration. Functions have an initial value.
parser.h 428 // Forward declaration.
763 // a scope where the name has also been let bound or the var declaration is
771 void Declare(Declaration* declaration, bool resolve, bool* ok);
full-codegen.cc 575 ZoneList<Declaration*>* declarations) {
587 Declaration* decl = declarations->at(i);
613 // declaration the global functions and variables.
    [all...]
parser.cc 722 : FunctionLiteral::DECLARATION;
1255 Declaration* declaration = local
1466 Declaration* declaration = local
1925 Declaration* declaration = local
1954 Declaration* declaration = local
2186 Declaration* declaration = local
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 40 /// \brief Priority for a declaration that is in the local scope.
42 /// \brief Priority for a member declaration found from the current
50 /// \brief Priority for a non-type declaration.
122 /// \brief Determine the type that this declaration will have if it is used
140 /// declaration.
175 /// \brief Code completion occurred where a statement (or declaration) is
449 /// \brief A brief documentation comment attached to the declaration of
654 RK_Declaration = 0, ///< Refers to a declaration
660 /// \brief When Kind == RK_Declaration or RK_Pattern, the declaration we are
661 /// referring to. In the latter case, the declaration might be NULL
    [all...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 477 OS << *Results[I].Declaration;
531 /// \brief Retrieve the effective availability of the given declaration.
542 if (!Declaration) {
550 switch (getDeclAvailability(Declaration)) {
565 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Declaration))
569 CursorKind = getCursorKindForDecl(Declaration);
574 if (isa<ObjCInterfaceDecl>(Declaration))
576 else if (isa<ObjCProtocolDecl>(Declaration))
614 DeclarationName Name = R.Declaration->getDeclName();
SemaCodeComplete.cpp 57 /// into the result set, used to ensure that no declaration ever gets into
64 /// a single (declaration, index) mapping (the common case) but
65 /// can also store a list of (declaration, index) mappings.
70 /// of (declaration, index) pairs.
73 /// \brief When the entry contains a single declaration, this is
90 // existing declaration.
115 /// \brief A mapping from declaration names to the declarations that have
234 /// When an Objective-C method declaration result is added, and that
261 /// \brief Determine whether the given declaration is at all interesting
264 /// \param ND the declaration that we are inspecting
    [all...]
SemaTemplateDeduction.cpp 137 /// of a non-type template parameter, return the declaration of that
158 /// \brief Determine whether two declaration pointers refer to the same
159 /// declaration.
200 // declaration in another case, keep the integral constant.
203 Y.getKind() == TemplateArgument::Declaration ||
232 // constant or a declaration in another case, keep the integral constant
233 // or declaration.
235 Y.getKind() == TemplateArgument::Declaration)
251 case TemplateArgument::Declaration:
252 // If we deduced a declaration and a dependent expression, keep th
    [all...]
  /external/v8/tools/
jsmin.py 38 around curly braces, so the declaration must be above the first use.
89 def Declaration(self, m):
278 self.Declaration,
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 36 /// traversal - there are other relationships (for example declaration context)
349 virtual bool classIsDerivedFrom(const CXXRecordDecl *Declaration,
473 bool MatchASTVisitor::classIsDerivedFrom(const CXXRecordDecl *Declaration,
476 if (!Declaration->hasDefinition())
479 for (BaseIterator It = Declaration->bases_begin(),
480 End = Declaration->bases_end(); It != End; ++It) {
502 // declaration which is an explicit or partial specialization of another
503 // template declaration, getAsCXXRecordDecl() returns the corresponding
507 // declaration which is neither an explicit nor partial specialization of
508 // another template declaration, getAsCXXRecordDecl() returns NULL an
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 49 /// The template argument is a declaration that was provided for a pointer
51 Declaration,
109 /// declaration, which is either an external declaration or a
110 /// template declaration.
111 TemplateArgument(Decl *D) : Kind(Declaration) {
216 /// \brief Retrieve the template argument as a declaration.
218 if (Kind != Declaration)
436 assert(Argument.getKind() == TemplateArgument::Declaration);
  /external/chromium/third_party/libevent/
event_rpcgen.py 71 print >>file, '/* Structure declaration for %s */' % self._name
86 dcl = entry.Declaration()
461 def Declaration(self):
552 def Declaration(self):
619 def Declaration(self):
745 def Declaration(self):
850 def Declaration(self):
    [all...]
  /external/clang/lib/AST/
TypeLoc.cpp 302 case TemplateArgument::Declaration:
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/clang/lib/Frontend/
ASTUnit.cpp 263 /// declaration should be shown.
365 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
374 QualType UsageType = getDeclUsageType(*Ctx, Results[I].Declaration);
416 if (isa<NamespaceDecl>(Results[I].Declaration) ||
417 isa<NamespaceAliasDecl>(Results[I].Declaration))
828 /// \brief Add the given declaration to the hash of all top-level entities.
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 35 // class declaration.
135 /// Examples matches \c X, \c C, and the friend declaration inside \c C;
144 /// \brief Matches a declaration of anything that could have a name.
260 /// only match the declaration for a.
285 /// would only match the declaration for a.
329 /// \brief Matches a TemplateArgument that refers to a certain declaration.
343 if (const Decl *Declaration = Node.getAsDecl())
344 return InnerMatcher.matches(*Declaration, Finder, Builder);
455 /// \brief Matches declaration statements.
    [all...]
ASTMatchersInternal.h 431 virtual bool classIsDerivedFrom(const CXXRecordDecl *Declaration,
    [all...]
  /external/bison/data/
glr.c 166 dnl # Declaration that might either go into the header (if --defines)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 

Completed in 1102 milliseconds

1 2