• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/libxml2-26/libxml2/

Lines Matching defs:content

94   char *content;
1273 self->content = NULL;
1301 new_content = (char *)TRIO_REALLOC(self->content, new_size);
1304 self->content = new_content;
1354 self->content[0] = (char)0;
1382 trio_destroy(self->content);
1390 Get a pointer to the content.
1393 @param offset Offset into content.
1394 @return Pointer to the content.
1397 then the start of the content will be returned. If @p offset is positive,
1399 content is returned. If @p offset is negative, then a pointer to @p offset
1413 if (self->content != NULL)
1434 result = &(self->content[offset]);
1442 Extract the content.
1447 The content is removed from the dynamic string. This enables destruction
1448 of the dynamic string without deallocation of the content.
1459 result = self->content;
1461 self->content = NULL;
1469 Set the content of the dynamic string.
1472 @param buffer The new content.
1474 Sets the content of the dynamic string to a copy @p buffer.
1475 An existing content will be deallocated first, if necessary.
1489 trio_destroy(self->content);
1490 self->content = trio_duplicate(buffer);
1543 trio_copy(&self->content[self->length], other->content);
1571 trio_copy(&self->content[self->length], other);
1597 self->content[self->length] = character;
1623 return trio_contains(self->content, other->content);
1641 return trio_contains(self->content, other);
1700 self->content = TrioDuplicateMax(other->content, other->length);
1701 if (self->content)
1731 self->content = TrioDuplicateMax(other, trio_length(other));
1732 if (self->content)
1734 self->length = trio_length(self->content);
1759 return trio_equal(self->content, other->content);
1777 return trio_equal(self->content, other);
1796 return trio_equal_max(self->content, max, other->content);
1815 return trio_equal_max(self->content, max, other);
1833 return trio_equal_case(self->content, other->content);
1851 return trio_equal_case(self->content, other);
1870 return trio_equal_case_max(self->content, max, other->content);
1889 return trio_equal_case_max(self->content, max, other);
1908 return trio_format_date_max(self->content, max, format, datetime);
1925 return trio_index(self->content, character);
1942 return trio_index_last(self->content, character);
1960 self->length = trio_length(self->content);
1978 return trio_lower(self->content);
1996 return trio_match(self->content, other->content);
2014 return trio_match(self->content, other);
2032 return trio_match_case(self->content, other->content);
2050 return trio_match_case(self->content, other);
2068 return trio_substring(self->content, other->content);
2086 return trio_substring(self->content, other);
2102 return trio_upper(self->content);