OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TG
(Results
1 - 4
of
4
) sorted by null
/external/llvm/include/llvm/Support/
Timer.h
84
TimerGroup *
TG
; // The TimerGroup this Timer is in.
88
explicit Timer(StringRef N) :
TG
(0) { init(N); }
89
Timer(StringRef N, TimerGroup &
tg
) :
TG
(0) { init(N,
tg
); }
90
Timer(const Timer &RHS) :
TG
(0) {
91
assert(RHS.
TG
== 0 && "Can only copy uninitialized timers");
94
assert(
TG
== 0 && T.
TG
== 0 && "Can only assign uninit timers");
100
explicit Timer() :
TG
(0) {
[
all
...]
/external/clang/test/CXX/special/class.dtor/
p3-0x.cpp
105
struct
TG
{
107
~
TG
();
110
TG
<T>::~
TG
() {}
122
TG
<int> g;
/external/llvm/lib/IR/
PassManager.cpp
454
TimerGroup
TG
;
457
TimingInfo() :
TG
("... Pass execution timing report ...") {}
482
T = new Timer(P->getPassName(),
TG
);
[
all
...]
/external/llvm/lib/Transforms/Scalar/
SCCP.cpp
[
all
...]
Completed in 457 milliseconds