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()
2375 poolDiscard(&tempPool); in doContent()
2447 poolClear(&tempPool); in doContent()
2459 name.str = poolStoreString(&tempPool, enc, rawName, in doContent()
2463 poolFinish(&tempPool); in doContent()
2467 poolFinish(&tempPool); in doContent()
2480 poolClear(&tempPool); in doContent()
2802 &tempPool); in storeAtts()
2805 appAtts[attIndex] = poolStart(&tempPool); in storeAtts()
2806 poolFinish(&tempPool); in storeAtts()
2810 appAtts[attIndex] = poolStoreString(&tempPool, enc, atts[i].valuePtr, in storeAtts()
2814 poolFinish(&tempPool); in storeAtts()
2921 if (!poolAppendChar(&tempPool, c)) in storeAtts()
2929 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
2943 const XML_Char *s1 = poolStart(&tempPool); in storeAtts()
2957 tempPool.ptr[-1] = namespaceSeparator; in storeAtts()
2960 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
2966 s = poolStart(&tempPool); in storeAtts()
2967 poolFinish(&tempPool); in storeAtts()
3852 doctypeName = poolStoreString(&tempPool, enc, s, next); in doProlog()
3855 poolFinish(&tempPool); in doProlog()
3866 poolClear(&tempPool); in doProlog()
3896 pubId = poolStoreString(&tempPool, enc, in doProlog()
3902 poolFinish(&tempPool); in doProlog()
3930 poolClear(&tempPool); in doProlog()
4071 if (!poolAppendString(&tempPool, prefix)) in doProlog()
4073 if (!poolAppend(&tempPool, enc, s, next)) in doProlog()
4075 declAttributeType = tempPool.start; in doProlog()
4091 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4092 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4094 declAttributeType = tempPool.start; in doProlog()
4095 poolFinish(&tempPool); in doProlog()
4101 poolClear(&tempPool); in doProlog()
4128 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4129 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4131 declAttributeType = tempPool.start; in doProlog()
4132 poolFinish(&tempPool); in doProlog()
4139 poolClear(&tempPool); in doProlog()
4176 doctypeSysid = poolStoreString(&tempPool, enc, in doProlog()
4181 poolFinish(&tempPool); in doProlog()
4341 declNotationName = poolStoreString(&tempPool, enc, s, next); in doProlog()
4344 poolFinish(&tempPool); in doProlog()
4352 XML_Char *tem = poolStoreString(&tempPool, in doProlog()
4360 poolFinish(&tempPool); in doProlog()
4367 = poolStoreString(&tempPool, enc, in doProlog()
4380 poolClear(&tempPool); in doProlog()
4392 poolClear(&tempPool); in doProlog()
5117 name = poolStoreString(&tempPool, enc, in storeEntityValue()
5125 poolDiscard(&tempPool); in storeEntityValue()
5290 target = poolStoreString(&tempPool, enc, start, tem); in reportProcessingInstruction()
5293 poolFinish(&tempPool); in reportProcessingInstruction()
5294 data = poolStoreString(&tempPool, enc, in reportProcessingInstruction()
5301 poolClear(&tempPool); in reportProcessingInstruction()
5315 data = poolStoreString(&tempPool, in reportComment()
5323 poolClear(&tempPool); in reportComment()
5502 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5508 if (!poolAppendChar(&tempPool, dtd->defaultPrefix.binding->uri[i])) in getContext()
5523 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5526 if (!poolAppendChar(&tempPool, *s)) in getContext()
5528 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5534 if (!poolAppendChar(&tempPool, prefix->binding->uri[i])) in getContext()
5548 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5551 if (!poolAppendChar(&tempPool, *s)) in getContext()
5556 if (!poolAppendChar(&tempPool, XML_T('\0'))) in getContext()
5558 return tempPool.start; in getContext()
5570 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5572 e = (ENTITY *)lookup(parser, &dtd->generalEntities, poolStart(&tempPool), 0); in setContext()
5578 poolDiscard(&tempPool); in setContext()
5582 if (poolLength(&tempPool) == 0) in setContext()
5585 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5587 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&tempPool), in setContext()
5591 if (prefix->name == poolStart(&tempPool)) { in setContext()
5596 poolDiscard(&tempPool); in setContext()
5601 if (!poolAppendChar(&tempPool, *context)) in setContext()
5603 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5605 if (addBinding(parser, prefix, NULL, poolStart(&tempPool), in setContext()
5608 poolDiscard(&tempPool); in setContext()
5614 if (!poolAppendChar(&tempPool, *s)) in setContext()