• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/

Lines Matching refs:property

62  *@a_property: the property string of the declaration
91 result->property = a_property;
119 CRString *property = NULL;
136 status = cr_parser_parse_declaration (parser, &property,
138 if (status != CR_OK || !property)
141 result = cr_declaration_new (a_statement, property, value);
143 property = NULL;
155 if (property) {
156 cr_string_destroy (property);
157 property = NULL;
184 CRString *property = NULL;
205 status = cr_parser_parse_declaration (parser, &property,
207 if (status != CR_OK || !property) {
212 result = cr_declaration_new (NULL, property, value);
214 property = NULL;
236 status = cr_parser_parse_declaration (parser, &property,
238 if (status != CR_OK || !property) {
244 cur_decl = cr_declaration_new (NULL, property, value);
248 property = NULL;
263 if (property) {
264 cr_string_destroy (property);
265 property = NULL;
415 *@a_prop: the property string of the declaration to append.
419 *Returns the list with the new property appended to it, or NULL in
507 if (a_this->property
508 && a_this->property->stryng
509 && a_this->property->stryng->str) {
510 str = g_strndup (a_this->property->stryng->str,
511 a_this->property->stryng->len);
691 *@a_prop: the property name to search for.
693 *Use property name to get a CRDeclaration from the declaration list.
694 *Returns #CRDeclaration with property name a_prop, or NULL if not found.
706 if (cur->property
707 && cur->property->stryng
708 && cur->property->stryng->str) {
709 if (!strcmp (cur->property->stryng->str,
774 *Meanwhile, free each property/value pair contained in the list.
777 if (cur->property) {
778 cr_string_destroy (cur->property);
779 cur->property = NULL;
789 if (cur->property) {
790 cr_string_destroy (cur->property);
791 cur->property = NULL;