Lines Matching defs:CRTerm
38 *Declaration of the #CRTerm class.
71 typedef struct _CRTerm CRTerm ;
117 *an instance of CRTerm that represents
122 CRTerm *func_param ;
138 CRTerm *next ;
144 CRTerm *prev ;
148 CRTerm * cr_term_parse_expression_from_buf (const guchar *a_buf,
150 CRTerm * cr_term_new (void) ;
152 enum CRStatus cr_term_set_number (CRTerm *a_this, CRNum *a_num) ;
154 enum CRStatus cr_term_set_function (CRTerm *a_this,
156 CRTerm *a_func_param) ;
158 enum CRStatus cr_term_set_string (CRTerm *a_this, CRString *a_str) ;
160 enum CRStatus cr_term_set_ident (CRTerm *a_this, CRString *a_str) ;
162 enum CRStatus cr_term_set_uri (CRTerm *a_this, CRString *a_str) ;
164 enum CRStatus cr_term_set_rgb (CRTerm *a_this, CRRgb *a_rgb) ;
166 enum CRStatus cr_term_set_hash (CRTerm *a_this, CRString *a_str) ;
168 CRTerm * cr_term_append_term (CRTerm *a_this, CRTerm *a_new_term) ;
170 CRTerm * cr_term_prepend_term (CRTerm *a_this, CRTerm *a_new_term) ;
172 guchar * cr_term_to_string (CRTerm const *a_this) ;
174 guchar * cr_term_one_to_string (CRTerm const * a_this) ;
176 void cr_term_dump (CRTerm const *a_this, FILE *a_fp) ;
178 int cr_term_nr_values (CRTerm const *a_this) ;
180 CRTerm * cr_term_get_from_list (CRTerm *a_this, int itemnr) ;
182 void cr_term_ref (CRTerm *a_this) ;
184 gboolean cr_term_unref (CRTerm *a_this) ;
186 void cr_term_destroy (CRTerm * a_term) ;