Lines Matching refs:GDAPI

63 void GDAPI godot_array_new(godot_array *r_dest);
64 void GDAPI godot_array_new_copy(godot_array *r_dest, const godot_array *p_src);
65 void GDAPI godot_array_new_pool_color_array(godot_array *r_dest, const godot_pool_color_array *p_pc…
66 void GDAPI godot_array_new_pool_vector3_array(godot_array *r_dest, const godot_pool_vector3_array *…
67 void GDAPI godot_array_new_pool_vector2_array(godot_array *r_dest, const godot_pool_vector2_array *…
68 void GDAPI godot_array_new_pool_string_array(godot_array *r_dest, const godot_pool_string_array *p_…
69 void GDAPI godot_array_new_pool_real_array(godot_array *r_dest, const godot_pool_real_array *p_pra);
70 void GDAPI godot_array_new_pool_int_array(godot_array *r_dest, const godot_pool_int_array *p_pia);
71 void GDAPI godot_array_new_pool_byte_array(godot_array *r_dest, const godot_pool_byte_array *p_pba);
73 void GDAPI godot_array_set(godot_array *p_self, const godot_int p_idx, const godot_variant *p_value…
75 godot_variant GDAPI godot_array_get(const godot_array *p_self, const godot_int p_idx);
77 godot_variant GDAPI *godot_array_operator_index(godot_array *p_self, const godot_int p_idx);
79 const godot_variant GDAPI *godot_array_operator_index_const(const godot_array *p_self, const godot_…
81 void GDAPI godot_array_append(godot_array *p_self, const godot_variant *p_value);
83 void GDAPI godot_array_clear(godot_array *p_self);
85 godot_int GDAPI godot_array_count(const godot_array *p_self, const godot_variant *p_value);
87 godot_bool GDAPI godot_array_empty(const godot_array *p_self);
89 void GDAPI godot_array_erase(godot_array *p_self, const godot_variant *p_value);
91 godot_variant GDAPI godot_array_front(const godot_array *p_self);
93 godot_variant GDAPI godot_array_back(const godot_array *p_self);
95 godot_int GDAPI godot_array_find(const godot_array *p_self, const godot_variant *p_what, const godo…
97 godot_int GDAPI godot_array_find_last(const godot_array *p_self, const godot_variant *p_what);
99 godot_bool GDAPI godot_array_has(const godot_array *p_self, const godot_variant *p_value);
101 godot_int GDAPI godot_array_hash(const godot_array *p_self);
103 void GDAPI godot_array_insert(godot_array *p_self, const godot_int p_pos, const godot_variant *p_va…
105 void GDAPI godot_array_invert(godot_array *p_self);
107 godot_variant GDAPI godot_array_pop_back(godot_array *p_self);
109 godot_variant GDAPI godot_array_pop_front(godot_array *p_self);
111 void GDAPI godot_array_push_back(godot_array *p_self, const godot_variant *p_value);
113 void GDAPI godot_array_push_front(godot_array *p_self, const godot_variant *p_value);
115 void GDAPI godot_array_remove(godot_array *p_self, const godot_int p_idx);
117 void GDAPI godot_array_resize(godot_array *p_self, const godot_int p_size);
119 godot_int GDAPI godot_array_rfind(const godot_array *p_self, const godot_variant *p_what, const god…
121 godot_int GDAPI godot_array_size(const godot_array *p_self);
123 void GDAPI godot_array_sort(godot_array *p_self);
125 void GDAPI godot_array_sort_custom(godot_array *p_self, godot_object *p_obj, const godot_string *p_…
127 godot_int GDAPI godot_array_bsearch(godot_array *p_self, const godot_variant *p_value, const godot_…
129 godot_int GDAPI godot_array_bsearch_custom(godot_array *p_self, const godot_variant *p_value, godot…
131 void GDAPI godot_array_destroy(godot_array *p_self);
133 godot_array GDAPI godot_array_duplicate(const godot_array *p_self, const godot_bool p_deep);
135 godot_array GDAPI godot_array_slice(const godot_array *p_self, const godot_int p_begin, const godot…
137 godot_variant GDAPI godot_array_max(const godot_array *p_self);
139 godot_variant GDAPI godot_array_min(const godot_array *p_self);
141 void GDAPI godot_array_shuffle(godot_array *p_self);