Home | History | Annotate | Download | only in expat

Lines Matching refs:tem

3929         XML_Char *tem = poolStoreString(&dtd->pool,
3933 if (!tem)
3935 normalizePublicId(tem);
3936 declEntity->publicId = tem;
4368 XML_Char *tem = poolStoreString(&tempPool,
4372 if (!tem)
4374 normalizePublicId(tem);
4375 declNotationPublicId = tem;
5298 const char *tem;
5305 tem = start + XmlNameLength(enc, start);
5306 target = poolStoreString(&tempPool, enc, start, tem);
5311 XmlSkipS(enc, tem),
5925 const XML_Char *tem = poolCopyString(newPool, oldE->systemId);
5926 if (!tem)
5928 newE->systemId = tem;
5934 tem = poolCopyString(newPool, cachedOldBase);
5935 if (!tem)
5937 cachedNewBase = newE->base = tem;
5941 tem = poolCopyString(newPool, oldE->publicId);
5942 if (!tem)
5944 newE->publicId = tem;
5948 const XML_Char *tem = poolCopyStringN(newPool, oldE->textPtr,
5950 if (!tem)
5952 newE->textPtr = tem;
5956 const XML_Char *tem = poolCopyString(newPool, oldE->notation);
5957 if (!tem)
5959 newE->notation = tem;
6107 NAMED *tem = *(iter->p)++;
6108 if (tem)
6109 return tem;
6133 BLOCK *tem = p->next;
6136 p = tem;
6150 BLOCK *tem = p->next;
6152 p = tem;
6156 BLOCK *tem = p->next;
6158 p = tem;
6241 BLOCK *tem = pool->freeBlocks->next;
6244 pool->freeBlocks = tem;
6268 BLOCK *tem;
6274 tem = (BLOCK *)pool->mem->malloc_fcn(offsetof(BLOCK, s)
6276 if (!tem)
6278 tem->size = blockSize;
6279 tem->next = pool->blocks;
6280 pool->blocks = tem;
6282 memcpy(tem->s, pool->start,
6284 pool->ptr = tem->s + (pool->ptr - pool->start);
6285 pool->start = tem->s;
6286 pool->end = tem->s + blockSize;