Lines Matching defs:rc
876 int rc;
881 rc = xmlTextWriterWriteVFormatComment(writer, format, ap);
884 return rc;
901 int rc;
914 rc = xmlTextWriterWriteComment(writer, buf);
917 return rc;
1304 int rc;
1309 rc = xmlTextWriterWriteVFormatRaw(writer, format, ap);
1312 return rc;
1329 int rc;
1339 rc = xmlTextWriterWriteRaw(writer, buf);
1342 return rc;
1430 int rc;
1438 rc = xmlTextWriterWriteVFormatString(writer, format, ap);
1441 return rc;
1458 int rc;
1468 rc = xmlTextWriterWriteString(writer, buf);
1471 return rc;
1977 int rc;
1982 rc = xmlTextWriterWriteVFormatAttribute(writer, name, format, ap);
1985 return rc;
2004 int rc;
2014 rc = xmlTextWriterWriteAttribute(writer, name, buf);
2017 return rc;
2074 int rc;
2079 rc = xmlTextWriterWriteVFormatAttributeNS(writer, prefix, name,
2083 return rc;
2106 int rc;
2116 rc = xmlTextWriterWriteAttributeNS(writer, prefix, name, namespaceURI,
2120 return rc;
2180 int rc;
2185 rc = xmlTextWriterWriteVFormatElement(writer, name, format, ap);
2188 return rc;
2207 int rc;
2217 rc = xmlTextWriterWriteElement(writer, name, buf);
2220 return rc;
2279 int rc;
2284 rc = xmlTextWriterWriteVFormatElementNS(writer, prefix, name,
2288 return rc;
2311 int rc;
2321 rc = xmlTextWriterWriteElementNS(writer, prefix, name, namespaceURI,
2325 return rc;
2533 int rc;
2538 rc = xmlTextWriterWriteVFormatPI(writer, target, format, ap);
2541 return rc;
2560 int rc;
2570 rc = xmlTextWriterWritePI(writer, target, buf);
2573 return rc;
2748 int rc;
2753 rc = xmlTextWriterWriteVFormatCDATA(writer, format, ap);
2756 return rc;
2773 int rc;
2783 rc = xmlTextWriterWriteCDATA(writer, buf);
2786 return rc;
3059 int rc;
3064 rc = xmlTextWriterWriteVFormatDTD(writer, name, pubid, sysid, format,
3068 return rc;
3091 int rc;
3101 rc = xmlTextWriterWriteDTD(writer, name, pubid, sysid, buf);
3104 return rc;
3302 int rc;
3307 rc = xmlTextWriterWriteVFormatDTDElement(writer, name, format, ap);
3310 return rc;
3329 int rc;
3339 rc = xmlTextWriterWriteDTDElement(writer, name, buf);
3342 return rc;
3539 int rc;
3544 rc = xmlTextWriterWriteVFormatDTDAttlist(writer, name, format, ap);
3547 return rc;
3566 int rc;
3576 rc = xmlTextWriterWriteDTDAttlist(writer, name, buf);
3579 return rc;
3797 int rc;
3802 rc = xmlTextWriterWriteVFormatDTDInternalEntity(writer, pe, name,
3806 return rc;
3828 int rc;
3838 rc = xmlTextWriterWriteDTDInternalEntity(writer, pe, name, buf);
3841 return rc;
4391 int rc;
4405 rc = xmlStrcmp(p0->prefix, p1->prefix);
4407 if ((rc != 0) || (p0->elem != p1->elem))
4408 rc = -1;
4410 return rc;
4427 int rc;
4429 if ((rc = xmlParseChunk(ctxt, (const char *) str, len, 0)) != 0) {
4432 rc);
4451 int rc;
4453 if ((rc = xmlParseChunk(ctxt, NULL, 0, 1)) != 0) {
4456 rc);