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

  /external/llvm/include/llvm/IR/
TypeFinder.h 36 std::vector<StructType*> StructTypes;
48 iterator begin() { return StructTypes.begin(); }
49 iterator end() { return StructTypes.end(); }
51 const_iterator begin() const { return StructTypes.begin(); }
52 const_iterator end() const { return StructTypes.end(); }
54 bool empty() const { return StructTypes.empty(); }
55 size_t size() const { return StructTypes.size(); }
56 iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); }
58 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
  /external/llvm/lib/Transforms/Utils/
MetaRenamer.cpp 94 TypeFinder StructTypes;
95 StructTypes.run(M, true);
96 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) {
97 StructType *STy = StructTypes[i];
  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 178 TypeFinder StructTypes;
179 StructTypes.run(M, false);
181 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) {
182 StructType *STy = StructTypes[i];
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 209 llvm::SmallVector<llvm::Type*, 16> StructTypes;
210 StructTypes.push_back(VoidPtrTy); // const void *in
211 StructTypes.push_back(VoidPtrTy); // void *out
212 StructTypes.push_back(VoidPtrTy); // const void *usr
213 StructTypes.push_back(Int32Ty); // uint32_t usr_len
214 StructTypes.push_back(Int32Ty); // uint32_t x
215 StructTypes.push_back(Int32Ty); // uint32_t y
216 StructTypes.push_back(Int32Ty); // uint32_t z
217 StructTypes.push_back(Int32Ty); // uint32_t lod
218 StructTypes.push_back(Int32Ty); // enum RsAllocationCubemapFac
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]

Completed in 557 milliseconds