Home | History | Annotate | Download | only in expat

Lines Matching refs:tem

3793         XML_Char *tem = poolStoreString(&dtd->pool,

3797 if (!tem)
3799 normalizePublicId(tem);
3800 declEntity->publicId = tem;
4230 XML_Char *tem = poolStoreString(&tempPool,
4234 if (!tem)
4236 normalizePublicId(tem);
4237 declNotationPublicId = tem;
5160 const char *tem;
5167 tem = start + XmlNameLength(enc, start);
5168 target = poolStoreString(&tempPool, enc, start, tem);
5173 XmlSkipS(enc, tem),
5784 const XML_Char *tem = poolCopyString(newPool, oldE->systemId);
5785 if (!tem)
5787 newE->systemId = tem;
5793 tem = poolCopyString(newPool, cachedOldBase);
5794 if (!tem)
5796 cachedNewBase = newE->base = tem;
5800 tem = poolCopyString(newPool, oldE->publicId);
5801 if (!tem)
5803 newE->publicId = tem;
5807 const XML_Char *tem = poolCopyStringN(newPool, oldE->textPtr,
5809 if (!tem)
5811 newE->textPtr = tem;
5815 const XML_Char *tem = poolCopyString(newPool, oldE->notation);
5816 if (!tem)
5818 newE->notation = tem;
5966 NAMED *tem = *(iter->p)++;
5967 if (tem)
5968 return tem;
5992 BLOCK *tem = p->next;
5995 p = tem;
6009 BLOCK *tem = p->next;
6011 p = tem;
6015 BLOCK *tem = p->next;
6017 p = tem;
6100 BLOCK *tem = pool->freeBlocks->next;
6103 pool->freeBlocks = tem;
6126 BLOCK *tem;
6132 tem = (BLOCK *)pool->mem->malloc_fcn(offsetof(BLOCK, s)
6134 if (!tem)
6136 tem->size = blockSize;
6137 tem->next = pool->blocks;
6138 pool->blocks = tem;
6140 memcpy(tem->s, pool->start,
6142 pool->ptr = tem->s + (pool->ptr - pool->start);
6143 pool->start = tem->s;
6144 pool->end = tem->s + blockSize;