Home
last modified time | relevance | path

Searched refs:exec (Results 1 - 25 of 1839) sorted by relevance

12345678910>>...74

/third_party/mesa3d/src/mesa/vbo/
H A Dvbo_exec_draw.c41 vbo_exec_debug_verts(struct vbo_exec_context *exec) in vbo_exec_debug_verts() argument
43 GLuint count = exec->vtx.vert_count; in vbo_exec_debug_verts()
49 exec->vtx.prim_count, in vbo_exec_debug_verts()
50 exec->vtx.vertex_size); in vbo_exec_debug_verts()
52 for (i = 0 ; i < exec->vtx.prim_count ; i++) { in vbo_exec_debug_verts()
55 _mesa_lookup_prim_by_nr(exec->vtx.mode[i]), in vbo_exec_debug_verts()
56 exec->vtx.draw[i].start, in vbo_exec_debug_verts()
57 exec->vtx.draw[i].start + exec->vtx.draw[i].count, in vbo_exec_debug_verts()
58 exec in vbo_exec_debug_verts()
65 vbo_exec_copy_vertices(struct vbo_exec_context *exec) vbo_exec_copy_vertices() argument
90 struct vbo_exec_context *exec = &vbo->exec; vbo_exec_bind_arrays() local
158 vbo_exec_vtx_unmap(struct vbo_exec_context *exec) vbo_exec_vtx_unmap() argument
189 vbo_exec_buffer_has_space(struct vbo_exec_context *exec) vbo_exec_buffer_has_space() argument
201 vbo_exec_vtx_map(struct vbo_exec_context *exec) vbo_exec_vtx_map() argument
302 vbo_exec_vtx_flush(struct vbo_exec_context *exec) vbo_exec_vtx_flush() argument
[all...]
H A Dvbo_exec_api.c55 vbo_reset_all_attr(struct vbo_exec_context *exec);
64 vbo_exec_wrap_buffers(struct vbo_exec_context *exec) in vbo_exec_wrap_buffers() argument
66 if (exec->vtx.prim_count == 0) { in vbo_exec_wrap_buffers()
67 exec->vtx.copied.nr = 0; in vbo_exec_wrap_buffers()
68 exec->vtx.vert_count = 0; in vbo_exec_wrap_buffers()
69 exec->vtx.buffer_ptr = exec->vtx.buffer_map; in vbo_exec_wrap_buffers()
72 struct gl_context *ctx = gl_context_from_vbo_exec(exec); in vbo_exec_wrap_buffers()
73 unsigned last = exec->vtx.prim_count - 1; in vbo_exec_wrap_buffers()
74 struct pipe_draw_start_count_bias *last_draw = &exec in vbo_exec_wrap_buffers()
131 vbo_exec_vtx_wrap(struct vbo_exec_context *exec) vbo_exec_vtx_wrap() argument
164 vbo_exec_copy_to_current(struct vbo_exec_context *exec) vbo_exec_copy_to_current() argument
249 vbo_exec_wrap_upgrade_vertex(struct vbo_exec_context *exec, GLuint attr, GLuint newSize, GLenum newType) vbo_exec_wrap_upgrade_vertex() argument
421 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; vbo_exec_fixup_vertex() local
679 vbo_exec_FlushVertices_internal(struct vbo_exec_context *exec, unsigned flags) vbo_exec_FlushVertices_internal() argument
713 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; _mesa_EvalCoord1f() local
741 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; _mesa_EvalCoord2f() local
818 struct vbo_exec_context *exec = &vbo->exec; _mesa_Begin() local
873 try_vbo_merge(struct vbo_exec_context *exec) try_vbo_merge() argument
908 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; _mesa_End() local
1094 vbo_reset_all_attr(struct vbo_exec_context *exec) vbo_reset_all_attr() argument
1111 vbo_exec_vtx_init(struct vbo_exec_context *exec) vbo_exec_vtx_init() argument
1126 vbo_exec_vtx_destroy(struct vbo_exec_context *exec) vbo_exec_vtx_destroy() argument
1167 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; vbo_exec_FlushVertices() local
[all...]
H A Dvbo_exec_eval.c37 static void clear_active_eval1( struct vbo_exec_context *exec, GLuint attr ) in clear_active_eval1() argument
39 assert(attr < ARRAY_SIZE(exec->eval.map1)); in clear_active_eval1()
40 exec->eval.map1[attr].map = NULL; in clear_active_eval1()
43 static void clear_active_eval2( struct vbo_exec_context *exec, GLuint attr ) in clear_active_eval2() argument
45 assert(attr < ARRAY_SIZE(exec->eval.map2)); in clear_active_eval2()
46 exec->eval.map2[attr].map = NULL; in clear_active_eval2()
49 static void set_active_eval1( struct vbo_exec_context *exec, GLuint attr, GLuint dim, in set_active_eval1() argument
52 assert(attr < ARRAY_SIZE(exec->eval.map1)); in set_active_eval1()
53 if (!exec->eval.map1[attr].map) { in set_active_eval1()
54 exec in set_active_eval1()
59 set_active_eval2( struct vbo_exec_context *exec, GLuint attr, GLuint dim, struct gl_2d_map *map ) set_active_eval2() argument
126 vbo_exec_do_EvalCoord1f(struct vbo_exec_context *exec, GLfloat u) vbo_exec_do_EvalCoord1f() argument
172 vbo_exec_do_EvalCoord2f( struct vbo_exec_context *exec, GLfloat u, GLfloat v ) vbo_exec_do_EvalCoord2f() argument
[all...]
/third_party/jerryscript/tests/jerry/
H A Dregexp-capture-groups.js19 assert (r.exec ("a") == ",");
22 assert (r.exec ("a") == "a,a");
25 assert (r.exec ("abc") == "abc,ab,a");
28 assert (r.exec ("b")[0] == "");
29 assert (r.exec ("b")[1] == undefined);
30 assert (r.exec ("aaaa") == "aaaa,a");
33 assert (r.exec ("aaaa") == "aaaa,a");
36 assert (r.exec ("aaaa") == "aaaa,a");
39 assert (r.exec ("a") == "a,a");
40 assert (r.exec ("a
[all...]
H A Dregexp-non-capture-groups.js19 assert (r.exec ("a") == "");
22 assert (r.exec ("a") == "a");
25 assert (r.exec ("abc") == "abc");
28 assert (r.exec ("b") == "");
29 assert (r.exec ("aaaa") == "aaaa");
32 assert (r.exec ("aaaa") == "aaaa");
35 assert (r.exec ("aaaa") == "aaaa");
38 assert (r.exec ("a") == "a");
39 assert (r.exec ("aa") == "aa");
40 assert (r.exec ("aaa
[all...]
H A Dregexp-simple-atom-and-iterations.js18 assert (r.exec ("a") == "a");
19 assert (r.exec ("b") == undefined);
22 assert (r.exec ("abc") == "abc");
25 assert (r.exec ("aaa") == "aaa");
26 assert (r.exec ("b") == "");
29 assert (r.exec ("aaa") == "aaa");
30 assert (r.exec ("b") == undefined);
33 assert (r.exec ("a") == "a");
34 assert (r.exec ("ab") == "ab");
35 assert (r.exec ("abbb
[all...]
H A Dregexp-assertions.js17 t = new RegExp ("^alma$").exec("alma");
20 t = new RegExp ("^alma$").exec("almaa");
23 t = new RegExp ("^alma$").exec("aalma");
26 t = new RegExp ("^alma").exec("alma");
29 t = new RegExp ("^alma").exec("almaa");
32 t = new RegExp ("^alma").exec("aalma");
35 t = new RegExp ("alma$").exec("alma");
38 t = new RegExp ("alma$").exec("almaa");
41 t = new RegExp ("alma$").exec("aalma");
44 t = new RegExp ("\\bis\\b").exec("Thi
[all...]
H A Dregexp-character-class.js17 r = new RegExp ("[abc]*").exec("aaabbcccabcacbacabacbacab");
20 r = new RegExp ("[abc]*").exec("aaabbcccabdcacb");
23 r = new RegExp ("[abc]*").exec("defghjklmnopqrstuvwxyz");
26 r = new RegExp ("[a-z]*").exec("abcdefghjklmnopqrstuvwxyz");
29 r = new RegExp ("[A-Z]*").exec("abcdefghjklmnopqrstuvwxyz");
32 r = new RegExp ("[^a-z]*").exec("abcdefghjklmnopqrstuvwxyz");
35 r = new RegExp ("[^A-Z]*").exec("abcdefghjklmnopqrstuvwxyz");
38 r = new RegExp ("\\d*").exec("abcdefghjklmnopqrstuvwxyz");
41 r = new RegExp ("\\D*").exec("abcdefghjklmnopqrstuvwxyz");
44 r = new RegExp ("\\w*").exec("abcdefghjklmnopqrstuvwxy
[all...]
H A Dregexp-alternatives.js18 assert (r.exec("a") == "a");
21 assert (r.exec("b") == "b");
24 assert (r.exec("b") == "b");
27 assert (r.exec("c") == "c");
30 assert (r.exec("") == undefined);
33 assert (r.exec("a") == "a");
36 assert (r.exec("b") == "b");
39 assert (r.exec("c") == "c");
42 assert (r.exec("d") == "d");
45 assert (r.exec("
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dregexp-unicode.js15 var result = /\0/.exec("\u0000");
19 result = /\0/u.exec("\u0000");
23 result = /\000/.exec("\u0000");
28 new RegExp("\\000", 'u').exec("\u0000");
34 result = /\0000/.exec("\u0000\u0030");
38 result = /\377/.exec("\u00ff");
43 new RegExp("\\377", 'u').exec("\u00ff");
49 result = /\3777/.exec("\u00ff\u0037");
54 new RegExp("\\3777", 'u').exec("\u00ff\u0037");
60 result = /\400/.exec("\u002
[all...]
H A Dregexp-flags.js17 var m = r.exec("?");
22 assert (r.exec("E?E")[0] === 'E');
23 assert (r.exec("E?E")[0] === '?');
24 assert (r.exec("E?E")[0] === 'E');
33 assert (/\udc96/.exec("\ud803\udc96")[0] === '\udc96');
34 assert (/\udc96/u.exec("\ud803\udc96") === null);
35 assert (/\udc96/u.exec("\udc96")[0] === '\udc96');
37 assert (/\ud803/.exec("\ud803\udc96")[0] === '\ud803');
38 assert (/\ud803/u.exec("\ud803\udc96") === null);
39 assert (/\ud803/u.exec("\ud80
[all...]
H A Dsymbol-replace.js71 get exec() {
72 throw "abrupt exec"
77 assert (e === "abrupt exec");
82 exec: RegExp.prototype.exec
91 exec: 42
100 exec: () => {
101 throw "abrupt exec result"
106 assert (e === "abrupt exec result");
111 exec
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/kernel/
H A Dvc4_gem.c33 vc4_get_bcl(struct drm_device *dev, struct vc4_exec_info *exec) in vc4_get_bcl() argument
35 struct drm_vc4_submit_cl *args = exec->args; in vc4_get_bcl()
52 DRM_ERROR("overflow in exec arguments\n"); in vc4_get_bcl()
71 exec->shader_rec_u = temp + shader_rec_offset; in vc4_get_bcl()
72 exec->uniforms_u = temp + uniforms_offset; in vc4_get_bcl()
73 exec->shader_state = temp + exec_size; in vc4_get_bcl()
74 exec->shader_state_size = args->shader_rec_count; in vc4_get_bcl()
84 ret = copy_from_user(exec->shader_rec_u, in vc4_get_bcl()
92 ret = copy_from_user(exec->uniforms_u, in vc4_get_bcl()
100 exec in vc4_get_bcl()
140 vc4_cl_validate(struct drm_device *dev, struct vc4_exec_info *exec) vc4_cl_validate() argument
[all...]
H A Dvc4_validate.c46 struct vc4_exec_info *exec, \
97 vc4_use_bo(struct vc4_exec_info *exec, uint32_t hindex) in vc4_use_bo() argument
102 if (hindex >= exec->bo_count) { in vc4_use_bo()
104 hindex, exec->bo_count); in vc4_use_bo()
107 obj = exec->bo[hindex]; in vc4_use_bo()
120 vc4_use_handle(struct vc4_exec_info *exec, uint32_t gem_handles_packet_index) in vc4_use_handle() argument
122 return vc4_use_bo(exec, exec->bo_index[gem_handles_packet_index]); in vc4_use_handle()
126 validate_bin_pos(struct vc4_exec_info *exec, void *untrusted, uint32_t pos) in validate_bin_pos() argument
131 return (untrusted - 1 == exec in validate_bin_pos()
150 vc4_check_tex_size(struct vc4_exec_info *exec, struct drm_gem_cma_object *fbo, uint32_t offset, uint8_t tiling_format, uint32_t width, uint32_t height, uint8_t cpp) vc4_check_tex_size() argument
472 vc4_validate_bin_cl(struct drm_device *dev, void *validated, void *unvalidated, struct vc4_exec_info *exec) vc4_validate_bin_cl() argument
553 reloc_tex(struct vc4_exec_info *exec, void *uniform_data_u, struct vc4_texture_sample_info *sample, uint32_t texture_handle_index) reloc_tex() argument
732 validate_gl_shader_rec(struct drm_device *dev, struct vc4_exec_info *exec, struct vc4_shader_state *state) validate_gl_shader_rec() argument
910 vc4_validate_shader_recs(struct drm_device *dev, struct vc4_exec_info *exec) vc4_validate_shader_recs() argument
[all...]
H A Dvc4_render_cl.c92 static uint32_t vc4_full_res_offset(struct vc4_exec_info *exec, in vc4_full_res_offset() argument
98 (DIV_ROUND_UP(exec->args->width, exec->tile_width) * y + x); in vc4_full_res_offset()
116 static void emit_tile(struct vc4_exec_info *exec, in emit_tile() argument
120 struct drm_vc4_submit_cl *args = exec->args; in emit_tile()
132 vc4_full_res_offset(exec, setup->color_read, in emit_tile()
154 vc4_full_res_offset(exec, setup->zs_read, in emit_tile()
178 rcl_u32(setup, (exec->tile_bo->paddr + in emit_tile()
179 exec->tile_alloc_offset + in emit_tile()
180 (y * exec in emit_tile()
247 vc4_create_rcl_bo(struct drm_device *dev, struct vc4_exec_info *exec, struct vc4_rcl_setup *setup) vc4_create_rcl_bo() argument
377 vc4_full_res_bounds_check(struct vc4_exec_info *exec, struct drm_gem_cma_object *obj, struct drm_vc4_submit_rcl_surface *surf) vc4_full_res_bounds_check() argument
404 vc4_rcl_msaa_surface_setup(struct vc4_exec_info *exec, struct drm_gem_cma_object **obj, struct drm_vc4_submit_rcl_surface *surf) vc4_rcl_msaa_surface_setup() argument
428 vc4_rcl_surface_setup(struct vc4_exec_info *exec, struct drm_gem_cma_object **obj, struct drm_vc4_submit_rcl_surface *surf) vc4_rcl_surface_setup() argument
523 vc4_rcl_render_config_surface_setup(struct vc4_exec_info *exec, struct vc4_rcl_setup *setup, struct drm_gem_cma_object **obj, struct drm_vc4_submit_rcl_surface *surf) vc4_rcl_render_config_surface_setup() argument
581 vc4_get_rcl(struct drm_device *dev, struct vc4_exec_info *exec) vc4_get_rcl() argument
[all...]
/foundation/multimedia/media_foundation/engine/include/foundation/
H A Dlog.h118 #define NOK_RETURN(exec) \
120 Status returnValue = (exec); \
129 #define NOK_LOG(exec) \
131 Status returnValue = (exec); \
138 // If exec not return zero, then record the error code, especially when call system C function.
140 #define NZERO_LOG(exec) \
142 int returnValue = (exec); \
144 MEDIA_LOG_E("NZERO_LOG when call (" #exec "), return " PUBLIC_LOG_D32, returnValue); \
150 #define NZERO_RETURN(exec) \
152 int returnValue = (exec); \
[all...]
/foundation/multimedia/media_foundation/interface/inner_api/common/
H A Dlog.h194 #define NOK_RETURN(exec) \
196 Status returnValue = (exec); \
205 #define NOK_LOG(exec) \
207 Status returnValue = (exec); \
214 // If exec not return zero, then record the error code, especially when call system C function.
216 #define NZERO_LOG(exec) \
218 int returnValue = (exec); \
220 MEDIA_LOG_E("NZERO_LOG when call (" #exec "), return " PUBLIC_LOG_D32, returnValue); \
226 #define NZERO_RETURN(exec) \
228 int returnValue = (exec); \
[all...]
/third_party/mesa3d/src/amd/compiler/
H A Daco_insert_exec_mask.cpp77 exec; /* Vector of exec masks. Either a temporary or const -1. */ member
104 * epilog without considering the exec mask. in needs_exact()
181 return Operand(exec, t.regClass()); in get_exec_op()
189 if (ctx.info[idx].exec.back().second & mask_type_wqm) in transition_to_WQM()
191 if (ctx.info[idx].exec.back().second & mask_type_global) { in transition_to_WQM()
192 Operand exec_mask = ctx.info[idx].exec.back().first; in transition_to_WQM()
194 exec_mask = bld.copy(bld.def(bld.lm), Operand(exec, bld.lm)); in transition_to_WQM()
195 ctx.info[idx].exec.back().first = exec_mask; in transition_to_WQM()
198 exec_mask = bld.sop1(Builder::s_wqm, Definition(exec, bl in transition_to_WQM()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Ditmajor.cpp45 if(exec) { \
52 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) in runIndexedTest() argument
56 if (exec) { in runIndexedTest()
65 if (exec) { in runIndexedTest()
75 if (exec) { in runIndexedTest()
85 if (exec) { in runIndexedTest()
95 if (exec) { in runIndexedTest()
105 if (exec) { in runIndexedTest()
115 if (exec) { in runIndexedTest()
124 if (exec) { in runIndexedTest()
216 runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) runIndexedTest() argument
[all...]
/foundation/multimedia/media_foundation/engine/include/pipeline/core/
H A Derror_code.h52 #define FAIL_RETURN(exec) \
54 ErrorCode returnValue = (exec); \
63 #define FAIL_RETURN_MSG_IMPL(loglevel, exec, fmt, args...) \
65 ErrorCode returnValue = (exec); \
74 #define FAIL_RETURN_MSG(exec, fmt, args...) FAIL_RETURN_MSG_IMPL(MEDIA_LOG_E, exec, fmt, ##args)
78 #define FAIL_RETURN_MSG_W(exec, fmt, args...) FAIL_RETURN_MSG_IMPL(MEDIA_LOG_W, exec, fmt, ##args)
82 #define FAIL_LOG(exec) \
84 ErrorCode returnValue = (exec); \
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
H A DAsNode.h28 static ANGLE_INLINE TIntermNode *exec(TIntermNode *node) { return node; } in exec() function
34 static ANGLE_INLINE TIntermTyped *exec(TIntermNode *node) in exec() function
43 static ANGLE_INLINE TIntermSymbol *exec(TIntermNode *node) in exec() function
52 static ANGLE_INLINE TIntermConstantUnion *exec(TIntermNode *node) in exec() function
61 static ANGLE_INLINE TIntermFunctionPrototype *exec(TIntermNode *node) in exec() function
70 static ANGLE_INLINE TIntermPreprocessorDirective *exec(TIntermNode *node) in exec() function
79 static ANGLE_INLINE TIntermSwizzle *exec(TIntermNode *node) in exec() function
88 static ANGLE_INLINE TIntermBinary *exec(TIntermNode *node) in exec() function
97 static ANGLE_INLINE TIntermUnary *exec(TIntermNode *node) in exec() function
106 static ANGLE_INLINE TIntermTernary *exec(TIntermNod function
115 static ANGLE_INLINE TIntermIfElse *exec(TIntermNode *node) exec() function
124 static ANGLE_INLINE TIntermSwitch *exec(TIntermNode *node) exec() function
133 static ANGLE_INLINE TIntermCase *exec(TIntermNode *node) exec() function
142 static ANGLE_INLINE TIntermFunctionDefinition *exec(TIntermNode *node) exec() function
151 static ANGLE_INLINE TIntermAggregate *exec(TIntermNode *node) exec() function
160 static ANGLE_INLINE TIntermBlock *exec(TIntermNode *node) exec() function
169 static ANGLE_INLINE TIntermGlobalQualifierDeclaration *exec(TIntermNode *node) exec() function
178 static ANGLE_INLINE TIntermDeclaration *exec(TIntermNode *node) exec() function
187 static ANGLE_INLINE TIntermLoop *exec(TIntermNode *node) exec() function
196 static ANGLE_INLINE TIntermBranch *exec(TIntermNode *node) exec() function
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_simulator.c240 struct vc4_exec_info *exec) in vc4_simulator_pin_bos()
242 struct drm_vc4_submit_cl *args = exec->args; in vc4_simulator_pin_bos()
245 exec->bo_count = args->bo_handle_count; in vc4_simulator_pin_bos()
246 exec->bo = calloc(exec->bo_count, sizeof(void *)); in vc4_simulator_pin_bos()
247 for (int i = 0; i < exec->bo_count; i++) { in vc4_simulator_pin_bos()
255 exec->bo[i] = obj; in vc4_simulator_pin_bos()
261 vc4_simulator_unpin_bos(struct vc4_exec_info *exec) in vc4_simulator_unpin_bos() argument
263 for (int i = 0; i < exec->bo_count; i++) { in vc4_simulator_unpin_bos()
264 struct drm_gem_cma_object *obj = exec in vc4_simulator_unpin_bos()
239 vc4_simulator_pin_bos(struct vc4_simulator_file *file, struct vc4_exec_info *exec) vc4_simulator_pin_bos() argument
281 vc4_dump_to_file(struct vc4_exec_info *exec) vc4_dump_to_file() argument
371 struct vc4_exec_info exec; vc4_simulator_submit_cl_ioctl() local
[all...]
/third_party/node/deps/npm/test/lib/commands/
H A Dview.js286 await view.exec(['https://github.com/npm/green'])
292 await view.exec(['green@1.0.0'])
298 await view.exec(['green@1.0.0'])
304 await view.exec(['black@1.0.0'])
310 await view.exec(['pink@1.0.0'])
316 await view.exec(['orange@1.0.0'])
322 await view.exec(['orange', 'versions'])
328 await view.exec(['brown'])
334 await view.exec(['blue@1.0.0'])
340 await view.exec(['blu
[all...]
/third_party/protobuf/js/
H A Dgulpfile.js5 function exec(command, cb) { function
57 exec(protoc + ' --js_out=one_output_file_per_input_file,binary:. -I ../src -I . ' + wellKnownTypes.join(' '),
66 exec(protoc + ' --js_out=library=testproto_libs1,binary:. -I ../src -I . ' + group1Protos.join(' '),
75 exec(protoc + ' --experimental_allow_proto3_optional --js_out=library=testproto_libs2,binary:. -I ../src -I . -I commonjs ' + group2Protos.join(' '),
84 exec('mkdir -p commonjs_out && ' + protoc + ' --js_out=import_style=commonjs,binary:commonjs_out -I ../src ' + wellKnownTypes.join(' '),
93 exec('mkdir -p commonjs_out && ' + protoc + ' --js_out=import_style=commonjs,binary:commonjs_out -I ../src -I commonjs -I . ' + group1Protos.join(' '),
102 exec('mkdir -p commonjs_out && ' + protoc + ' --experimental_allow_proto3_optional --js_out=import_style=commonjs,binary:commonjs_out -I ../src -I commonjs -I . ' + group2Protos.join(' '),
111 exec('mkdir -p commonjs_out/node_modules/google-protobuf && ' + protoc + ' --js_out=import_style=commonjs,binary:commonjs_out/node_modules/google-protobuf -I ../src ' + wellKnownTypes.join(' '),
120 exec(protoc + ' --js_out=import_style=commonjs,binary:. -I ../src ' + wellKnownTypes.join(' '),
128 exec('mkdi
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A Djs_execution_scope_defines.h20 #define JAVASCRIPT_EXECUTION_SCOPE(exec) \
21 panda::LocalScope socpe(exec.vm_);
28 #define CHECK_JAVASCRIPT_SCOPE(exec, ...) \
29 if (JsiDeclarativeEngineInstance::GetCurrentRuntime() == nullptr || exec.vm_ == nullptr) \
31 #define JAVASCRIPT_EXECUTION_SCOPE_WITH_CHECK(exec, ...) \
32 CHECK_JAVASCRIPT_SCOPE(exec, __VA_ARGS__) \
33 JAVASCRIPT_EXECUTION_SCOPE(exec)
35 #define JAVASCRIPT_EXECUTION_SCOPE(exec)
38 #define JAVASCRIPT_EXECUTION_SCOPE_WITH_CHECK(exec, ...)

Completed in 9 milliseconds

12345678910>>...74