OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Users
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/ui/app_list/
app_list_view_delegate.h
56
typedef std::vector<User>
Users
;
130
// Returns the list of
users
(for AppListMenu).
131
virtual const
Users
& GetUsers() const = 0;
/external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp
308
// Avoid iterator invalidation by copying
users
to a temporary vector.
309
SmallVector<Instruction*, 16>
Users
;
314
Users
.push_back(User);
320
while (!
Users
.empty()) {
321
Instruction *U =
Users
.back();
322
Users
.pop_back();
/external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp
337
// Avoid iterator invalidation by copying
users
to a temporary vector.
338
SmallVector<Instruction*,16>
Users
;
343
Users
.push_back(User);
354
while (!
Users
.empty()) {
355
Instruction *U =
Users
.back();
356
Users
.pop_back();
/external/llvm/lib/Target/R600/
SIISelLowering.cpp
939
SDNode *
Users
[4] = { };
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
639
// Otherwise, we can replace *all*
users
with the new PHI we form.
[
all
...]
/external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp
[
all
...]
/external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp
278
bool trackUsesOfI(DenseSet<Value *> &
Users
,
722
//
users
of the pair are also paired. This defines a (directed) forest
[
all
...]
Completed in 615 milliseconds