Home
last modified time | relevance | path

Searched refs:g (Results 1 – 25 of 310) sorted by relevance

12345678910>>...13

/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dfasts.sed6 g
7 s/a//g
9 g
11 g
12 s/^a//g
14 g
15 s/not present//g
17 g
18 s/^[a-z]//g
20 g
[all …]
Dmanis.good1 s%@CFLAGS@%%g
2 s%@CPPFLAGS@%-I/%g
3 s%@CXXFLAGS@%-x c++%g
4 s%@DEFS@%$DEFS%g
5 s%@LDFLAGS@%-L/usr/lib%g
6 s%@LIBS@%-lgnu -lbfd%g
7 s%@exec_prefix@%%g
8 s%@prefix@%$prefix%g
9 s%@RANLIB@%$RANLIB%g
10 s%@CC@%/usr/local/bin/gcc%g
[all …]
Dmodulo.inp1 s%@CFLAGS@%%g
2 s%@CPPFLAGS@%-I/%g
3 s%@CXXFLAGS@%-x c++%g
4 s%@DEFS@%$DEFS%g
5 s%@LDFLAGS@%-L/usr/lib%g
6 s%@LIBS@%-lgnu -lbfd%g
7 s%@exec_prefix@%%g
8 s%@prefix@%$prefix%g
9 s%@RANLIB@%$RANLIB%g
10 s%@CC@%/usr/local/bin/gcc%g
[all …]
Dmanis.inp1 s%@CFLAGS@%%g
2 s%@CPPFLAGS@%-I/%g
3 s%@CXXFLAGS@%-x c++%g
4 s%@DEFS@%$DEFS%g
5 s%@LDFLAGS@%-L/usr/lib%g
6 s%@LIBS@%-lgnu -lbfd%g
7 s%@exec_prefix@%%g
8 s%@prefix@%$prefix%g
9 s%@RANLIB@%$RANLIB%g
10 s%@CC@%/usr/local/bin/gcc%g
[all …]
Dmodulo.good2 s%@CFLAGS@%%g
4 s%@CXXFLAGS@%-x c++%g
6 s%@LDFLAGS@%-L/usr/lib%g
8 s%@exec_prefix@%%g
10 s%@RANLIB@%$RANLIB%g
12 s%@CPP@%$CPP%g
14 s%@XINCLUDES@%$XINCLUDES%g
16 s%@XPROGS@%$XPROGS%g
18 s%@TCLLIB@%$TCLLIB%g
20 s%@TKLIB@%$TKLIB%g
[all …]
Dmac-mf.sed5 /::/s/::/ \\Option-f\\Option-f /g
6 /:/s/:/ \\Option-f /g
7 /^[SU]=/s/ \\Option-f /:/g
10 /\$/s/\${\([a-zA-Z0-9_]*\)}/{\1}/g
11 /\$/s/\$(\([a-zA-Z0-9_]*\))/{\1}/g
14 /\$@/s/\$@/{targ}/g
25 /\./s,\.$,,g
28 /\./s,\.\./:,::,g
30 /\./s,\.\./\.\./,:::,g
31 /\./s,\.\./,::,g
[all …]
Dmanis.sed5 s/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\\\&%]/\\\\&/g;
6 s/@@/%@/; s/@@/@%/; s/@g$/%g/
/ndk/sources/host-tools/ndk-stack/regex/
Dregfree.c53 struct re_guts *g; in regfree() local
58 g = preg->re_g; in regfree()
59 if (g == NULL || g->magic != MAGIC2) /* oops again */ in regfree()
62 g->magic = 0; /* mark it invalid */ in regfree()
64 if (g->strip != NULL) in regfree()
65 free((char *)g->strip); in regfree()
66 if (g->sets != NULL) in regfree()
67 free((char *)g->sets); in regfree()
68 if (g->setbits != NULL) in regfree()
69 free((char *)g->setbits); in regfree()
[all …]
Dregcomp.c63 struct re_guts *g; member
152 struct re_guts *g; in regcomp() local
174 g = (struct re_guts *)malloc(sizeof(struct re_guts) + in regcomp()
176 if (g == NULL) in regcomp()
182 free((char *)g); in regcomp()
187 p->g = g; in regcomp()
196 g->csetsize = NC; in regcomp()
197 g->sets = NULL; in regcomp()
198 g->setbits = NULL; in regcomp()
199 g->ncsets = 0; in regcomp()
[all …]
Dengine.c72 struct re_guts *g; member
128 matcher(struct re_guts *g, char *string, size_t nmatch, regmatch_t pmatch[], in matcher() argument
136 const sopno gf = g->firststate+1; /* +1 for OEND */ in matcher()
137 const sopno gl = g->laststate; in matcher()
142 if (g->cflags&REG_NOSUB) in matcher()
155 if (g->must != NULL) { in matcher()
157 if (*dp == g->must[0] && stop - dp >= g->mlen && in matcher()
158 memcmp(dp, g->must, (size_t)g->mlen) == 0) in matcher()
165 m->g = g; in matcher()
188 if (nmatch == 0 && !g->backrefs) in matcher()
[all …]
Dregexec.c105 #define CLEAR(v) memset(v, 0, m->g->nstates)
109 #define ASSIGN(d, s) memcpy(d, s, m->g->nstates)
110 #define EQ(a, b) (memcmp(a, b, m->g->nstates) == 0)
112 #define STATESETUP(m, nv) { (m)->space = (char*)malloc((nv)*(m)->g->nstates); \
116 #define SETUP(v) ((v) = &m->space[m->vn++ * m->g->nstates])
142 struct re_guts *g = preg->re_g; in regexec() local
149 if (preg->re_magic != MAGIC1 || g->magic != MAGIC2) in regexec()
151 assert(!(g->iflags&BAD)); in regexec()
152 if (g->iflags&BAD) /* backstop for no-debug case */ in regexec()
156 if (g->nstates <= (int)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE)) in regexec()
[all …]
/ndk/sources/host-tools/sed-4.2.1/po/
Dboldquot.sed1 s/"\([^"]*\)"/“\1”/g
2 s/`\([^`']*\)'/‘\1’/g
3 s/ '\([^`']*\)' / ‘\1’ /g
4 s/ '\([^`']*\)'$/ ‘\1’/g
5 s/^'\([^`']*\)' /‘\1’ /g
6 s/“”/""/g
7 s/“/“/g
8 s/”/”/g
9 s/‘/‘/g
10 s/’/’/g
Dquot.sed1 s/"\([^"]*\)"/“\1”/g
2 s/`\([^`']*\)'/‘\1’/g
3 s/ '\([^`']*\)' / ‘\1’ /g
4 s/ '\([^`']*\)'$/ ‘\1’/g
5 s/^'\([^`']*\)' /‘\1’ /g
6 s/“”/""/g
/ndk/sources/host-tools/make-3.81/po/
Dboldquot.sed1 s/"\([^"]*\)"/“\1”/g
2 s/`\([^`']*\)'/‘\1’/g
3 s/ '\([^`']*\)' / ‘\1’ /g
4 s/ '\([^`']*\)'$/ ‘\1’/g
5 s/^'\([^`']*\)' /‘\1’ /g
6 s/“”/""/g
7 s/“/“/g
8 s/”/”/g
9 s/‘/‘/g
10 s/’/’/g
Dquot.sed1 s/"\([^"]*\)"/“\1”/g
2 s/`\([^`']*\)'/‘\1’/g
3 s/ '\([^`']*\)' / ‘\1’ /g
4 s/ '\([^`']*\)'$/ ‘\1’/g
5 s/^'\([^`']*\)' /‘\1’ /g
6 s/“”/""/g
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/slot/detail/
Ddef.hpp34 # define BOOST_PP_SLOT_CC_7(a, b, c, d, e, f, g) BOOST_PP_SLOT_CC_7_D(a, b, c, d, e, f, g) argument
35 # define BOOST_PP_SLOT_CC_8(a, b, c, d, e, f, g, h) BOOST_PP_SLOT_CC_8_D(a, b, c, d, e, f, g, h) argument
36 # define BOOST_PP_SLOT_CC_9(a, b, c, d, e, f, g, h, i) BOOST_PP_SLOT_CC_9_D(a, b, c, d, e, f, g, h,… argument
37 # define BOOST_PP_SLOT_CC_10(a, b, c, d, e, f, g, h, i, j) BOOST_PP_SLOT_CC_10_D(a, b, c, d, e, f, argument
44 # define BOOST_PP_SLOT_CC_7_D(a, b, c, d, e, f, g) a ## b ## c ## d ## e ## f ## g argument
45 # define BOOST_PP_SLOT_CC_8_D(a, b, c, d, e, f, g, h) a ## b ## c ## d ## e ## f ## g ## h argument
46 # define BOOST_PP_SLOT_CC_9_D(a, b, c, d, e, f, g, h, i) a ## b ## c ## d ## e ## f ## g ## h ## i argument
47 # define BOOST_PP_SLOT_CC_10_D(a, b, c, d, e, f, g, h, i, j) a ## b ## c ## d ## e ## f ## g ## h #… argument
/ndk/sources/host-tools/make-3.81/
Ddosbuild.bat22 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g commands.c -o commands.o
23 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g job.c -o job.o
24 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g dir.c -o dir.o
25 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g file.c -o file.o
26 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g misc.c -o misc.o
27 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g main.c -o main.o
28 gcc -c -I. -I./glob -DHAVE_CONFIG_H -DINCLUDEDIR=\"c:/djgpp/include\" -O2 -g read.c -o read.o
29 gcc -c -I. -I./glob -DHAVE_CONFIG_H -DLIBDIR=\"c:/djgpp/lib\" -O2 -g remake.c -o remake.o
30 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g rule.c -o rule.o
31 gcc -c -I. -I./glob -DHAVE_CONFIG_H -O2 -g implicit.c -o implicit.o
[all …]
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
Dunwind_06.cpp85 double g = get(0); in try6() local
87 a += get(1) + b+c+d+e+f+g; in try6()
89 return get(0)+a+b+c+d+e+f+g; in try6()
99 double g = get(0); in try7() local
102 a += get(1) + b+c+d+e+f+g; in try7()
104 return get(0)+a+b+c+d+e+f+g; in try7()
114 double g = get(0); in try8() local
118 a += get(1) + b+c+d+e+f+g+i; in try8()
120 return get(0)+a+b+c+d+e+f+g+i; in try8()
135 double g = get(7); in foo() local
[all …]
/ndk/tests/device/test-stlport_shared-exception/jni/
Dgcsec1.cpp10 int g = 0; variable
23 g = 1; in used()
33 g = 1; in unused()
41 if (g != 1) in main()
/ndk/tests/device/test-stlport_static-exception/jni/
Dgcsec1.cpp10 int g = 0; variable
23 g = 1; in used()
33 g = 1; in unused()
41 if (g != 1) in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/
Dtree_balance_after_insert.pass.cpp261 Node g; in test1() local
274 b.__right_ = &g; in test1()
293 g.__parent_ = &b; in test1()
294 g.__is_black_ = true; in test1()
315 assert(b.__right_ == &g); in test1()
336 Node g; in test1() local
348 b.__left_ = &g; in test1()
368 g.__parent_ = &b; in test1()
369 g.__is_black_ = true; in test1()
389 assert(b.__left_ == &g); in test1()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
Deval.pass.cpp26 G g; in main() local
32 D::result_type v = d(g); in main()
43 G g; in main() local
50 D::result_type v = d(g); in main()
61 G g; in main() local
68 D::result_type v = d(g); in main()
79 G g; in main() local
86 D::result_type v = d(g); in main()
97 G g; in main() local
104 D::result_type v = d(g); in main()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
Dswap.pass.cpp68 int g(int) {return 0;} in g() function
91 std::function<int(int)> f2 = g; in main()
95 assert(*f2.target<int(*)(int)>() == g); in main()
99 assert(*f1.target<int(*)(int)>() == g); in main()
105 std::function<int(int)> f1 = g; in main()
109 assert(*f1.target<int(*)(int)>() == g); in main()
115 assert(*f2.target<int(*)(int)>() == g); in main()
120 std::function<int(int)> f1 = g; in main()
124 assert(*f1.target<int(*)(int)>() == g); in main()
130 assert(*f2.target<int(*)(int)>() == g); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/
Dswap.pass.cpp69 int g(int) {return 0;} in g() function
92 std::function<int(int)> f2 = g; in main()
96 assert(*f2.target<int(*)(int)>() == g); in main()
100 assert(*f1.target<int(*)(int)>() == g); in main()
106 std::function<int(int)> f1 = g; in main()
110 assert(*f1.target<int(*)(int)>() == g); in main()
116 assert(*f2.target<int(*)(int)>() == g); in main()
121 std::function<int(int)> f1 = g; in main()
125 assert(*f1.target<int(*)(int)>() == g); in main()
131 assert(*f2.target<int(*)(int)>() == g); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
Dremove_if.pass.cpp20 bool g(int i) in g() function
34 c1.remove_if(g); in main()
43 c1.remove_if(g); in main()
53 c1.remove_if(g); in main()
61 c1.remove_if(g); in main()
71 c1.remove_if(g); in main()
82 c1.remove_if(g); in main()
91 c1.remove_if(g); in main()
101 c1.remove_if(g); in main()
109 c1.remove_if(g); in main()
[all …]

12345678910>>...13