Home | History | Annotate | Download | only in libxml2

Lines Matching defs:out

427      * we do not want to print it out
460 * we do not want to print it out
567 * Prints out canonical namespace axis of the current node to the
664 * print out all elements from list
681 * Prints out exclusive canonical namespace axis of the current node to the
841 * print out all elements from list
926 * Prints out canonical attribute urrent node to the
1099 * Prints out canonical attribute axis of the current node to the
1332 * print out all elements from list
2152 xmlChar *out = NULL;
2167 out = buffer;
2170 if ((out - buffer) > (buffer_size - 10)) {
2171 int indx = out - buffer;
2174 out = &buffer[indx];
2179 *out++ = '&';
2180 *out++ = 'l';
2181 *out++ = 't';
2182 *out++ = ';';
2184 *out++ = '&';
2185 *out++ = 'g';
2186 *out++ = 't';
2187 *out++ = ';';
2190 *out++ = '&';
2191 *out++ = 'a';
2192 *out++ = 'm';
2193 *out++ = 'p';
2194 *out++ = ';';
2196 *out++ = '&';
2197 *out++ = 'q';
2198 *out++ = 'u';
2199 *out++ = 'o';
2200 *out++ = 't';
2201 *out++ = ';';
2203 *out++ = '&';
2204 *out++ = '#';
2205 *out++ = 'x';
2206 *out++ = '9';
2207 *out++ = ';';
2209 *out++ = '&';
2210 *out++ = '#';
2211 *out++ = 'x';
2212 *out++ = 'A';
2213 *out++ = ';';
2218 *out++ = '&';
2219 *out++ = '#';
2220 *out++ = 'x';
2221 *out++ = 'D';
2222 *out++ = ';';
2228 *out++ = *cur;
2232 *out = 0;