Lines Matching refs:property

62  *@a_property: the property string of the declaration
95 result->property = a_property;
123 CRString *property = NULL;
140 status = cr_parser_parse_declaration (parser, &property,
142 if (status != CR_OK || !property)
145 result = cr_declaration_new (a_statement, property, value);
147 property = NULL;
159 if (property) {
160 cr_string_destroy (property);
161 property = NULL;
188 CRString *property = NULL;
209 status = cr_parser_parse_declaration (parser, &property,
211 if (status != CR_OK || !property) {
216 result = cr_declaration_new (NULL, property, value);
218 property = NULL;
241 status = cr_parser_parse_declaration (parser, &property,
243 if (status != CR_OK || !property) {
251 cur_decl = cr_declaration_new (NULL, property, value);
255 property = NULL;
270 if (property) {
271 cr_string_destroy (property);
272 property = NULL;
422 *@a_prop: the property string of the declaration to append.
426 *Returns the list with the new property appended to it, or NULL in
514 if (a_this->property
515 && a_this->property->stryng
516 && a_this->property->stryng->str) {
517 str = g_strndup (a_this->property->stryng->str,
518 a_this->property->stryng->len);
698 *@a_prop: the property name to search for.
700 *Use property name to get a CRDeclaration from the declaration list.
701 *Returns #CRDeclaration with property name a_prop, or NULL if not found.
713 if (cur->property
714 && cur->property->stryng
715 && cur->property->stryng->str) {
716 if (!strcmp (cur->property->stryng->str,
786 * Meanwhile, free each property/value pair contained in the list.
792 if (cur->property) {
793 cr_string_destroy (cur->property);
794 cur->property = NULL;