• Home
  • Raw
  • Download

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()
2389 poolDiscard(&tempPool); in doContent()
2461 poolClear(&tempPool); in doContent()
2473 name.str = poolStoreString(&tempPool, enc, rawName, in doContent()
2477 poolFinish(&tempPool); in doContent()
2481 poolFinish(&tempPool); in doContent()
2494 poolClear(&tempPool); in doContent()
2816 &tempPool); in storeAtts()
2819 appAtts[attIndex] = poolStart(&tempPool); in storeAtts()
2820 poolFinish(&tempPool); in storeAtts()
2824 appAtts[attIndex] = poolStoreString(&tempPool, enc, atts[i].valuePtr, in storeAtts()
2828 poolFinish(&tempPool); in storeAtts()
2937 if (!poolAppendChar(&tempPool, c)) in storeAtts()
2945 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
2959 const XML_Char *s1 = poolStart(&tempPool); in storeAtts()
2973 tempPool.ptr[-1] = namespaceSeparator; in storeAtts()
2976 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
2982 s = poolStart(&tempPool); in storeAtts()
2983 poolFinish(&tempPool); in storeAtts()
3868 doctypeName = poolStoreString(&tempPool, enc, s, next); in doProlog()
3871 poolFinish(&tempPool); in doProlog()
3882 poolClear(&tempPool); in doProlog()
3912 pubId = poolStoreString(&tempPool, enc, in doProlog()
3918 poolFinish(&tempPool); in doProlog()
3946 poolClear(&tempPool); in doProlog()
4087 if (!poolAppendString(&tempPool, prefix)) in doProlog()
4089 if (!poolAppend(&tempPool, enc, s, next)) in doProlog()
4091 declAttributeType = tempPool.start; in doProlog()
4107 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4108 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4110 declAttributeType = tempPool.start; in doProlog()
4111 poolFinish(&tempPool); in doProlog()
4117 poolClear(&tempPool); in doProlog()
4144 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4145 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4147 declAttributeType = tempPool.start; in doProlog()
4148 poolFinish(&tempPool); in doProlog()
4155 poolClear(&tempPool); in doProlog()
4192 doctypeSysid = poolStoreString(&tempPool, enc, in doProlog()
4197 poolFinish(&tempPool); in doProlog()
4357 declNotationName = poolStoreString(&tempPool, enc, s, next); in doProlog()
4360 poolFinish(&tempPool); in doProlog()
4368 XML_Char *tem = poolStoreString(&tempPool, in doProlog()
4376 poolFinish(&tempPool); in doProlog()
4383 = poolStoreString(&tempPool, enc, in doProlog()
4396 poolClear(&tempPool); in doProlog()
4408 poolClear(&tempPool); in doProlog()
5133 name = poolStoreString(&tempPool, enc, in storeEntityValue()
5141 poolDiscard(&tempPool); in storeEntityValue()
5306 target = poolStoreString(&tempPool, enc, start, tem); in reportProcessingInstruction()
5309 poolFinish(&tempPool); in reportProcessingInstruction()
5310 data = poolStoreString(&tempPool, enc, in reportProcessingInstruction()
5317 poolClear(&tempPool); in reportProcessingInstruction()
5331 data = poolStoreString(&tempPool, in reportComment()
5339 poolClear(&tempPool); in reportComment()
5520 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5526 if (!poolAppendChar(&tempPool, dtd->defaultPrefix.binding->uri[i])) in getContext()
5541 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5544 if (!poolAppendChar(&tempPool, *s)) in getContext()
5546 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5552 if (!poolAppendChar(&tempPool, prefix->binding->uri[i])) in getContext()
5566 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5569 if (!poolAppendChar(&tempPool, *s)) in getContext()
5574 if (!poolAppendChar(&tempPool, XML_T('\0'))) in getContext()
5576 return tempPool.start; in getContext()
5588 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5590 e = (ENTITY *)lookup(parser, &dtd->generalEntities, poolStart(&tempPool), 0); in setContext()
5596 poolDiscard(&tempPool); in setContext()
5600 if (poolLength(&tempPool) == 0) in setContext()
5603 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5605 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&tempPool), in setContext()
5609 if (prefix->name == poolStart(&tempPool)) { in setContext()
5614 poolDiscard(&tempPool); in setContext()
5619 if (!poolAppendChar(&tempPool, *context)) in setContext()
5621 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5623 if (addBinding(parser, prefix, NULL, poolStart(&tempPool), in setContext()
5626 poolDiscard(&tempPool); in setContext()
5632 if (!poolAppendChar(&tempPool, *s)) in setContext()