Searched defs:exec (Results 1 - 25 of 392) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dapi_exec.c119 * \param ctx GL context to which \c exec belongs.
120 * \param exec dispatch table.
125 struct _glapi_table *exec; local
127 exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
128 if (exec == NULL)
132 _mesa_loopback_init_api_table(ctx, exec);
137 SET_AlphaFunc(exec, _mesa_AlphaFunc);
140 SET_BlendFunc(exec, _mesa_BlendFunc);
141 SET_Clear(exec, _mesa_Clear);
142 SET_ClearColor(exec, _mesa_ClearColo
[all...]
/external/mesa3d/src/mesa/main/
H A Dapi_exec.c119 * \param ctx GL context to which \c exec belongs.
120 * \param exec dispatch table.
125 struct _glapi_table *exec; local
127 exec = _mesa_alloc_dispatch_table(_gloffset_COUNT);
128 if (exec == NULL)
132 _mesa_loopback_init_api_table(ctx, exec);
137 SET_AlphaFunc(exec, _mesa_AlphaFunc);
140 SET_BlendFunc(exec, _mesa_BlendFunc);
141 SET_Clear(exec, _mesa_Clear);
142 SET_ClearColor(exec, _mesa_ClearColo
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditrbbi.cpp23 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
25 if (exec) logln("TestSuite RuleBasedBreakIterator: ");
29 if (exec) {
38 if (exec) {
H A Dittrans.cpp30 if (exec) { \
37 void IntlTestTransliterator::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
39 if (exec) logln("TestSuite Transliterator");
H A Ditmajor.cpp43 if(exec) { \
50 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
54 if (exec) {
63 if (exec) {
73 if (exec) {
83 if (exec) {
93 if (exec) {
103 if (exec) {
113 if (exec) {
122 if (exec) {
214 runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
[all...]
H A Ditformat.cpp62 if (exec) { \
70 void IntlTestFormat::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
75 if (exec) {
86 if (exec) logln("TestSuite Format: ");
137 if (exec) {
H A Ddecoll.cpp135 void CollationGermanTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) argument
137 if (exec) logln("TestSuite CollationGermanTest: ");
140 case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break;
141 case 1: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
H A Descoll.cpp100 void CollationSpanishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par */) argument
102 if (exec) logln("TestSuite CollationSpanishTest: ");
104 if((!myCollation) && exec) {
110 case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break;
111 case 1: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
/external/icu/icu4c/source/test/intltest/
H A Ditrbbi.cpp26 if (exec) { \
35 void IntlTestRBBI::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
37 if (exec) logln("TestSuite RuleBasedBreakIterator: ");
H A Dittrans.cpp30 if (exec) { \
37 void IntlTestTransliterator::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
39 if (exec) logln("TestSuite Transliterator");
H A Ditmajor.cpp43 if(exec) { \
50 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
54 if (exec) {
63 if (exec) {
73 if (exec) {
83 if (exec) {
93 if (exec) {
103 if (exec) {
113 if (exec) {
122 if (exec) {
214 runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
[all...]
H A Ditformat.cpp70 if (exec) { \
78 void IntlTestFormat::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
83 if (exec) {
94 if (exec) logln("TestSuite Format: ");
145 if (exec) {
154 if (exec) {
164 if (exec) {
173 if (exec) {
182 if (exec) {
/external/chromium_org/v8/test/mjsunit/bugs/
H A Dbug-617.js36 RegExp.prototype.exec = make_sure_we_dont_get_here;
40 re.exec = make_sure_we_dont_get_here;
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec.c39 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
41 exec->ctx = ctx;
49 vbo_exec_vtx_init( exec );
50 vbo_exec_array_init( exec );
52 /* Hook our functions into exec and compile dispatch tables.
54 _mesa_install_exec_vtxfmt( ctx, &exec->vtxfmt );
67 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
74 vbo_exec_vtx_destroy( exec );
86 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-string-methods.js33 assertEquals(["g"], /g/.exec("gg"));
37 assertEquals(["F"], f1.exec("F"));
42 assertEquals(["G"], f2.exec("G"));
45 // On the other hand test is defined in a semi-coherent way as a call to exec.
47 // We match other browsers in using the original value of RegExp.prototype.exec.
49 // RegExp.prototype.exec.
50 RegExp.prototype.exec = function(string) { return 'x'; };
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec.c39 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
41 exec->ctx = ctx;
49 vbo_exec_vtx_init( exec );
50 vbo_exec_array_init( exec );
52 /* Hook our functions into exec and compile dispatch tables.
54 _mesa_install_exec_vtxfmt( ctx, &exec->vtxfmt );
67 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
74 vbo_exec_vtx_destroy( exec );
86 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
[all...]
/external/valgrind/main/none/tests/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]
/external/valgrind/main/none/tests/arm/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]
/external/valgrind/main/none/tests/mips32/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]
/external/valgrind/main/none/tests/mips64/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]
/external/valgrind/main/none/tests/ppc32/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]
/external/valgrind/main/none/tests/x86/
H A Dallexec.c14 if (child == 0) {exec_call; perror ("exec failed");} \
20 void test_allexec (char *exec) argument
22 FORKEXECWAIT (execlp(exec, exec, NULL));
23 FORKEXECWAIT (execlp(exec, exec, "constant_arg1", "constant_arg2", NULL));
24 FORKEXECWAIT (execve(exec, NULL, environ));
28 /* If a single argument "exec" is given, will execute itself
29 (in bi-arch, a 32 bit and 64 bit variant) via various exec system calls.
38 if ( (argc == 2) && (strcmp (argv[1], "exec")
[all...]

Completed in 591 milliseconds

1234567891011>>