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

/external/llvm/include/llvm/IR/
H A DModule.h197 GlobalListType GlobalList; ///< The Global Variables in the module member in class:llvm::Module
488 const GlobalListType &getGlobalList() const { return GlobalList; }
490 GlobalListType &getGlobalList() { return GlobalList; }
492 return &Module::GlobalList;
528 global_iterator global_begin() { return GlobalList.begin(); }
529 const_global_iterator global_begin() const { return GlobalList.begin(); }
530 global_iterator global_end () { return GlobalList.end(); }
531 const_global_iterator global_end () const { return GlobalList.end(); }
532 bool global_empty() const { return GlobalList.empty(); }

Completed in 511 milliseconds