• 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/libxml/

Lines Matching +defs:code +defs:string

16 #include <string.h> /* for memset() only ! */
75 * @code: the error number
81 xmlTreeErr(int code, xmlNodePtr node, const char *extra)
85 switch(code) {
98 __xmlSimpleError(XML_FROM_TREE, code, node, msg, extra);
203 * and prefix is not NULL nor empty, otherwise allocate a new string.
206 * Returns the new string which must be freed by the caller if different from
242 * parse an XML qualified name string
307 * parse an XML qualified name string,i
352 * @space: allow spaces in front and end of the string
356 * Returns 0 if this validates, a positive error code number otherwise
426 * @space: allow spaces in front and end of the string
430 * Returns 0 if this validates, a positive error code number otherwise
524 * @space: allow spaces in front and end of the string
528 * Returns 0 if this validates, a positive error code number otherwise
593 * @space: allow spaces in front and end of the string
597 * Returns 0 if this validates, a positive error code number otherwise
1016 * @str: a string
1018 * Free a string if it is not owned by the "dict" dictionnary in the
1029 * @str: a string
1031 * Copy a string using a "dict" dictionnary in the current scope,
1046 * @str: a string
1048 * Copy a string using a "dict" dictionnary in the current scope,
1120 * @version: xmlChar string giving the version of XML "1.0"
1231 * @len: the length of the string value
1233 * Parse the value string and build the node list associated. Should
1327 * Read the entity string
1430 * Parse the value string and build the node list associated. Should
1512 * Read the entity string
1616 * Build the string equivalent to the text contained in the Node list
1619 * Returns a pointer to the string copy, the caller must free it with xmlFree().
1697 * Builds the string equivalent to the text contained in the Node list
1701 * Returns a pointer to the string copy, the caller must free it with xmlFree().
2135 * Use xmlDocNewPI preferably to get string interning
2193 * new node's name. Use xmlNewNode() if a copy of @name string is
2399 * a child TEXT node will be created containing the string @content.
2473 * @name: the char ref string, starting with # or "&# ... ;"
2516 * @name: the reference name, or the reference string with & and ;
4070 * Use xmlDocCopyNodeList() if possible to ensure string interning.
4271 * the returned string
4863 * Searches for the BASE URL. The code should work on both XML
4951 * directly by this node if it's a TEXT node or the aggregate string
5092 * directly by this node if it's a TEXT node or the aggregate string
6163 * Note that we return at least the empty string.
6532 * Concat the given string at the end of the existing node content
6930 * @str: the #xmlChar string
6933 * Add a string range to an XML buffer. if len == -1, the length of
6936 * Returns 0 successful, a positive error code number otherwise
6978 * @str: the #xmlChar string
6981 * Add a string range to the beginning of an XML buffer.
6984 * Returns 0 successful, a positive error code number otherwise
7033 * @str: the #xmlChar string
7035 * Append a zero terminated string to an XML buffer.
7037 * Returns 0 successful, a positive error code number otherwise
7052 * @str: the C char string
7054 * Append a zero terminated C string to an XML buffer.
7056 * Returns 0 successful, a positive error code number otherwise
7089 * @string: the string to add
7095 xmlBufferWriteCHAR(xmlBufferPtr buf, const xmlChar *string) {
7099 xmlBufferCat(buf, string);
7105 * @string: the string to add
7111 xmlBufferWriteChar(xmlBufferPtr buf, const char *string) {
7115 xmlBufferCCat(buf, string);
7122 * @string: the string to add
7125 * a quoted or double quoted #xmlChar string, checking first if it holds
7129 xmlBufferWriteQuotedString(xmlBufferPtr buf, const xmlChar *string) {
7134 if (xmlStrchr(string, '\"')) {
7135 if (xmlStrchr(string, '\'')) {
7138 "xmlBufferWriteQuotedString: string contains quote and double-quotes !\n");
7141 base = cur = string;
7160 xmlBufferCat(buf, string);
7165 xmlBufferCat(buf, string);
8436 * Optimize string adoption for equal or none dicts.
9493 * Optimize string adoption.