Lines Matching refs:tempPool
662 #define tempPool (parser->m_tempPool) macro
852 poolInit(&tempPool, &(parser->m_mem)); in parserCreate()
879 ? poolCopyString(&tempPool, encodingName) in parserInit()
987 poolClear(&tempPool); in XML_ParserReset()
1006 protocolEncodingName = poolCopyString(&tempPool, encodingName); in XML_SetEncoding()
1203 poolDestroy(&tempPool); in XML_ParserFree()
2424 poolDiscard(&tempPool); in doContent()
2496 poolClear(&tempPool); in doContent()
2508 name.str = poolStoreString(&tempPool, enc, rawName, in doContent()
2512 poolFinish(&tempPool); in doContent()
2516 poolFinish(&tempPool); in doContent()
2529 poolClear(&tempPool); in doContent()
2851 &tempPool); in storeAtts()
2854 appAtts[attIndex] = poolStart(&tempPool); in storeAtts()
2855 poolFinish(&tempPool); in storeAtts()
2859 appAtts[attIndex] = poolStoreString(&tempPool, enc, atts[i].valuePtr, in storeAtts()
2863 poolFinish(&tempPool); in storeAtts()
2972 if (!poolAppendChar(&tempPool, c)) in storeAtts()
2980 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
2994 const XML_Char *s1 = poolStart(&tempPool); in storeAtts()
3008 tempPool.ptr[-1] = namespaceSeparator; in storeAtts()
3011 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
3017 s = poolStart(&tempPool); in storeAtts()
3018 poolFinish(&tempPool); in storeAtts()
3903 doctypeName = poolStoreString(&tempPool, enc, s, next); in doProlog()
3906 poolFinish(&tempPool); in doProlog()
3917 poolClear(&tempPool); in doProlog()
3947 pubId = poolStoreString(&tempPool, enc, in doProlog()
3953 poolFinish(&tempPool); in doProlog()
3981 poolClear(&tempPool); in doProlog()
4122 if (!poolAppendString(&tempPool, prefix)) in doProlog()
4124 if (!poolAppend(&tempPool, enc, s, next)) in doProlog()
4126 declAttributeType = tempPool.start; in doProlog()
4142 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4143 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4145 declAttributeType = tempPool.start; in doProlog()
4146 poolFinish(&tempPool); in doProlog()
4152 poolClear(&tempPool); in doProlog()
4179 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4180 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4182 declAttributeType = tempPool.start; in doProlog()
4183 poolFinish(&tempPool); in doProlog()
4190 poolClear(&tempPool); in doProlog()
4227 doctypeSysid = poolStoreString(&tempPool, enc, in doProlog()
4232 poolFinish(&tempPool); in doProlog()
4392 declNotationName = poolStoreString(&tempPool, enc, s, next); in doProlog()
4395 poolFinish(&tempPool); in doProlog()
4403 XML_Char *tem = poolStoreString(&tempPool, in doProlog()
4411 poolFinish(&tempPool); in doProlog()
4418 = poolStoreString(&tempPool, enc, in doProlog()
4431 poolClear(&tempPool); in doProlog()
4443 poolClear(&tempPool); in doProlog()
5168 name = poolStoreString(&tempPool, enc, in storeEntityValue()
5176 poolDiscard(&tempPool); in storeEntityValue()
5341 target = poolStoreString(&tempPool, enc, start, tem); in reportProcessingInstruction()
5344 poolFinish(&tempPool); in reportProcessingInstruction()
5345 data = poolStoreString(&tempPool, enc, in reportProcessingInstruction()
5352 poolClear(&tempPool); in reportProcessingInstruction()
5366 data = poolStoreString(&tempPool, in reportComment()
5374 poolClear(&tempPool); in reportComment()
5556 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5562 if (!poolAppendChar(&tempPool, dtd->defaultPrefix.binding->uri[i])) in getContext()
5577 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5580 if (!poolAppendChar(&tempPool, *s)) in getContext()
5582 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5588 if (!poolAppendChar(&tempPool, prefix->binding->uri[i])) in getContext()
5602 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5605 if (!poolAppendChar(&tempPool, *s)) in getContext()
5610 if (!poolAppendChar(&tempPool, XML_T('\0'))) in getContext()
5612 return tempPool.start; in getContext()
5624 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5626 e = (ENTITY *)lookup(parser, &dtd->generalEntities, poolStart(&tempPool), 0); in setContext()
5632 poolDiscard(&tempPool); in setContext()
5636 if (poolLength(&tempPool) == 0) in setContext()
5639 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5641 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&tempPool), in setContext()
5645 if (prefix->name == poolStart(&tempPool)) { in setContext()
5650 poolDiscard(&tempPool); in setContext()
5655 if (!poolAppendChar(&tempPool, *context)) in setContext()
5657 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5659 if (addBinding(parser, prefix, NULL, poolStart(&tempPool), in setContext()
5662 poolDiscard(&tempPool); in setContext()
5668 if (!poolAppendChar(&tempPool, *s)) in setContext()