Lines Matching defs:cur

95     xmlNsPtr cur;
115 cur = node->nsDef;
116 while (cur != NULL) {
117 if (cur == ns)
119 if (xmlStrEqual(cur->prefix, ns->prefix))
121 cur = cur->next;
537 xmlEnumerationPtr cur = attr->tree;
541 fprintf(ctxt->output, "|%s", (char *) cur->name);
543 fprintf(ctxt->output, " (%s", (char *) cur->name);
544 cur = cur->next;
545 if (cur == NULL)
548 if (cur == NULL)
1228 xmlCtxtDumpEntityCallback(xmlEntityPtr cur, xmlDebugCtxtPtr ctxt)
1230 if (cur == NULL) {
1236 fprintf(ctxt->output, "%s : ", (char *) cur->name);
1237 switch (cur->etype) {
1255 "Unknown entity type %d\n", cur->etype);
1257 if (cur->ExternalID != NULL)
1258 fprintf(ctxt->output, "ID \"%s\"", (char *) cur->ExternalID);
1259 if (cur->SystemID != NULL)
1260 fprintf(ctxt->output, "SYSTEM \"%s\"", (char *) cur->SystemID);
1261 if (cur->orig != NULL)
1262 fprintf(ctxt->output, "\n orig \"%s\"", (char *) cur->orig);
1263 if ((cur->type != XML_ELEMENT_NODE) && (cur->content != NULL))
1265 (char *) cur->content);
2001 xmlNodePtr cur;
2010 cur = ((xmlDocPtr) node)->children;
2015 cur = node->children;
2020 while (cur != NULL) {
2021 xmlLsOneNode(ctxt->output, cur);
2022 cur = cur->next;
2802 char *cmdline = NULL, *cur;
2854 cur = cmdline;
2856 while ((*cur == ' ') || (*cur == '\t'))
2857 cur++;
2859 while ((*cur != ' ') && (*cur != '\t') &&
2860 (*cur != '\n') && (*cur != '\r')) {
2861 if (*cur == 0)
2863 command[i++] = *cur++;
2873 while ((*cur == ' ') || (*cur == '\t'))
2874 cur++;
2876 while ((*cur != '\n') && (*cur != '\r') && (*cur != 0)) {
2877 if (*cur == 0)
2879 arg[i++] = *cur++;