• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/

Lines Matching refs:a_this

95  *@a_this: the current instance of #CRDocHandler.
104 cr_doc_handler_get_ctxt (CRDocHandler * a_this, gpointer * a_ctxt)
106 g_return_val_if_fail (a_this && a_this->priv, CR_BAD_PARAM_ERROR);
108 *a_ctxt = a_this->priv->context;
115 *@a_this: the current instance of #CRDocHandler
123 cr_doc_handler_set_ctxt (CRDocHandler * a_this, gpointer a_ctxt)
125 g_return_val_if_fail (a_this && a_this->priv, CR_BAD_PARAM_ERROR);
126 a_this->priv->context = a_ctxt;
132 *@a_this: the current instance of #CRDocHandler
141 cr_doc_handler_get_result (CRDocHandler * a_this, gpointer * a_result)
143 g_return_val_if_fail (a_this && a_this->priv, CR_BAD_PARAM_ERROR);
145 *a_result = a_this->priv->result;
152 *@a_this: the current instance of #CRDocHandler
161 cr_doc_handler_set_result (CRDocHandler * a_this, gpointer a_result)
163 g_return_val_if_fail (a_this && a_this->priv, CR_BAD_PARAM_ERROR);
164 a_this->priv->result = a_result;
170 *@a_this: a pointer to the current instance of #CRDocHandler.
181 cr_doc_handler_set_default_sac_handler (CRDocHandler * a_this)
183 g_return_val_if_fail (a_this, CR_BAD_PARAM_ERROR);
185 a_this->start_document = NULL;
186 a_this->end_document = NULL;
187 a_this->import_style = NULL;
188 a_this->namespace_declaration = NULL;
189 a_this->comment = NULL;
190 a_this->start_selector = NULL;
191 a_this->end_selector = NULL;
192 a_this->property = NULL;
193 a_this->start_font_face = NULL;
194 a_this->end_font_face = NULL;
195 a_this->start_media = NULL;
196 a_this->end_media = NULL;
197 a_this->start_page = NULL;
198 a_this->end_page = NULL;
199 a_this->ignorable_at_rule = NULL;
200 a_this->error = NULL;
201 a_this->unrecoverable_error = NULL;
207 *@a_this: the current instance of #CRDocHandler.
210 cr_doc_handler_ref (CRDocHandler * a_this)
212 g_return_if_fail (a_this);
214 a_this->ref_count++;
219 *@a_this: the currrent instance of #CRDocHandler.
227 cr_doc_handler_unref (CRDocHandler * a_this)
229 g_return_val_if_fail (a_this, FALSE);
231 if (a_this->ref_count > 0) {
232 a_this->ref_count--;
235 if (a_this->ref_count == 0) {
236 cr_doc_handler_destroy (a_this);
244 *@a_this: the instance of #CRDocHandler to
250 cr_doc_handler_destroy (CRDocHandler * a_this)
252 g_return_if_fail (a_this);
254 if (a_this->priv) {
255 g_free (a_this->priv);
256 a_this->priv = NULL;
258 g_free (a_this);
264 *@a_this: the current instance of document handler.
268 cr_doc_handler_associate_a_parser (CRDocHandler *a_this,
271 g_return_if_fail (a_this && PRIVATE (a_this)
274 PRIVATE (a_this)->parser = a_parser ;