/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Timer.cpp | 100 assert(!TG && "Timer already initialized"); in init() 104 TG = &tg; in init() 105 TG->addTimer(*this); in init() 109 if (!TG) return; // Never initialized, or already cleared. in ~Timer() 110 TG->removeTimer(*this); in ~Timer() 275 T.TG = nullptr; in removeTimer() 390 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) in printAll() local 391 TG->print(OS); in printAll() 396 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) in clearAll() local 397 TG->clear(); in clearAll() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Timer.cpp | 102 assert(!TG && "Timer already initialized"); in init() 106 TG = &tg; in init() 107 TG->addTimer(*this); in init() 111 if (!TG) return; // Never initialized, or already cleared. in ~Timer() 112 TG->removeTimer(*this); in ~Timer() 266 T.TG = nullptr; in removeTimer() 367 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) in printAll() local 368 TG->print(OS); in printAll() 397 for (TimerGroup *TG = TimerGroupList; TG; TG = TG->Next) in printAllJSONValues() local 398 delim = TG->printJSONValues(OS, delim); in printAllJSONValues()
|
/third_party/typescript/tests/baselines/reference/ |
D | restParameterTypeInstantiation.symbols | 4 interface TestGeneric<TG> { 6 >TG : Symbol(TG, Decl(restParameterTypeInstantiation.ts, 2, 22)) 11 g: TG 13 >TG : Symbol(TG, Decl(restParameterTypeInstantiation.ts, 2, 22))
|
D | restParameterTypeInstantiation.types | 4 interface TestGeneric<TG> { 8 g: TG 9 >g : TG
|
D | restParameterTypeInstantiation.js | 4 interface TestGeneric<TG> { 6 g: TG
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Parallel.h | 96 const Comparator &Comp, TaskGroup &TG, size_t Depth) { in parallel_quick_sort() argument 114 TG.spawn([=, &Comp, &TG] { in parallel_quick_sort() 115 parallel_quick_sort(Start, Pivot, Comp, TG, Depth - 1); in parallel_quick_sort() 117 parallel_quick_sort(Pivot + 1, End, Comp, TG, Depth - 1); in parallel_quick_sort() 123 TaskGroup TG; in parallel_sort() local 124 parallel_quick_sort(Start, End, Comp, TG, in parallel_sort() 138 TaskGroup TG; in parallel_for_each() local 140 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); in parallel_for_each() 152 TaskGroup TG; in parallel_for_each_n() local 155 TG.spawn([=, &Fn] { in parallel_for_each_n()
|
D | Timer.h | 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. variable 95 assert(!RHS.TG && "Can only copy uninitialized timers"); in Timer() 98 assert(!TG && !T.TG && "Can only assign uninit timers"); 110 bool isInitialized() const { return TG != nullptr; } in isInitialized() 193 TimerGroup(const TimerGroup &TG) = delete; 194 void operator=(const TimerGroup &TG) = delete;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Timer.h | 83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in. variable 95 assert(!RHS.TG && "Can only copy uninitialized timers"); in Timer() 98 assert(!TG && !T.TG && "Can only assign uninit timers"); 110 bool isInitialized() const { return TG != nullptr; } in isInitialized() 192 TimerGroup(const TimerGroup &TG) = delete; 193 void operator=(const TimerGroup &TG) = delete;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | PassTimingInfo.cpp | 63 TimerGroup TG; member in llvm::__anon2750f38f0111::legacy::PassTimingInfo 95 : TG("pass", "... Pass execution timing report ...") {} in PassTimingInfo() 116 TG.print(OutStream ? *OutStream : *CreateInfoOutputFile(), true); in print() 125 return new Timer(PassID, PassDescNumbered, TG); in newPassTimer() 178 Timer *T = new Timer(PassID, FullDesc, TG); in getPassTimer() 185 : TG("pass", "... Pass execution timing report ..."), Enabled(Enabled) {} in TimePassesHandler() 194 TG.print(OutStream ? *OutStream : *CreateInfoOutputFile(), true); in print()
|
/third_party/boost/libs/graph/test/ |
D | cycle_ratio_tests.cpp | 165 template < typename TG > 166 void make_dynamic_properties(TG& g, dynamic_properties& p) in make_dynamic_properties() 174 template < typename TG > void read_data1(std::istream& is, TG& g) in read_data1() 182 BGL_FORALL_VERTICES_T(vd, g, TG) { put(vertex_index, g, vd, i++); } in read_data1() 184 BGL_FORALL_EDGES_T(ed, g, TG) { put(edge_index, g, ed, i++); } in read_data1() 187 template < typename TG > void read_data(const char* file, TG& g) in read_data()
|
/third_party/typescript/tests/cases/compiler/ |
D | restParameterTypeInstantiation.ts | 5 interface TestGeneric<TG> { 7 g: TG
|
/third_party/boost/boost/graph/ |
D | howard_cycle_ratio.hpp | 505 template < typename FT, typename TG, typename TVIM, typename TEW1, 508 const TG& g, TVIM vim, TEW1 ewm, TEW2 ew2m, EV* pcc) in optimum_cycle_ratio() 510 typedef typename graph_traits< TG >::directed_category DirCat; in optimum_cycle_ratio() 513 BOOST_CONCEPT_ASSERT((IncidenceGraphConcept< TG >)); in optimum_cycle_ratio() 514 BOOST_CONCEPT_ASSERT((VertexListGraphConcept< TG >)); in optimum_cycle_ratio() 515 typedef typename graph_traits< TG >::vertex_descriptor Vertex; in optimum_cycle_ratio() 517 typedef typename graph_traits< TG >::edge_descriptor Edge; in optimum_cycle_ratio() 523 return detail::mcr_howard< FT, TG, TVIM, TEW1, TEW2 >( in optimum_cycle_ratio() 528 detail::mcr_howard1< FT, TG, TVIM, TEW1, TEW2 > obj(g, vim, ewm, ew2m); in optimum_cycle_ratio()
|
/third_party/boost/libs/graph/example/ |
D | cycle_ratio_example.cpp | 26 template < typename TG > void gen_rand_graph(TG& g, size_t nV, size_t nE) in gen_rand_graph()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | PassTimingInfo.h | 56 TimerGroup TG; variable
|
/third_party/flutter/skia/third_party/externals/icu/source/data/region/ |
D | zh_Hant_HK.txt | 84 TG{"多哥共和國"}
|
D | yi.txt | 202 TG{"טאגא"}
|
D | shi.txt | 197 TG{"ⵟⵓⴳⵓ"}
|
D | zgh.txt | 200 TG{"ⵟⵓⴳⵓ"}
|
D | dyo.txt | 111 TG{"Togo"}
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/test_utils/ |
D | ANGLETest.h | 147 template <typename TR, typename TG, typename TB, typename TA> 148 GLColor MakeGLColor(TR r, TG g, TB b, TA a) in MakeGLColor() 160 template <typename TR, typename TG, typename TB, typename TA> 161 GLColor32F MakeGLColor32F(TR r, TG g, TB b, TA a) in MakeGLColor32F()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
D | ANGLETest.h | 193 template <typename TR, typename TG, typename TB, typename TA> 194 GLColor MakeGLColor(TR r, TG g, TB b, TA a) in MakeGLColor() 212 template <typename TR, typename TG, typename TB, typename TA> 213 GLColor32F MakeGLColor32F(TR r, TG g, TB b, TA a) in MakeGLColor32F()
|
/third_party/boost/tools/build/src/tools/ |
D | vmsdecc.jam | 300 "$(nl)\"$(f:TG=:R=$(locate))\"" ; 438 LINK-MAINMOD-OPT on $(targets[1]) = $(targets[1]:TG=:R=$(locate):S=$MAINMOD.opt) ; 439 LINK-MAINMOD-JAM on $(targets[1]) = $(targets[1]:TG=:R=$(locate):S=$MAINMOD.jam) ; 484 LINK-MAINMOD-OPT on $(targets[1]) = $(targets[1]:TG=:R=$(locate):S=$MAINMOD.opt) ; 485 LINK-MAINMOD-JAM on $(targets[1]) = $(targets[1]:TG=:R=$(locate):S=$MAINMOD.jam) ;
|
/third_party/icu/icu4c/source/data/region/ |
D | yi.txt | 202 TG{"טאגא"}
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | yi.txt | 202 TG{"טאגא"}
|
D | shi.txt | 197 TG{"ⵟⵓⴳⵓ"}
|