Lines Matching full:self
68 static VALUE h_init (VALUE self)
70 return self;
90 static VALUE h_get_attr (VALUE self, VALUE oName)
98 Data_Get_Struct(self, t_hdfh, hdfh);
113 static VALUE h_set_attr(VALUE self, VALUE oName, VALUE oKey, VALUE oValue)
119 Data_Get_Struct(self, t_hdfh, hdfh);
131 return self;
134 static VALUE h_set_value (VALUE self, VALUE oName, VALUE oValue)
140 Data_Get_Struct(self, t_hdfh, hdfh);
156 return self;
159 static VALUE h_get_int_value (VALUE self, VALUE oName, VALUE oDefault)
166 Data_Get_Struct(self, t_hdfh, hdfh);
176 static VALUE h_get_value (VALUE self, VALUE oName, VALUE oDefault)
183 Data_Get_Struct(self, t_hdfh, hdfh);
192 static VALUE h_get_child (VALUE self, VALUE oName)
199 Data_Get_Struct(self, t_hdfh, hdfh);
207 hdfh_new->top=self;
214 static VALUE h_get_obj (VALUE self, VALUE oName)
221 Data_Get_Struct(self, t_hdfh, hdfh);
230 hdfh_new->top=self;
237 static VALUE h_get_node (VALUE self, VALUE oName)
245 Data_Get_Struct(self, t_hdfh, hdfh);
253 hdfh_new->top=self;
261 static VALUE h_obj_child (VALUE self)
267 Data_Get_Struct(self, t_hdfh, hdfh);
275 hdfh_new->top=self;
282 static VALUE h_obj_next (VALUE self)
288 Data_Get_Struct(self, t_hdfh, hdfh);
296 hdfh_new->top=self;
303 static VALUE h_obj_top (VALUE self)
309 Data_Get_Struct(self, t_hdfh, hdfh);
317 hdfh_new->top=self;
324 static VALUE h_obj_name (VALUE self)
330 Data_Get_Struct(self, t_hdfh, hdfh);
341 static VALUE h_obj_attr (VALUE self)
348 Data_Get_Struct(self, t_hdfh, hdfh);
362 static VALUE h_obj_value (VALUE self)
368 Data_Get_Struct(self, t_hdfh, hdfh);
379 static VALUE h_read_file (VALUE self, VALUE oPath)
385 Data_Get_Struct(self, t_hdfh, hdfh);
392 return self;
395 static VALUE h_write_file (VALUE self, VALUE oPath)
401 Data_Get_Struct(self, t_hdfh, hdfh);
409 return self;
412 static VALUE h_write_file_atomic (VALUE self, VALUE oPath)
418 Data_Get_Struct(self, t_hdfh, hdfh);
425 return self;
428 static VALUE h_remove_tree (VALUE self, VALUE oName)
434 Data_Get_Struct(self, t_hdfh, hdfh);
440 return self;
443 static VALUE h_dump (VALUE self)
452 Data_Get_Struct(self, t_hdfh, hdfh);
465 static VALUE h_write_string (VALUE self)
472 Data_Get_Struct(self, t_hdfh, hdfh);
483 static VALUE h_read_string (VALUE self, VALUE oString, VALUE oIgnore)
490 Data_Get_Struct(self, t_hdfh, hdfh);
499 return self;
502 static VALUE h_copy (VALUE self, VALUE oName, VALUE oHdfSrc)
508 Data_Get_Struct(self, t_hdfh, hdfh);
518 return self;
521 static VALUE h_set_symlink (VALUE self, VALUE oSrc, VALUE oDest)
528 Data_Get_Struct(self, t_hdfh, hdfh);
535 return self;
538 static VALUE h_escape (VALUE self, VALUE oString, VALUE oEsc_char, VALUE oEsc)
561 static VALUE h_unescape (VALUE self, VALUE oString, VALUE oEsc_char)