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

/external/llvm/include/llvm/
H A DModule.h195 GlobalListType GlobalList; ///< The Global Variables in the module member in class:llvm::Module
476 const GlobalListType &getGlobalList() const { return GlobalList; }
478 GlobalListType &getGlobalList() { return GlobalList; }
480 return &Module::GlobalList;
512 global_iterator global_begin() { return GlobalList.begin(); }
513 const_global_iterator global_begin() const { return GlobalList.begin(); }
514 global_iterator global_end () { return GlobalList.end(); }
515 const_global_iterator global_end () const { return GlobalList.end(); }
516 bool global_empty() const { return GlobalList.empty(); }

Completed in 40 milliseconds