• Home
  • Raw
  • Download

Lines Matching refs:tempPool

663 #define tempPool (parser->m_tempPool)  macro
853 poolInit(&tempPool, &(parser->m_mem)); in parserCreate()
880 ? poolCopyString(&tempPool, encodingName) in parserInit()
988 poolClear(&tempPool); in XML_ParserReset()
1007 protocolEncodingName = poolCopyString(&tempPool, encodingName); in XML_SetEncoding()
1204 poolDestroy(&tempPool); in XML_ParserFree()
2425 poolDiscard(&tempPool); in doContent()
2497 poolClear(&tempPool); in doContent()
2509 name.str = poolStoreString(&tempPool, enc, rawName, in doContent()
2513 poolFinish(&tempPool); in doContent()
2517 poolFinish(&tempPool); in doContent()
2530 poolClear(&tempPool); in doContent()
2852 &tempPool); in storeAtts()
2855 appAtts[attIndex] = poolStart(&tempPool); in storeAtts()
2856 poolFinish(&tempPool); in storeAtts()
2860 appAtts[attIndex] = poolStoreString(&tempPool, enc, atts[i].valuePtr, in storeAtts()
2864 poolFinish(&tempPool); in storeAtts()
2973 if (!poolAppendChar(&tempPool, c)) in storeAtts()
2981 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
2995 const XML_Char *s1 = poolStart(&tempPool); in storeAtts()
3009 tempPool.ptr[-1] = namespaceSeparator; in storeAtts()
3012 if (!poolAppendChar(&tempPool, *s)) in storeAtts()
3018 s = poolStart(&tempPool); in storeAtts()
3019 poolFinish(&tempPool); in storeAtts()
3904 doctypeName = poolStoreString(&tempPool, enc, s, next); in doProlog()
3907 poolFinish(&tempPool); in doProlog()
3918 poolClear(&tempPool); in doProlog()
3948 pubId = poolStoreString(&tempPool, enc, in doProlog()
3954 poolFinish(&tempPool); in doProlog()
3982 poolClear(&tempPool); in doProlog()
4123 if (!poolAppendString(&tempPool, prefix)) in doProlog()
4125 if (!poolAppend(&tempPool, enc, s, next)) in doProlog()
4127 declAttributeType = tempPool.start; in doProlog()
4143 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4144 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4146 declAttributeType = tempPool.start; in doProlog()
4147 poolFinish(&tempPool); in doProlog()
4153 poolClear(&tempPool); in doProlog()
4180 if (!poolAppendChar(&tempPool, XML_T(ASCII_RPAREN)) in doProlog()
4181 || !poolAppendChar(&tempPool, XML_T('\0'))) in doProlog()
4183 declAttributeType = tempPool.start; in doProlog()
4184 poolFinish(&tempPool); in doProlog()
4191 poolClear(&tempPool); in doProlog()
4228 doctypeSysid = poolStoreString(&tempPool, enc, in doProlog()
4233 poolFinish(&tempPool); in doProlog()
4393 declNotationName = poolStoreString(&tempPool, enc, s, next); in doProlog()
4396 poolFinish(&tempPool); in doProlog()
4404 XML_Char *tem = poolStoreString(&tempPool, in doProlog()
4412 poolFinish(&tempPool); in doProlog()
4419 = poolStoreString(&tempPool, enc, in doProlog()
4432 poolClear(&tempPool); in doProlog()
4444 poolClear(&tempPool); in doProlog()
5169 name = poolStoreString(&tempPool, enc, in storeEntityValue()
5177 poolDiscard(&tempPool); in storeEntityValue()
5342 target = poolStoreString(&tempPool, enc, start, tem); in reportProcessingInstruction()
5345 poolFinish(&tempPool); in reportProcessingInstruction()
5346 data = poolStoreString(&tempPool, enc, in reportProcessingInstruction()
5353 poolClear(&tempPool); in reportProcessingInstruction()
5367 data = poolStoreString(&tempPool, in reportComment()
5375 poolClear(&tempPool); in reportComment()
5557 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5563 if (!poolAppendChar(&tempPool, dtd->defaultPrefix.binding->uri[i])) in getContext()
5578 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5581 if (!poolAppendChar(&tempPool, *s)) in getContext()
5583 if (!poolAppendChar(&tempPool, XML_T(ASCII_EQUALS))) in getContext()
5589 if (!poolAppendChar(&tempPool, prefix->binding->uri[i])) in getContext()
5603 if (needSep && !poolAppendChar(&tempPool, CONTEXT_SEP)) in getContext()
5606 if (!poolAppendChar(&tempPool, *s)) in getContext()
5611 if (!poolAppendChar(&tempPool, XML_T('\0'))) in getContext()
5613 return tempPool.start; in getContext()
5625 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5627 e = (ENTITY *)lookup(parser, &dtd->generalEntities, poolStart(&tempPool), 0); in setContext()
5633 poolDiscard(&tempPool); in setContext()
5637 if (poolLength(&tempPool) == 0) in setContext()
5640 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5642 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&tempPool), in setContext()
5646 if (prefix->name == poolStart(&tempPool)) { in setContext()
5651 poolDiscard(&tempPool); in setContext()
5656 if (!poolAppendChar(&tempPool, *context)) in setContext()
5658 if (!poolAppendChar(&tempPool, XML_T('\0'))) in setContext()
5660 if (addBinding(parser, prefix, NULL, poolStart(&tempPool), in setContext()
5663 poolDiscard(&tempPool); in setContext()
5669 if (!poolAppendChar(&tempPool, *s)) in setContext()