OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StructTypes
(Results
1 - 9
of
9
) sorted by null
/external/llvm/include/llvm/IR/
TypeFinder.h
38
std::vector<StructType*>
StructTypes
;
50
iterator begin() { return
StructTypes
.begin(); }
51
iterator end() { return
StructTypes
.end(); }
53
const_iterator begin() const { return
StructTypes
.begin(); }
54
const_iterator end() const { return
StructTypes
.end(); }
56
bool empty() const { return
StructTypes
.empty(); }
57
size_t size() const { return
StructTypes
.size(); }
58
iterator erase(iterator I, iterator E) { return
StructTypes
.erase(I, E); }
60
StructType *&operator[](unsigned Idx) { return
StructTypes
[Idx]; }
/external/llvm/lib/Transforms/Utils/
MetaRenamer.cpp
102
TypeFinder
StructTypes
;
103
StructTypes
.run(M, true);
104
for (StructType *STy :
StructTypes
) {
/external/llvm/lib/Transforms/IPO/
StripSymbols.cpp
176
TypeFinder
StructTypes
;
177
StructTypes
.run(M, false);
179
for (unsigned i = 0, e =
StructTypes
.size(); i != e; ++i) {
180
StructType *STy =
StructTypes
[i];
/external/llvm/lib/IR/
TypeFinder.cpp
87
StructTypes
.clear();
105
StructTypes
.push_back(STy);
/external/swiftshader/third_party/LLVM/lib/VMCore/
Module.cpp
429
std::vector<StructType*> &
StructTypes
;
431
TypeFinder(std::vector<StructType*> &
structTypes
)
432
:
StructTypes
(
structTypes
) {}
492
StructTypes
.push_back(STy);
537
void Module::findUsedStructTypes(std::vector<StructType*> &
StructTypes
) const {
538
TypeFinder(
StructTypes
).run(*this);
/external/swiftshader/third_party/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/swiftshader/third_party/LLVM/lib/Target/CBackend/
CBackend.cpp
[
all
...]
/external/swiftshader/third_party/LLVM/include/llvm/
Module.h
274
void findUsedStructTypes(std::vector<StructType*> &
StructTypes
) const;
/external/llvm/lib/Linker/
IRMover.cpp
[
all
...]
Completed in 2428 milliseconds