Searched defs:consumed (Results 1 - 5 of 5) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/
H A DtestReader.c42 static int consumed = 0; variable
49 printf("\t --consumed: count the number of bytes consumed\n");
92 if (consumed)
93 printf("%ld bytes consumed by parser\n", xmlTextReaderByteConsumed(reader));
120 else if ((!strcmp(argv[i], "-consumed")) || (!strcmp(argv[i], "--consumed")))
121 consumed++;
H A Dparser.c116 size_t consumed = 0; local
132 consumed = ctxt->input->consumed +
135 consumed += ctxt->sizeentities;
137 if (replacement < XML_PARSER_NON_LINEAR * consumed)
150 consumed = ctxt->input->consumed +
153 consumed += ctxt->sizeentities;
155 if ((size < XML_PARSER_NON_LINEAR * consumed) &&
156 (ctxt->nbentities * 3 < XML_PARSER_NON_LINEAR * consumed))
[all...]
H A Dxmlschemas.c26586 int mode, int *consumed)
26597 if (consumed != NULL)
26598 *consumed = 0;
26672 if (consumed != NULL)
26673 *consumed = 1;
26899 int depth, nodeType, ret = 0, consumed; local
27059 -1, XML_SCHEMA_PUSH_TEXT_CREATED, &consumed);
27060 if (! consumed)
26584 xmlSchemaVPushText(xmlSchemaValidCtxtPtr vctxt, int nodeType, const xmlChar *value, int len, int mode, int *consumed) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A Derr.h100 static int consumed = 1; local
102 /* if you enter here without having consumed a token from last resynch
105 if ( !consumed ) {zzCONSUME; consumed=1; return;} /* MR10 */
108 if ( wd[LA(1)]&mask || LA(1) == zzEOF_TOKEN ) {consumed=0; return;}
112 consumed=1;
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dparser.h67 * NOTE: consumed is only tested for equality in the parser code,
71 unsigned long consumed; /* How many xmlChars already consumed */ member in struct:_xmlParserInput

Completed in 123 milliseconds