Lines Matching refs:tempPool

655 #define tempPool (parser->m_tempPool)  macro
818 poolInit(&tempPool, &(parser->m_mem)); in parserCreate()
845 ? poolCopyString(&tempPool, encodingName) in parserInit()
953 poolClear(&tempPool); in XML_ParserReset()
972 protocolEncodingName = poolCopyString(&tempPool, encodingName); in XML_SetEncoding()
1169 poolDestroy(&tempPool); in XML_ParserFree()
2386 poolDiscard(&tempPool); in doContent()
2458 poolClear(&tempPool); in doContent()
2470 name.str = poolStoreString(&tempPool, enc, rawName, in doContent()
2474 poolFinish(&tempPool); in doContent()
2478 poolFinish(&tempPool); in doContent()
2491 poolClear(&tempPool); in doContent()
2813 &tempPool); in storeAtts()
2816 appAtts[attIndex] = poolStart(&tempPool); in storeAtts()
2817 poolFinish(&tempPool); in storeAtts()
2821 appAtts[attIndex] = poolStoreString(&tempPool, enc, atts[i].valuePtr, in storeAtts()
2825 poolFinish(&tempPool); in storeAtts()
2934 if (!poolAppendChar(&tempPool, c)) in storeAtts()
2942 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
2956 const XML_Char *s1 = poolStart(&tempPool); in storeAtts()
2970 tempPool.ptr[-1] = namespaceSeparator; in storeAtts()
2973 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
2979 s = poolStart(&tempPool); in storeAtts()
2980 poolFinish(&tempPool); in storeAtts()
3865 doctypeName = poolStoreString(&tempPool, enc, s, next); in doProlog()
3868 poolFinish(&tempPool); in doProlog()
3879 poolClear(&tempPool); in doProlog()
3909 pubId = poolStoreString(&tempPool, enc, in doProlog()
3915 poolFinish(&tempPool); in doProlog()
3943 poolClear(&tempPool); in doProlog()
4084 if (!poolAppendString(&tempPool, prefix)) in doProlog()
4086 if (!poolAppend(&tempPool, enc, s, next)) in doProlog()
4088 declAttributeType = tempPool.start; in doProlog()
4104 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4105 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4107 declAttributeType = tempPool.start; in doProlog()
4108 poolFinish(&tempPool); in doProlog()
4114 poolClear(&tempPool); in doProlog()
4141 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4142 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4144 declAttributeType = tempPool.start; in doProlog()
4145 poolFinish(&tempPool); in doProlog()
4152 poolClear(&tempPool); in doProlog()
4189 doctypeSysid = poolStoreString(&tempPool, enc, in doProlog()
4194 poolFinish(&tempPool); in doProlog()
4354 declNotationName = poolStoreString(&tempPool, enc, s, next); in doProlog()
4357 poolFinish(&tempPool); in doProlog()
4365 XML_Char *tem = poolStoreString(&tempPool, in doProlog()
4373 poolFinish(&tempPool); in doProlog()
4380 = poolStoreString(&tempPool, enc, in doProlog()
4393 poolClear(&tempPool); in doProlog()
4405 poolClear(&tempPool); in doProlog()
5130 name = poolStoreString(&tempPool, enc, in storeEntityValue()
5138 poolDiscard(&tempPool); in storeEntityValue()
5303 target = poolStoreString(&tempPool, enc, start, tem); in reportProcessingInstruction()
5306 poolFinish(&tempPool); in reportProcessingInstruction()
5307 data = poolStoreString(&tempPool, enc, in reportProcessingInstruction()
5314 poolClear(&tempPool); in reportProcessingInstruction()
5328 data = poolStoreString(&tempPool, in reportComment()
5336 poolClear(&tempPool); in reportComment()
5518 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5524 if (!poolAppendChar(&tempPool, dtd->defaultPrefix.binding->uri[i])) in getContext()
5539 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5542 if (!poolAppendChar(&tempPool, *s)) in getContext()
5544 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5550 if (!poolAppendChar(&tempPool, prefix->binding->uri[i])) in getContext()
5564 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5567 if (!poolAppendChar(&tempPool, *s)) in getContext()
5572 if (!poolAppendChar(&tempPool, XML_T('\0'))) in getContext()
5574 return tempPool.start; in getContext()
5586 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5588 e = (ENTITY *)lookup(parser, &dtd->generalEntities, poolStart(&tempPool), 0); in setContext()
5594 poolDiscard(&tempPool); in setContext()
5598 if (poolLength(&tempPool) == 0) in setContext()
5601 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5603 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&tempPool), in setContext()
5607 if (prefix->name == poolStart(&tempPool)) { in setContext()
5612 poolDiscard(&tempPool); in setContext()
5617 if (!poolAppendChar(&tempPool, *context)) in setContext()
5619 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5621 if (addBinding(parser, prefix, NULL, poolStart(&tempPool), in setContext()
5624 poolDiscard(&tempPool); in setContext()
5630 if (!poolAppendChar(&tempPool, *s)) in setContext()