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
566 * Prints out canonical namespace axis of the current node to the
663 * print out all elements from list
680 * Prints out exclusive canonical namespace axis of the current node to the
840 * print out all elements from list
925 * Prints out canonical attribute urrent node to the
1098 * Prints out canonical attribute axis of the current node to the
1331 * print out all elements from list
2151 xmlChar *out = NULL;
2166 out = buffer;
2169 if ((out - buffer) > (buffer_size - 10)) {
2170 int indx = out - buffer;
2173 out = &buffer[indx];
2178 *out++ = '&';
2179 *out++ = 'l';
2180 *out++ = 't';
2181 *out++ = ';';
2183 *out++ = '&';
2184 *out++ = 'g';
2185 *out++ = 't';
2186 *out++ = ';';
2189 *out++ = '&';
2190 *out++ = 'a';
2191 *out++ = 'm';
2192 *out++ = 'p';
2193 *out++ = ';';
2195 *out++ = '&';
2196 *out++ = 'q';
2197 *out++ = 'u';
2198 *out++ = 'o';
2199 *out++ = 't';
2200 *out++ = ';';
2202 *out++ = '&';
2203 *out++ = '#';
2204 *out++ = 'x';
2205 *out++ = '9';
2206 *out++ = ';';
2208 *out++ = '&';
2209 *out++ = '#';
2210 *out++ = 'x';
2211 *out++ = 'A';
2212 *out++ = ';';
2217 *out++ = '&';
2218 *out++ = '#';
2219 *out++ = 'x';
2220 *out++ = 'D';
2221 *out++ = ';';
2227 *out++ = *cur;
2231 *out = 0;