Searched refs:func_cnt (Results 1 – 9 of 9) sorted by relevance
/reactos/dll/win32/msxml3/ |
H A D | dispex.c | 82 DWORD func_cnt; member 215 for(i=0; i < iter->func_cnt; i++) in release_typelib() 238 if(data->func_cnt && data->funcs[data->func_cnt-1].id == id) in add_func_info() 241 if(data->func_cnt == *size) in add_func_info() 248 data->funcs[data->func_cnt].id = id; in add_func_info() 251 data->func_cnt++; in add_func_info() 282 data->func_cnt = 0; in preprocess_dispex_data() 305 if(!data->func_cnt) { in preprocess_dispex_data() 308 }else if(data->func_cnt != size) { in preprocess_dispex_data() 437 max = data->func_cnt-1; in DispatchEx_GetDispID() [all …]
|
/reactos/dll/win32/mshtml/ |
H A D | dispex.c | 49 DWORD func_cnt; member 227 if(data->func_cnt == *size) in add_func_info() 235 data->func_cnt++; in add_func_info() 337 data->func_cnt = 0; in preprocess_dispex_data() 365 if(!data->func_cnt) { in preprocess_dispex_data() 391 unsigned i, func_cnt; in get_dispids() local 408 func_cnt = attr->cFuncs; in get_dispids() 417 for(i=0; i < func_cnt; i++) { in get_dispids() 434 *ret_size = func_cnt; in get_dispids() 853 max = data->func_cnt-1; in get_builtin_func() [all …]
|
/reactos/dll/win32/vbscript/ |
H A D | vbdisp.c | 31 return id < This->desc->func_cnt; in is_func_id() 38 for(i = invoke_type == VBDISP_ANY ? 0 : 1; i < This->desc->func_cnt; i++) { in get_func_id() 71 *id = i + This->desc->func_cnt; in vbdisp_get_id() 229 if(id >= This->desc->prop_cnt + This->desc->func_cnt) in invoke_vbdisp() 232 TRACE("%p->%s\n", This, debugstr_w(This->desc->props[id - This->desc->func_cnt].name)); in invoke_vbdisp() 233 …return invoke_variant_prop(This->desc->ctx, This->props+(id-This->desc->func_cnt), flags, params, … in invoke_vbdisp()
|
H A D | compile.c | 1593 for(i=0; i < class_desc->func_cnt; i++) { in lookup_class_funcs() 1626 class_desc->func_cnt = 1; /* always allocate slot for default getter */ in compile_class() 1634 class_desc->func_cnt++; in compile_class() 1637 class_desc->funcs = compiler_alloc(ctx->code, class_desc->func_cnt*sizeof(*class_desc->funcs)); in compile_class() 1640 memset(class_desc->funcs, 0, class_desc->func_cnt*sizeof(*class_desc->funcs)); in compile_class() 1946 desc->func_cnt = 1; in compile_procedure()
|
H A D | vbscript.h | 102 unsigned func_cnt; member
|
/reactos/dll/win32/jscript/ |
H A D | engine.h | 154 unsigned func_cnt; member
|
H A D | compile.c | 1879 expr->func_id = ctx->func->func_cnt++; in visit_function_expression() 2350 func->funcs = compiler_alloc(ctx->code, func->func_cnt * sizeof(*func->funcs)); in compile_function() 2353 memset(func->funcs, 0, func->func_cnt * sizeof(*func->funcs)); in compile_function() 2386 assert(i == func->func_cnt); in compile_function()
|
H A D | function.c | 961 if(code->global_code.func_cnt != 1 || code->global_code.var_cnt != 1) { in construct_function()
|
H A D | engine.c | 2935 for(i = 0; i < frame->function->func_cnt; i++) { in setup_scope() 2965 for(i = 0; i < function->func_cnt; i++) { in exec_source()
|