Home
last modified time | relevance | path

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

12345678

/external/llvm/include/llvm/ADT/
DDepthFirstIterator.h134 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 …]
DPostOrderIterator.h136 static inline _Self begin(GraphT G) { return _Self(GT::getEntryNode(G)); } in begin()
137 static inline _Self end (GraphT G) { return _Self(); } in end()
139 static inline _Self begin(GraphT G, SetType &S) { in begin()
142 static inline _Self end (GraphT G, SetType &S) { return _Self(S); } in end()
175 po_iterator<T> po_begin(T G) { return po_iterator<T>::begin(G); } in po_begin()
177 po_iterator<T> po_end (T G) { return po_iterator<T>::end(G); } in po_end()
187 po_ext_iterator<T, SetType> po_ext_begin(T G, SetType &S) { in po_ext_begin()
192 po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { in po_ext_end()
211 ipo_iterator<T> ipo_end(T G){ in ipo_end()
226 ipo_ext_iterator<T, SetType> ipo_ext_begin(T G, SetType &S) { in ipo_ext_begin()
[all …]
DSCCIterator.h141 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DECDomainParameters.java14 ECPoint G; field in ECDomainParameters
20 ECPoint G, in ECDomainParameters()
32 ECPoint G, in ECDomainParameters()
45 ECPoint G, in ECDomainParameters()
/external/clang/test/Parser/
Dskip-function-bodies.mm17 - (void) G; method
20 - (void) G { method
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
DECParameterSpec.java17 private ECPoint G; field in ECParameterSpec
23 ECPoint G, in ECParameterSpec()
35 ECPoint G, in ECParameterSpec()
48 ECPoint G, in ECParameterSpec()
DECNamedCurveParameterSpec.java22 ECPoint G, in ECNamedCurveParameterSpec()
33 ECPoint G, in ECNamedCurveParameterSpec()
45 ECPoint G, in ECNamedCurveParameterSpec()
/external/v8/test/mjsunit/
Dinstanceof.js88 function G() { } class in TestExceptions
89 G.prototype = undefined; class
Dmultiple-return.js36 function G() { class
/external/clang/test/SemaObjCXX/
Dpointer-to-objc-pointer-conv.mm3 @interface G interface
8 - (void)foo:(G**)objects; argument
/external/clang/test/SemaCXX/
Duninitialized.cpp304 struct G { struct
305 F f1, f2;
306 F *f3, *f4;
307 G(char (*)[1]) : f1(f1) {} // expected-warning {{field is uninitialized when used here}} in G() function
308 G(char (*)[2]) : f2(f1) {} in G() argument
309 G(char (*)[3]) : f2(F()) {} in G() argument
311 G(char (*)[4]) : f1(f1.*ptr) {} // expected-warning {{field is uninitialized when used here}} in G() function
312 G(char (*)[5]) : f2(f1.*ptr) {} in G() argument
314 G(char (*)[6]) : f3(f3) {} // expected-warning {{field is uninitialized when used here}} in G() argument
315 G(char (*)[7]) : f3(f3->*f_ptr) {} // expected-warning {{field is uninitialized when used here}} in G() argument
[all …]
/external/clang/test/Rewriter/
Drewrite-cast-ivar-access.mm10 @interface G : F { interface
16 @implementation G implementation
Drewrite-cast-ivar-modern-access.mm9 @interface G : F { interface
15 @implementation G implementation
/external/clang/test/CodeGenCXX/
D2005-02-11-AnonymousUnion.cpp6 float G; in test1() member
16 short G; in test2() member
Dmangle-local-class-vtables.cpp29 void G() { in G() function
39 void G() const {} in G() function
Ddebug-info-pubtypes.cpp11 class G { class
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Object/
Dregress-192105.js101 function G() class
114 var obj = {F:F, G:G}; property
/external/clang/test/Preprocessor/
Ddump_macros.c27 #define G 1 macro
29 #define G 2 macro
/external/jpeg/
Drdcolmap.c46 add_map_entry (j_decompress_ptr cinfo, int R, int G, int B) in add_map_entry()
83 int R, G, B; in read_gif_map() local
175 int R, G, B; in read_ppm_map() local
/external/qemu/distrib/jpeg-6b/
Drdcolmap.c46 add_map_entry (j_decompress_ptr cinfo, int R, int G, int B) in add_map_entry()
83 int R, G, B; in read_gif_map() local
175 int R, G, B; in read_ppm_map() local
/external/skia/src/svg/
DSkSVGG.cpp12 DEFINE_SVG_NO_INFO(G) in DEFINE_SVG_NO_INFO() argument
/external/v8/test/mjsunit/compiler/
Dregress-7.js29 var G = 42; variable
Dregress-arrayliteral.js30 var G = 41; variable
/external/eigen/doc/snippets/
DJacobi_makeGivens.cpp2 JacobiRotation<float> G; variable
/external/clang/test/SemaTemplate/
Dmissing-class-keyword-crash.cpp2 class G {}; class

12345678