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

1 2 3

  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 109 llvm::Value *Declaration;
111 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
115 Declaration =
120 CurI->replaceAllUsesWith(Declaration);
  /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...]
  /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
447 /// \brief A brief documentation comment attached to the declaration of
645 RK_Declaration = 0, ///< Refers to a declaration
651 /// \brief When Kind == RK_Declaration or RK_Pattern, the declaration we are
652 /// referring to. In the latter case, the declaration might be NULL
    [all...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 447 OS << *Results[I].Declaration;
501 /// \brief Retrieve the effective availability of the given declaration.
512 if (!Declaration) {
520 switch (getDeclAvailability(Declaration)) {
535 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Declaration))
539 CursorKind = getCursorKindForDecl(Declaration);
544 if (isa<ObjCInterfaceDecl>(Declaration))
546 else if (isa<ObjCProtocolDecl>(Declaration))
584 DeclarationName Name = R.Declaration->getDeclName();
SemaCodeComplete.cpp 58 /// into the result set, used to ensure that no declaration ever gets into
65 /// a single (declaration, index) mapping (the common case) but
66 /// can also store a list of (declaration, index) mappings.
71 /// of (declaration, index) pairs.
74 /// \brief When the entry contains a single declaration, this is
92 // existing declaration.
117 /// \brief A mapping from declaration names to the declarations that have
201 /// \brief Determine the priority for a reference to the given declaration.
239 /// When an Objective-C method declaration result is added, and that
266 /// \brief Determine whether the given declaration is at all interestin
    [all...]
SemaTemplateDeduction.cpp 136 /// of a non-type template parameter, return the declaration of that
157 /// \brief Determine whether two declaration pointers refer to the same
158 /// declaration.
196 // declaration in another case, keep the integral constant.
199 Y.getKind() == TemplateArgument::Declaration ||
228 // constant or a declaration in another case, keep the integral constant
229 // or declaration.
231 Y.getKind() == TemplateArgument::Declaration)
247 case TemplateArgument::Declaration:
248 // 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/include/clang/AST/
TemplateBase.h 48 /// The template argument is a declaration that was provided for a pointer,
50 Declaration,
120 /// declaration, which is either an external declaration or a
121 /// template declaration.
122 TemplateArgument(ValueDecl *D, bool ForRefParam) : Kind(Declaration) {
231 /// \brief Retrieve the declaration for a declaration non-type
234 assert(Kind == Declaration && "Unexpected kind");
238 /// \brief Retrieve whether a declaration is binding to
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 366 virtual bool classIsDerivedFrom(const CXXRecordDecl *Declaration,
553 bool MatchASTVisitor::classIsDerivedFrom(const CXXRecordDecl *Declaration,
556 if (!Declaration->hasDefinition())
559 for (BaseIterator It = Declaration->bases_begin(),
560 End = Declaration->bases_end(); It != End; ++It) {
583 // declaration which is an explicit or partial specialization of another
584 // template declaration, getAsCXXRecordDecl() returns the corresponding
588 // declaration which is neither an explicit nor partial specialization of
589 // another template declaration, getAsCXXRecordDecl() returns NULL and
590 // we get the CXXRecordDecl of the templated declaration
    [all...]
  /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...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/clang/lib/AST/
ASTDiagnostic.cpp 328 assert(DC && "Should never have a null declaration context");
421 /// Declaration difference, uses ValueDecl
422 Declaration
887 FromIter->getKind() == TemplateArgument::Declaration;
890 ToIter->getKind() == TemplateArgument::Declaration;
894 "Template argument cannot be both integer and declaration");
    [all...]
TypeLoc.cpp 332 case TemplateArgument::Declaration:
  /external/clang/include/clang/Serialization/
ASTReader.h 329 /// When the pointer at index I is non-NULL, the declaration with ID
336 /// \brief Mapping from global declaration IDs to the module in which the
337 /// declaration resides.
386 /// \brief Updates to the visible declarations of declaration contexts that
467 Declaration,
483 HiddenName(Decl *D) : Kind(Declaration), Loc(), D(D), Id() { }
494 assert(getKind() == Declaration && "Hidden name is not a declaration");
817 /// since the last time the declaration chains were linked.
823 /// Each element is the global declaration ID of the first declaration i
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 272 /// declaration should be shown.
375 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
384 QualType UsageType = getDeclUsageType(*Ctx, Results[I].Declaration);
426 if (isa<NamespaceDecl>(Results[I].Declaration) ||
427 isa<NamespaceAliasDecl>(Results[I].Declaration))
856 /// \brief Add the given declaration to the hash of all top-level entities.
    [all...]
  /external/bison/data/
yacc.c 267 # Declaration of yyparse (and dependencies) when using the push parser
316 # Declaration that might either go into the header (if --defines)
    [all...]
glr.c 166 # Declaration that might either go into the header (if --defines)
    [all...]

Completed in 659 milliseconds

1 2 3