OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Refs
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/ARCMigrate/
Transforms.cpp
169
ExprSet &
Refs
;
171
ReferenceClear(ExprSet &
refs
) :
Refs
(
refs
) { }
172
bool VisitDeclRefExpr(DeclRefExpr *E) {
Refs
.erase(E); return true; }
173
bool VisitBlockDeclRefExpr(BlockDeclRefExpr *E) {
Refs
.erase(E); return true; }
178
ExprSet &
Refs
;
181
ReferenceCollector(ValueDecl *D, ExprSet &
refs
)
182
: Dcl(D),
Refs
(
refs
) { }
[
all
...]
TransAutoreleasePool.cpp
94
clearRefsIn(info.Dcl, info.
Refs
);
99
clearRefsIn(*scope.Begin, info.
Refs
);
100
clearRefsIn(*scope.End, info.
Refs
);
101
clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.
Refs
);
106
if (info.
Refs
.empty())
176
collectRefs(VD, S, info.
Refs
);
422
ExprSet
Refs
;
/external/llvm/lib/Target/X86/
SSEDomainFix.cpp
49
unsigned
Refs
;
94
Refs
= AvailableDomains = Dist = 0;
190
assert(LiveRegs[rx]->
Refs
&& "Bad refcount");
191
if (--LiveRegs[rx]->
Refs
== 0) Recycle(LiveRegs[rx]);
194
if (dv) ++dv->
Refs
;
204
if (LiveRegs[rx]->
Refs
== 1 && !LiveRegs[rx]->isCollapsed())
243
if (LiveRegs && dv->
Refs
> 1)
/external/llvm/include/llvm/Analysis/
AliasSetTracker.h
123
/// both. The lattice goes from "NoModRef" to either
Refs
or Mods, then to
127
NoModRef = 0,
Refs
= 1, // Ref = bit 1
157
bool isRef() const { return AccessTy &
Refs
; }
/external/llvm/lib/CodeGen/
StackSlotColoring.cpp
52
STATISTIC(NumRegRepl, "Number of stack slot
refs
replaced with reg
refs
");
502
SmallVector<MachineOperand*, 4>
Refs
;
531
Refs
.push_back(&MO);
545
for (unsigned i = 0, e =
Refs
.size(); i != e; ++i)
546
Refs
[i]->setReg(NewReg);
552
Refs
.push_back(Uses[i]);
/external/clang/lib/Serialization/
ASTReaderDecl.cpp
[
all
...]
Completed in 97 milliseconds