OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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/IR/
TypeFinder.cpp
88
StructTypes
.clear();
101
StructTypes
.push_back(STy);
/external/llvm/lib/Transforms/IPO/
StripSymbols.cpp
179
TypeFinder
StructTypes
;
180
StructTypes
.run(M, false);
182
for (unsigned i = 0, e =
StructTypes
.size(); i != e; ++i) {
183
StructType *STy =
StructTypes
[i];
/external/llvm/lib/Linker/
LinkModules.cpp
[
all
...]
Completed in 139 milliseconds