Home
last modified time | relevance | path

Searched defs:G (Results 1 – 25 of 1169) sorted by relevance

12345678910>>...47

/external/llvm/include/llvm/ADT/
DDepthFirstIterator.h133 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 …]
DPostOrderIterator.h137 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-10.0/llvm/include/llvm/ADT/
DPostOrderIterator.h140 static po_iterator begin(GraphT G) { in begin()
143 static po_iterator end(GraphT G) { return po_iterator(); } in end()
145 static po_iterator begin(GraphT G, SetType &S) { in begin()
148 static po_iterator end(GraphT G, SetType &S) { return po_iterator(S); } in end()
181 po_iterator<T> po_begin(const T &G) { return po_iterator<T>::begin(G); } in po_begin()
183 po_iterator<T> po_end (const T &G) { return po_iterator<T>::end(G); } in po_end()
185 template <class T> iterator_range<po_iterator<T>> post_order(const T &G) { in post_order()
197 po_ext_iterator<T, SetType> po_ext_begin(T G, SetType &S) { in po_ext_begin()
202 po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { in po_ext_end()
207 iterator_range<po_ext_iterator<T, SetType>> post_order_ext(const T &G, SetType &S) { in post_order_ext()
[all …]
DDepthFirstIterator.h150 static df_iterator begin(const GraphT &G) { in begin()
153 static df_iterator end(const GraphT &G) { return df_iterator(); } in end()
156 static df_iterator begin(const GraphT &G, SetType &S) { in begin()
159 static df_iterator end(const GraphT &G, SetType &S) { return df_iterator(S); } in end()
216 df_iterator<T> df_begin(const T& G) { in df_begin()
221 df_iterator<T> df_end(const T& G) { in df_end()
227 iterator_range<df_iterator<T>> depth_first(const T& G) { in depth_first()
239 df_ext_iterator<T, SetTy> df_ext_begin(const T& G, SetTy &S) { in df_ext_begin()
244 df_ext_iterator<T, SetTy> df_ext_end(const T& G, SetTy &S) { in df_ext_end()
249 iterator_range<df_ext_iterator<T, SetTy>> depth_first_ext(const T& G, in depth_first_ext()
[all …]
DBreadthFirstIterator.h113 static bf_iterator begin(const GraphT &G) { in begin()
117 static bf_iterator end(const GraphT &G) { return bf_iterator(); } in end()
147 template <class T> bf_iterator<T> bf_begin(const T &G) { in bf_begin()
151 template <class T> bf_iterator<T> bf_end(const T &G) { in bf_end()
156 template <class T> iterator_range<bf_iterator<T>> breadth_first(const T &G) { in breadth_first()
/external/llvm-project/llvm/include/llvm/ADT/
DPostOrderIterator.h141 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 …]
DDepthFirstIterator.h150 static df_iterator begin(const GraphT &G) { in begin()
153 static df_iterator end(const GraphT &G) { return df_iterator(); } in end()
156 static df_iterator begin(const GraphT &G, SetType &S) { in begin()
159 static df_iterator end(const GraphT &G, SetType &S) { return df_iterator(S); } in end()
216 df_iterator<T> df_begin(const T& G) { in df_begin()
221 df_iterator<T> df_end(const T& G) { in df_end()
227 iterator_range<df_iterator<T>> depth_first(const T& G) { in depth_first()
239 df_ext_iterator<T, SetTy> df_ext_begin(const T& G, SetTy &S) { in df_ext_begin()
244 df_ext_iterator<T, SetTy> df_ext_end(const T& G, SetTy &S) { in df_ext_end()
249 iterator_range<df_ext_iterator<T, SetTy>> depth_first_ext(const T& G, in depth_first_ext()
[all …]
DBreadthFirstIterator.h113 static bf_iterator begin(const GraphT &G) { in begin()
117 static bf_iterator end(const GraphT &G) { return bf_iterator(); } in end()
147 template <class T> bf_iterator<T> bf_begin(const T &G) { in bf_begin()
151 template <class T> bf_iterator<T> bf_end(const T &G) { in bf_end()
156 template <class T> iterator_range<bf_iterator<T>> breadth_first(const T &G) { in breadth_first()
/external/llvm-project/llvm/unittests/XRay/
DGraphTest.cpp37 std::remove_const_t<T> G; in getTestGraph() local
64 template <typename T> void graphVertexTester(T &G) { in graphVertexTester()
87 template <typename T> void graphEdgeTester(T &G) { in graphEdgeTester()
148 auto &G = this->Graph; in TYPED_TEST() local
154 auto &G = this->Graph; in TYPED_TEST() local
160 TypeParam G(this->Graph); in TYPED_TEST() local
167 TypeParam G = this->Graph; in TYPED_TEST() local
174 TypeParam G(std::move(this->Graph)); in TYPED_TEST() local
183 const GraphT &G = MG; in TEST() local
200 const GraphT &G = MG; in TEST() local
[all …]
/external/angle/src/image_util/
Dimageformats.h76 uint8_t G; member
88 uint8_t G; member
101 uint8_t G; member
136 uint8_t G; member
149 uint8_t G; member
163 uint8_t G; member
175 uint8_t G; member
189 uint8_t G; member
258 uint16_t G; member
270 uint16_t G; member
[all …]
/external/rust/crates/gdbstub/src/protocol/commands/
D_g_upcase.rs4 pub struct G<'a> { struct
8 impl<'a> ParseCommand<'a> for G<'a> { implementation
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
Deval.pass.cpp27 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/llvm-project/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
Deval.pass.cpp28 typedef std::minstd_rand G; in main() typedef
45 typedef std::minstd_rand G; in main() typedef
63 typedef std::minstd_rand G; in main() typedef
81 typedef std::minstd_rand G; in main() typedef
99 typedef std::minstd_rand G; in main() typedef
117 typedef std::minstd_rand G; in main() typedef
135 typedef std::minstd_rand G; in main() typedef
156 typedef std::minstd_rand G; in main() typedef
177 typedef std::minstd_rand G; in main() typedef
198 typedef std::minstd_rand G; in main() typedef
[all …]
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/
DSnippetGeneratorTest.cpp23 CombinationGenerator<int, std::vector<int>, 4> G(Choices); in TEST() local
44 CombinationGenerator<int, std::vector<int>, 4> G(Choices); in TEST() local
63 CombinationGenerator<int, std::vector<int>, 4> G(Choices); in TEST() local
84 CombinationGenerator<int, std::vector<int>, 4> G(Choices); in TEST() local
103 CombinationGenerator<int, std::vector<int>, 4> G(Choices); in TEST() local
122 CombinationGenerator<int, std::vector<int>, 4> G(Choices); in TEST() local
141 CombinationGenerator<int, std::vector<int>, 4> G(Choices); in TEST() local
159 CombinationGenerator<int, std::vector<int>, 4> G(Choices); in TEST() local
/external/llvm-project/clang-tools-extra/unittests/clang-doc/
DMDGeneratorTest.cpp18 auto G = doc::findGeneratorByName("md"); in getMDGenerator() local
38 auto G = getMDGenerator(); in TEST() local
99 auto G = getMDGenerator(); in TEST() local
162 auto G = getMDGenerator(); in TEST() local
190 auto G = getMDGenerator(); in TEST() local
321 auto G = getMDGenerator(); in TEST() local
DYAMLGeneratorTest.cpp19 auto G = doc::findGeneratorByName("yaml"); in getYAMLGenerator() local
41 auto G = getYAMLGenerator(); in TEST() local
105 auto G = getYAMLGenerator(); in TEST() local
191 auto G = getYAMLGenerator(); in TEST() local
239 auto G = getYAMLGenerator(); in TEST() local
377 auto G = getYAMLGenerator(); in TEST() local
/external/llvm-project/clang/test/CodeGenCXX/
Dmicrosoft-abi-virtual-inheritance-vtordisps.cpp61 struct G : virtual F, virtual E { struct
63 G(); argument
67 G::G() {} // Forces vftable emission. in G() function in G
/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-virtual-inheritance-vtordisps.cpp58 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/thread/thread.threads/thread.thread.class/thread.thread.member/
Djoinable.pass.cpp23 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/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.assign/
Dcopy.fail.cpp21 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/llvm-project/libcxx/test/std/containers/sequences/list/list.cons/
Dinput_iterator.pass.cpp188 ExpectConstructGuard<int&> G(1); in test_ctor_under_alloc() local
192 ExpectConstructGuard<int&> G(3); in test_ctor_under_alloc() local
200 ExpectConstructGuard<int&> G(1); in test_ctor_under_alloc() local
204 ExpectConstructGuard<int&> G(3); in test_ctor_under_alloc() local
221 ExpectConstructGuard<int&> G(1); in test_ctor_under_alloc_with_alloc() local
225 ExpectConstructGuard<int&> G(3); in test_ctor_under_alloc_with_alloc() local
235 ExpectConstructGuard<int&> G(1); in test_ctor_under_alloc_with_alloc() local
239 ExpectConstructGuard<int&> G(3); in test_ctor_under_alloc_with_alloc() local
/external/libcxx/test/std/containers/sequences/list/list.cons/
Dinput_iterator.pass.cpp188 ExpectConstructGuard<int&> G(1); in test_ctor_under_alloc() local
192 ExpectConstructGuard<int&> G(3); in test_ctor_under_alloc() local
200 ExpectConstructGuard<int&> G(1); in test_ctor_under_alloc() local
204 ExpectConstructGuard<int&> G(3); in test_ctor_under_alloc() local
221 ExpectConstructGuard<int&> G(1); in test_ctor_under_alloc_with_alloc() local
225 ExpectConstructGuard<int&> G(3); in test_ctor_under_alloc_with_alloc() local
235 ExpectConstructGuard<int&> G(1); in test_ctor_under_alloc_with_alloc() local
239 ExpectConstructGuard<int&> G(3); in test_ctor_under_alloc_with_alloc() local
/external/llvm-project/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
Dp5.cpp54 struct G { struct
59 …rator A<T, typename U::type> *(); // expected-note {{candidate function [with T = void, U = G::B]}} argument
/external/libcxx/test/libcxx/thread/thread.threads/thread.thread.class/thread.thread.member/
Dnative_handle.pass.cpp25 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/
Ddtor.pass.cpp24 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

12345678910>>...47