/external/llvm/include/llvm/ADT/ |
D | DepthFirstIterator.h | 133 static df_iterator begin(const GraphT &G) { in begin() 136 static df_iterator end(const GraphT &G) { return df_iterator(); } in end() 139 static df_iterator begin(const GraphT &G, SetType &S) { in begin() 142 static df_iterator end(const GraphT &G, SetType &S) { return df_iterator(S); } in end() 201 df_iterator<T> df_begin(const T& G) { in df_begin() 206 df_iterator<T> df_end(const T& G) { in df_end() 212 iterator_range<df_iterator<T>> depth_first(const T& G) { in depth_first() 224 df_ext_iterator<T, SetTy> df_ext_begin(const T& G, SetTy &S) { in df_ext_begin() 229 df_ext_iterator<T, SetTy> df_ext_end(const T& G, SetTy &S) { in df_ext_end() 234 iterator_range<df_ext_iterator<T, SetTy>> depth_first_ext(const T& G, in depth_first_ext() [all …]
|
D | PostOrderIterator.h | 137 static po_iterator begin(GraphT G) { in begin() 140 static po_iterator end(GraphT G) { return po_iterator(); } in end() 142 static po_iterator begin(GraphT G, SetType &S) { in begin() 145 static po_iterator end(GraphT G, SetType &S) { return po_iterator(S); } in end() 178 po_iterator<T> po_begin(const T &G) { return po_iterator<T>::begin(G); } in po_begin() 180 po_iterator<T> po_end (const T &G) { return po_iterator<T>::end(G); } in po_end() 182 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { in post_order() 194 po_ext_iterator<T, SetType> po_ext_begin(T G, SetType &S) { in po_ext_begin() 199 po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { in po_ext_end() 204 iterator_range<po_ext_iterator<T, SetType>> post_order_ext(const T &G, SetType &S) { in post_order_ext() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | PostOrderIterator.h | 141 static po_iterator begin(GraphT G) { in begin() 144 static po_iterator end(GraphT G) { return po_iterator(); } in end() 146 static po_iterator begin(GraphT G, SetType &S) { in begin() 149 static po_iterator end(GraphT G, SetType &S) { return po_iterator(S); } in end() 182 po_iterator<T> po_begin(const T &G) { return po_iterator<T>::begin(G); } in po_begin() 184 po_iterator<T> po_end (const T &G) { return po_iterator<T>::end(G); } in po_end() 186 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { in post_order() 198 po_ext_iterator<T, SetType> po_ext_begin(T G, SetType &S) { in po_ext_begin() 203 po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { in po_ext_end() 208 iterator_range<po_ext_iterator<T, SetType>> post_order_ext(const T &G, SetType &S) { in post_order_ext() [all …]
|
D | DepthFirstIterator.h | 151 static df_iterator begin(const GraphT &G) { in begin() 154 static df_iterator end(const GraphT &G) { return df_iterator(); } in end() 157 static df_iterator begin(const GraphT &G, SetType &S) { in begin() 160 static df_iterator end(const GraphT &G, SetType &S) { return df_iterator(S); } in end() 217 df_iterator<T> df_begin(const T& G) { in df_begin() 222 df_iterator<T> df_end(const T& G) { in df_end() 228 iterator_range<df_iterator<T>> depth_first(const T& G) { in depth_first() 240 df_ext_iterator<T, SetTy> df_ext_begin(const T& G, SetTy &S) { in df_ext_begin() 245 df_ext_iterator<T, SetTy> df_ext_end(const T& G, SetTy &S) { in df_ext_end() 250 iterator_range<df_ext_iterator<T, SetTy>> depth_first_ext(const T& G, in depth_first_ext() [all …]
|
D | BreadthFirstIterator.h | 114 static bf_iterator begin(const GraphT &G) { in begin() 118 static bf_iterator end(const GraphT &G) { return bf_iterator(); } in end() 148 template <class T> bf_iterator<T> bf_begin(const T &G) { in bf_begin() 152 template <class T> bf_iterator<T> bf_end(const T &G) { in bf_end() 157 template <class T> iterator_range<bf_iterator<T>> breadth_first(const T &G) { in breadth_first()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | PostOrderIterator.h | 96 static inline _Self begin(GraphT G) { return _Self(GT::getEntryNode(G)); } in begin() 97 static inline _Self end (GraphT G) { return _Self(); } in end() 99 static inline _Self begin(GraphT G, SetType &S) { in begin() 102 static inline _Self end (GraphT G, SetType &S) { return _Self(S); } in end() 136 po_iterator<T> po_begin(T G) { return po_iterator<T>::begin(G); } in po_begin() 138 po_iterator<T> po_end (T G) { return po_iterator<T>::end(G); } in po_end() 148 po_ext_iterator<T, SetType> po_ext_begin(T G, SetType &S) { in po_ext_begin() 153 po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { in po_ext_end() 172 ipo_iterator<T> ipo_end(T G){ in ipo_end() 187 ipo_ext_iterator<T, SetType> ipo_ext_begin(T G, SetType &S) { in ipo_ext_begin() [all …]
|
D | DepthFirstIterator.h | 134 static inline _Self begin(const GraphT& G) { in begin() 137 static inline _Self end(const GraphT& G) { return _Self(); } in end() 140 static inline _Self begin(const GraphT& G, SetType &S) { in begin() 143 static inline _Self end(const GraphT& G, SetType &S) { return _Self(S); } in end() 201 df_iterator<T> df_begin(const T& G) { in df_begin() 206 df_iterator<T> df_end(const T& G) { in df_end() 218 df_ext_iterator<T, SetTy> df_ext_begin(const T& G, SetTy &S) { in df_ext_begin() 223 df_ext_iterator<T, SetTy> df_ext_end(const T& G, SetTy &S) { in df_ext_end() 238 idf_iterator<T> idf_begin(const T& G) { in idf_begin() 243 idf_iterator<T> idf_end(const T& G){ in idf_end() [all …]
|
D | SCCIterator.h | 141 static inline _Self begin(const GraphT &G){return _Self(GT::getEntryNode(G));} in begin() 199 scc_iterator<T> scc_begin(const T &G) { in scc_begin() 204 scc_iterator<T> scc_end(const T &G) { in scc_end() 209 scc_iterator<Inverse<T> > scc_begin(const Inverse<T> &G) { in scc_begin() 214 scc_iterator<Inverse<T> > scc_end(const Inverse<T> &G) { in scc_end()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/XRay/ |
D | GraphTest.cpp | 38 typename std::remove_const<T>::type G; in getTestGraph() local 65 template <typename T> void graphVertexTester(T &G) { in graphVertexTester() 88 template <typename T> void graphEdgeTester(T &G) { in graphEdgeTester() 149 auto &G = this->Graph; in TYPED_TEST() local 155 auto &G = this->Graph; in TYPED_TEST() local 161 TypeParam G(this->Graph); in TYPED_TEST() local 168 TypeParam G = this->Graph; in TYPED_TEST() local 175 TypeParam G(std::move(this->Graph)); in TYPED_TEST() local 184 const GraphT &G = MG; in TEST() local 201 const GraphT &G = MG; in TEST() local [all …]
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-abi-virtual-inheritance-vtordisps.cpp | 58 struct G : virtual F, virtual E { struct 60 G(); argument 64 G::G() {} // Forces vftable emission. in G() function in G
|
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ |
D | eval.pass.cpp | 27 typedef std::minstd_rand G; in main() typedef 44 typedef std::minstd_rand G; in main() typedef 62 typedef std::minstd_rand G; in main() typedef 80 typedef std::minstd_rand G; in main() typedef 98 typedef std::minstd_rand G; in main() typedef 116 typedef std::minstd_rand G; in main() typedef 134 typedef std::minstd_rand G; in main() typedef 155 typedef std::minstd_rand G; in main() typedef 176 typedef std::minstd_rand G; in main() typedef 197 typedef std::minstd_rand G; in main() typedef [all …]
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.assign/ |
D | copy.fail.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
D | move2.pass.cpp | 24 class G class 31 G() : alive_(1) {++n_alive;} in G() function in G 32 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
D | move.pass.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/ |
D | joinable.pass.cpp | 23 class G class 30 G() : alive_(1) {++n_alive;} in G() function in G 31 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
D | join.pass.cpp | 26 class G class 33 G() : alive_(1) {++n_alive;} in G() function in G 34 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
D | get_id.pass.cpp | 23 class G class 30 G() : alive_(1) {++n_alive;} in G() function in G 31 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
D | swap.pass.cpp | 23 class G class 30 G() : alive_(1) {++n_alive;} in G() function in G 31 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
D | detach.pass.cpp | 27 class G class 35 G() : alive_(1), done_(false) in G() function in G 40 G(const G& g) : alive_(g.alive_), done_(false) in G() function in G
|
/external/libcxx/test/libcxx/thread/thread.threads/thread.thread.class/thread.thread.member/ |
D | native_handle.pass.cpp | 25 class G class 32 G() : alive_(1) {++n_alive;} in G() function in G 33 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.destr/ |
D | dtor.pass.cpp | 24 class G class 31 G() : alive_(1) {++n_alive;} in G() function in G 32 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.algorithm/ |
D | swap.pass.cpp | 23 class G class 30 G() : alive_(1) {++n_alive;} in G() function in G 31 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/ |
D | ECParameterSpec.java | 17 private ECPoint G; field in ECParameterSpec 23 ECPoint G, in ECParameterSpec() 35 ECPoint G, in ECParameterSpec() 48 ECPoint G, in ECParameterSpec()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/spec/ |
D | ECParameterSpec.java | 19 private ECPoint G; field in ECParameterSpec 25 ECPoint G, in ECParameterSpec() 37 ECPoint G, in ECParameterSpec() 50 ECPoint G, in ECParameterSpec()
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/ |
D | copy.fail.cpp | 21 class G class 28 G() : alive_(1) {++n_alive;} in G() function in G 29 G(const G& g) : alive_(g.alive_) {++n_alive;} in G() function in G
|