Home
last modified time | relevance | path

Searched refs:exec (Results 51 - 75 of 949) sorted by relevance

12345678910>>...38

/third_party/jerryscript/tests/jerry/es2015/
H A Dsymbol-search.js62 get exec() {
63 throw "abrupt exec"
68 assert (e === "abrupt exec");
73 exec: RegExp.prototype.exec
82 exec: 42
91 exec: () => {
92 throw "abrupt exec result"
97 assert (e === "abrupt exec result");
102 exec
[all...]
/third_party/node/test/parallel/
H A Dtest-child-process-exec-maxbuf.js18 cp.exec(cmd, common.mustCall((err) => {
30 cp.exec(cmd, common.mustSucceed((stdout, stderr) => {
40 cp.exec(cmd, options, common.mustSucceed((stdout, stderr) => {
49 cp.exec(
63 cp.exec(
81 cp.exec(cmd, common.mustSucceed((stdout, stderr) => {
92 cp.exec(
104 cp.exec(
116 const child = cp.exec(
130 const child = cp.exec(
[all...]
H A Dtest-http-full-response.js27 const exec = require('child_process').exec;
43 exec(command, function(err, stdout, stderr) {
52 let m = /Document Length:\s*(\d+) bytes/i.exec(stdout);
55 m = /Complete requests:\s*(\d+)/i.exec(stdout);
58 m = /HTML transferred:\s*(\d+) bytes/i.exec(stdout);
/third_party/node/deps/npm/test/lib/commands/
H A Dprofile.js61 await t.rejects(profile.exec([]), await profile.usage)
73 await profile.exec(['get'])
84 await profile.exec(['get'])
95 await profile.exec(['get'])
105 await profile.exec(['get'])
120 await profile.exec(['get'])
136 await profile.exec(['get'])
153 await profile.exec(['get'])
169 await profile.exec(['get', 'name'])
180 await profile.exec(['ge
[all...]
H A Dhook.js71 await t.rejects(hook.exec([]), hook.usage, 'throws usage with no arguments')
76 await hook.exec(['add', 'semver', 'https://google.com', 'some-secret'])
93 await hook.exec(['add', '~npm', 'https://google.com', 'some-secret'])
110 await hook.exec(['add', '@npmcli', 'https://google.com', 'some-secret'])
133 await hook.exec(['add', 'semver', 'https://google.com', 'some-secret'])
156 await hook.exec(['add', '@npmcli', 'https://google.com', 'some-secret'])
188 await hook.exec(['add', '@npmcli', 'https://google.com', 'some-secret'])
219 await hook.exec(['add', '@npmcli', 'https://google.com', 'some-secret'])
236 await hook.exec(['ls'])
259 await hook.exec(['l
[all...]
H A Dsbom.js106 await sbom.exec([])
129 await sbom.exec([])
154 await sbom.exec([])
179 await sbom.exec([])
204 await sbom.exec([])
224 await t.rejects(sbom.exec([]), {
251 sbom.exec([]),
275 sbom.exec([]),
302 await sbom.exec([])
323 await sbom.exec([])
[all...]
H A Downer.js55 npm.exec('owner', []),
78 await npm.exec('owner', ['ls'])
89 npm.exec('owner', ['ls']),
100 npm.exec('owner', ['ls']),
110 npm.exec('owner', ['ls'])
125 await t.rejects(npm.exec('owner', ['ls']))
142 await npm.exec('owner', ['ls', packageName])
158 await npm.exec('owner', ['ls', packageName])
188 await npm.exec('owner', ['add', username, packageName])
221 await npm.exec('owne
[all...]
H A Doutdated.js268 await outdated.exec([])
280 await outdated.exec([])
293 await outdated.exec([])
306 await outdated.exec([])
319 await outdated.exec([])
331 await outdated.exec([])
343 await outdated.exec([])
356 await outdated.exec([])
368 await outdated.exec([])
381 await outdated.exec([])
[all...]
H A Ddist-tag.js108 await distTag.exec(['ls'])
122 distTag.exec(['ls']),
136 await distTag.exec([])
146 distTag.exec(['borked', '@scoped/pkg']),
154 await distTag.exec(['ls', '@scoped/another'])
164 distTag.exec(['ls', 'foo']),
182 distTag.exec(['ls']),
190 await distTag.exec(['@scoped/another'])
198 const mockWorkspaces = async (t, exec = [], workspaces = true, prefixDir = {}) => {
207 await mock.distTag.exec(exe
[all...]
/third_party/icu/icu4c/source/test/perf/usetperf/
H A Dusetperf.cpp104 virtual UPerfFunction* runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ){ in runIndexedTest() argument
107 if (exec) return new CmdOp(U_TITLECASE_LETTER, &CmdOp::add) ; break; in runIndexedTest()
109 if (exec) return new CmdOp(U_TITLECASE_LETTER, &CmdOp::contains) ; break; in runIndexedTest()
111 if (exec) return new CmdOp(U_TITLECASE_LETTER, &CmdOp::iterator) ; break; in runIndexedTest()
113 if (exec) return new CmdOp(U_UNASSIGNED, &CmdOp::add) ; break; in runIndexedTest()
115 if (exec) return new CmdOp(U_UNASSIGNED, &CmdOp::contains) ; break; in runIndexedTest()
117 if (exec) return new CmdOp(U_UNASSIGNED, &CmdOp::iterator) ; break; in runIndexedTest()
119 if (exec) return new CmdPattern(PAT[0]) ; break; in runIndexedTest()
121 if (exec) return new CmdPattern(PAT[1]) ; break; in runIndexedTest()
123 if (exec) retur in runIndexedTest()
[all...]
/third_party/mesa3d/src/mesa/vbo/
H A Dvbo_private.h59 gl_context_from_vbo_exec(struct vbo_exec_context *exec) in gl_context_from_vbo_exec() argument
61 return container_of(exec, struct gl_context, vbo_context.exec); in gl_context_from_vbo_exec()
66 gl_context_from_vbo_exec_const(const struct vbo_exec_context *exec) in gl_context_from_vbo_exec_const() argument
68 return container_of(exec, struct gl_context, vbo_context.exec); in gl_context_from_vbo_exec_const()
173 vbo_compute_max_verts(const struct vbo_exec_context *exec) in vbo_compute_max_verts() argument
175 unsigned n = (gl_context_from_vbo_exec_const(exec)->Const.glBeginEndBufferSize - in vbo_compute_max_verts()
176 exec->vtx.buffer_used) / in vbo_compute_max_verts()
177 (exec in vbo_compute_max_verts()
[all...]
H A Dvbo_exec.c113 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; in vbo_exec_init() local
115 vbo_exec_vtx_init(exec); in vbo_exec_init()
120 exec->eval.recalculate_maps = GL_TRUE; in vbo_exec_init()
126 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; in vbo_exec_destroy() local
128 vbo_exec_vtx_destroy( exec ); in vbo_exec_destroy()
/third_party/skia/third_party/externals/freetype/src/truetype/
H A Dttsubpix.c894 loader->exec->sph_tweak_flags |= SPH_TWEAK_##x
899 loader->exec->sph_tweak_flags &= ~SPH_TWEAK_##x
923 if ( loader->exec->sph_tweak_flags & SPH_TWEAK_PIXEL_HINTING ) in sph_set_tweaks()
925 loader->exec->ignore_x_mode = FALSE; in sph_set_tweaks()
954 if ( loader->exec->sph_tweak_flags & SPH_TWEAK_RASTERIZER_35 ) in sph_set_tweaks()
956 if ( loader->exec->rasterizer_version != TT_INTERPRETER_VERSION_35 ) in sph_set_tweaks()
958 loader->exec->rasterizer_version = TT_INTERPRETER_VERSION_35; in sph_set_tweaks()
959 loader->exec->size->cvt_ready = -1; in sph_set_tweaks()
962 loader->exec->size, in sph_set_tweaks()
966 loader->exec in sph_set_tweaks()
[all...]
H A Dttgload.c188 loader->exec ) in tt_get_metrics()
190 loader->exec->sph_tweak_flags = 0; in tt_get_metrics()
454 tmp = load->exec->glyphSize; in FT_CALLBACK_DEF()
455 error = Update_Max( load->exec->memory, in FT_CALLBACK_DEF()
458 (void*)&load->exec->glyphIns, in FT_CALLBACK_DEF()
461 load->exec->glyphSize = (FT_UInt)tmp; in FT_CALLBACK_DEF()
466 load->glyph->control_data = load->exec->glyphIns; in FT_CALLBACK_DEF()
469 FT_MEM_COPY( load->exec->glyphIns, p, (FT_Long)n_ins ); in FT_CALLBACK_DEF()
853 loader->exec->GS = loader->size->GS; in TT_Hint_Glyph()
859 loader->exec in TT_Hint_Glyph()
2506 TT_ExecContext exec; tt_loader_init() local
[all...]
/foundation/multimedia/image_effect/interfaces/inner_api/native/common/
H A Derror_code.h125 #define FALSE_RETURN_MSG_W(exec, ret, fmt, args...) \
127 bool returnValue = (exec); \
136 #define FALSE_RETURN_E(exec, ret) \
138 bool returnValue = (exec); \
140 EFFECT_LOGE("FALSE_RETURN " #exec); \
147 #define FALSE_RETURN_MSG_E(exec, ret, fmt, args...) \
149 bool returnValue = (exec); \
158 #define FAIL_RETURN(exec) \
160 ErrorCode returnValue = (exec); \
/third_party/jerryscript/tests/jerry/
H A Dregexp-backreference.js17 r = new RegExp ("(a)b\\1").exec("aba");
21 r = new RegExp ("(a)b\\1").exec("b");
24 r = new RegExp ("(a)*b\\1").exec("b");
28 assert (JSON.stringify (/[[]?(a)\1/.exec("aa")) === '["aa","a"]');
29 assert (JSON.stringify (/\1{2,5}()\B/.exec("asd")) === '["",""]');
H A Dregexp-routines.js18 assert (r.exec ("a") == "a");
19 assert (r.exec ("b") == null);
21 r.exec.call({}, "a");
43 /* Test continous calls to the exec method to see how does the match
47 result = re.exec("a");
52 assert (re.exec("a") === null);
55 result = re.exec("a");
/third_party/mesa3d/src/intel/vulkan/
H A Danv_batch_chain.c1221 anv_execbuf_init(struct anv_execbuf *exec) in anv_execbuf_init() argument
1223 memset(exec, 0, sizeof(*exec)); in anv_execbuf_init()
1227 anv_execbuf_finish(struct anv_execbuf *exec) in anv_execbuf_finish() argument
1229 vk_free(exec->alloc, exec->syncobjs); in anv_execbuf_finish()
1230 vk_free(exec->alloc, exec->syncobj_values); in anv_execbuf_finish()
1231 vk_free(exec->alloc, exec in anv_execbuf_finish()
1237 anv_execbuf_add_ext(struct anv_execbuf *exec, uint32_t ext_name, struct i915_user_extension *ext) anv_execbuf_add_ext() argument
1262 anv_execbuf_add_bo(struct anv_device *device, struct anv_execbuf *exec, struct anv_bo *bo, struct anv_reloc_list *relocs, uint32_t extra_flags) anv_execbuf_add_bo() argument
1364 anv_execbuf_add_bo_bitset(struct anv_device *device, struct anv_execbuf *exec, uint32_t dep_words, BITSET_WORD *deps, uint32_t extra_flags) anv_execbuf_add_bo_bitset() argument
1512 execbuf_can_skip_relocations(struct anv_execbuf *exec) execbuf_can_skip_relocations() argument
1540 relocate_cmd_buffer(struct anv_cmd_buffer *cmd_buffer, struct anv_execbuf *exec) relocate_cmd_buffer() argument
1584 anv_execbuf_add_syncobj(struct anv_device *device, struct anv_execbuf *exec, uint32_t syncobj, uint32_t flags, uint64_t timeline_value) anv_execbuf_add_syncobj() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Dir2_assemble.c335 instr_cf_alloc_t *alloc, instr_cf_exec_t *exec) in write_cfs()
337 assert(exec->count); in write_cfs()
347 cfs[cf_idx++].exec = *exec; in write_cfs()
348 exec->address += exec->count; in write_cfs()
349 exec->serialize = 0; in write_cfs()
350 exec->count = 0; in write_cfs()
368 instr_cf_exec_t exec = {.opc = EXEC}; in assemble() local
397 /* flush any exec c in assemble()
334 write_cfs(struct ir2_context *ctx, instr_cf_t *cfs, unsigned cf_idx, instr_cf_alloc_t *alloc, instr_cf_exec_t *exec) write_cfs() argument
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dnumbertest.h45 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
107 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
215 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
228 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
238 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
256 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
271 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
288 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
305 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = 0) override;
332 void runIndexedTest(int32_t index, UBool exec, cons
[all...]
H A Dallcoll.cpp196 void CollationDummyTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) in runIndexedTest() argument
198 if (exec) logln("TestSuite CollationDummyTest: "); in runIndexedTest()
201 case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break; in runIndexedTest()
202 case 1: name = "TestSecondary"; if (exec) TestSecondary(/* par */); break; in runIndexedTest()
203 case 2: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break; in runIndexedTest()
204 case 3: name = "TestExtra"; if (exec) TestExtra(/* par */); break; in runIndexedTest()
205 case 4: name = "TestIdentical"; if (exec) TestIdentical(/* par */); break; in runIndexedTest()
206 case 5: name = "TestJB581"; if (exec) TestJB581(/* par */); break; in runIndexedTest()
H A Dficoll.cpp88 void CollationFinnishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) in runIndexedTest() argument
90 if (exec) logln("TestSuite CollationFinnishTest: "); in runIndexedTest()
92 if((!myCollation) && exec) { in runIndexedTest()
98 case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break; in runIndexedTest()
99 case 1: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break; in runIndexedTest()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/
H A Dnouveau_exec.c67 * DRM_NOUVEAU_EXEC ioctl is called to submit an exec job.
94 struct drm_exec *exec = &job->exec; in nouveau_exec_job_submit() local
105 drm_exec_init(exec, DRM_EXEC_INTERRUPTIBLE_WAIT | in nouveau_exec_job_submit()
107 drm_exec_until_all_locked(exec) { in nouveau_exec_job_submit()
114 ret = drm_exec_prepare_obj(exec, va->gem.obj, 1); in nouveau_exec_job_submit()
115 drm_exec_retry_on_contention(exec); in nouveau_exec_job_submit()
122 drm_exec_for_each_locked_object(exec, index, obj) { in nouveau_exec_job_submit()
135 drm_exec_fini(exec); in nouveau_exec_job_submit()
143 struct drm_exec *exec in nouveau_exec_job_armed_submit() local
[all...]
/third_party/skia/infra/bots/task_drivers/recreate_skps/
H A Drecreate_skps.go18 "go.skia.org/infra/go/exec"
48 if _, err := exec.RunCwd(ctx, ".", "which", "git"); err != nil {
51 if _, err := exec.RunCwd(ctx, ".", "git", "--version"); err != nil {
111 if _, err := exec.RunCwd(ctx, checkoutRoot, cmd...); err != nil {
115 if _, err := exec.RunCwd(ctx, checkoutRoot, "vpython", "-u", filepath.Join(depotToolsDir, "gclient.py"), "runhooks"); err != nil {
175 if _, err := exec.RunCwd(ctx, skiaDir, "python3", filepath.Join("bin", "fetch-sk")); err != nil {
216 if _, err := exec.RunCommand(ctx, &exec.Command{
232 if _, err := exec.RunCwd(ctx, chromiumDir, ninja, "-C", outDir, "chrome"); err != nil {
255 command := &exec
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/kernel/
H A Dvc4_drv.h36 /* This is the array of BOs that were looked up at the start of exec.
162 struct vc4_exec_info *exec);
165 vc4_validate_shader_recs(struct drm_device *dev, struct vc4_exec_info *exec);
170 struct drm_gem_cma_object *vc4_use_bo(struct vc4_exec_info *exec,
173 int vc4_get_rcl(struct drm_device *dev, struct vc4_exec_info *exec);
175 bool vc4_check_tex_size(struct vc4_exec_info *exec,

Completed in 15 milliseconds

12345678910>>...38