OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Multilibs
(Results
1 - 5
of
5
) sorted by null
/external/clang/include/clang/Driver/
Multilib.h
109
multilib_list
Multilibs
;
129
/// Filter out some subset of the
Multilibs
using a user defined callback
131
/// Filter out those
Multilibs
whose gccSuffix matches the given expression
137
/// Union this set of
multilibs
with another
140
/// Remove all of thie
multilibs
from the set
141
void clear() {
Multilibs
.clear(); }
143
iterator begin() { return
Multilibs
.begin(); }
144
const_iterator begin() const { return
Multilibs
.begin(); }
146
iterator end() { return
Multilibs
.end(); }
147
const_iterator end() const { return
Multilibs
.end();
[
all
...]
ToolChain.h
95
MultilibSet
Multilibs
;
150
const MultilibSet &getMultilibs() const { return
Multilibs
; }
/external/clang/lib/Driver/
Multilib.cpp
195
if (
Multilibs
.empty())
196
Multilibs
.insert(
Multilibs
.end(), MultilibSegments.begin(),
207
Multilibs
= Composed;
214
filterInPlace(F,
Multilibs
);
229
Multilibs
);
233
void MultilibSet::push_back(const Multilib &M) {
Multilibs
.push_back(M); }
236
Multilibs
.insert(
Multilibs
.end(), Other.begin(), Other.end());
261
},
Multilibs
);
[
all
...]
ToolChains.cpp
[
all
...]
ToolChains.h
99
/// The set of
multilibs
that the detected installation supports.
100
MultilibSet
Multilibs
;
123
const MultilibSet &getMultilibs() const { return
Multilibs
; }
[
all
...]
Completed in 74 milliseconds