Home | History | Annotate | Download | only in libxml2

Lines Matching refs:content

100   char *content;
1279 self->content = NULL;
1307 new_content = (char *)TRIO_REALLOC(self->content, new_size);
1310 self->content = new_content;
1360 self->content[0] = (char)0;
1388 trio_destroy(self->content);
1396 Get a pointer to the content.
1399 @param offset Offset into content.
1400 @return Pointer to the content.
1403 then the start of the content will be returned. If @p offset is positive,
1405 content is returned. If @p offset is negative, then a pointer to @p offset
1419 if (self->content != NULL)
1440 result = &(self->content[offset]);
1448 Extract the content.
1451 @return Content of dynamic string.
1453 The content is removed from the dynamic string. This enables destruction
1454 of the dynamic string without deallocation of the content.
1465 result = self->content;
1467 self->content = NULL;
1475 Set the content of the dynamic string.
1478 @param buffer The new content.
1480 Sets the content of the dynamic string to a copy @p buffer.
1481 An existing content will be deallocated first, if necessary.
1495 trio_destroy(self->content);
1496 self->content = trio_duplicate(buffer);
1549 trio_copy(&self->content[self->length], other->content);
1577 trio_copy(&self->content[self->length], other);
1603 self->content[self->length] = character;
1629 return trio_contains(self->content, other->content);
1647 return trio_contains(self->content, other);
1706 self->content = TrioDuplicateMax(other->content, other->length);
1707 if (self->content)
1737 self->content = TrioDuplicateMax(other, trio_length(other));
1738 if (self->content)
1740 self->length = trio_length(self->content);
1765 return trio_equal(self->content, other->content);
1783 return trio_equal(self->content, other);
1802 return trio_equal_max(self->content, max, other->content);
1821 return trio_equal_max(self->content, max, other);
1839 return trio_equal_case(self->content, other->content);
1857 return trio_equal_case(self->content, other);
1876 return trio_equal_case_max(self->content, max, other->content);
1895 return trio_equal_case_max(self->content, max, other);
1914 return trio_format_date_max(self->content, max, format, datetime);
1931 return trio_index(self->content, character);
1948 return trio_index_last(self->content, character);
1966 self->length = trio_length(self->content);
1984 return trio_lower(self->content);
2002 return trio_match(self->content, other->content);
2020 return trio_match(self->content, other);
2038 return trio_match_case(self->content, other->content);
2056 return trio_match_case(self->content, other);
2074 return trio_substring(self->content, other->content);
2092 return trio_substring(self->content, other);
2108 return trio_upper(self->content);