HomeSort by relevance Sort by last modified time
    Searched defs:StructTypes (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 178 std::vector<StructType*> StructTypes;
179 M.findUsedStructTypes(StructTypes);
181 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) {
182 StructType *STy = StructTypes[i];
  /external/llvm/lib/VMCore/
Module.cpp 485 std::vector<StructType*> &StructTypes;
487 TypeFinder(std::vector<StructType*> &structTypes)
488 : StructTypes(structTypes) {}
548 StructTypes.push_back(STy);
593 void Module::findUsedStructTypes(std::vector<StructType*> &StructTypes) const {
594 TypeFinder(StructTypes).run(*this);

Completed in 20 milliseconds