Home
last modified time | relevance | path

Searched refs:newPool (Results 1 – 7 of 7) sorted by relevance

/external/antlr/runtime/C/src/
Dantlr3commontoken.c68 static ANTLR3_BOOLEAN newPool (pANTLR3_TOKEN_FACTORY factory);
117 newPool(factory); in antlr3TokenFactoryNew()
152 newPool(pANTLR3_TOKEN_FACTORY factory) in newPool() function
218 if (!newPool(factory)) in newPoolToken()
261 newPool(factory); in factoryReset()
Dantlr3commontree.c58 static ANTLR3_BOOLEAN newPool (pANTLR3_ARBORETUM factory);
106 newPool(factory); in antlr3ArboretumNew()
124 newPool(pANTLR3_ARBORETUM factory) in newPool() function
194 if (!newPool(factory)) in newPoolTree()
Dantlr3collections.c100 static ANTLR3_BOOLEAN newPool (pANTLR3_VECTOR_FACTORY factory);
1475 newPool(factory); in antlr3VectorFactoryNew()
1517 newPool(pANTLR3_VECTOR_FACTORY factory) in newPool() function
1701 if (!newPool(factory)) in newVector()
/external/python/cpython3/Modules/expat/
Dxmlparse.c6285 STRING_POOL *newPool, const HASH_TABLE *oldTable) { in copyEntityTable() argument
6298 name = poolCopyString(newPool, oldE->name); in copyEntityTable()
6305 const XML_Char *tem = poolCopyString(newPool, oldE->systemId); in copyEntityTable()
6314 tem = poolCopyString(newPool, cachedOldBase); in copyEntityTable()
6321 tem = poolCopyString(newPool, oldE->publicId); in copyEntityTable()
6328 = poolCopyStringN(newPool, oldE->textPtr, oldE->textLen); in copyEntityTable()
6335 const XML_Char *tem = poolCopyString(newPool, oldE->notation); in copyEntityTable()
/external/expat/lib/
Dxmlparse.c6306 STRING_POOL *newPool, const HASH_TABLE *oldTable) { in copyEntityTable() argument
6319 name = poolCopyString(newPool, oldE->name); in copyEntityTable()
6326 const XML_Char *tem = poolCopyString(newPool, oldE->systemId); in copyEntityTable()
6335 tem = poolCopyString(newPool, cachedOldBase); in copyEntityTable()
6342 tem = poolCopyString(newPool, oldE->publicId); in copyEntityTable()
6349 = poolCopyStringN(newPool, oldE->textPtr, oldE->textLen); in copyEntityTable()
6356 const XML_Char *tem = poolCopyString(newPool, oldE->notation); in copyEntityTable()
/external/python/cpython2/Modules/expat/
Dxmlparse.c6574 STRING_POOL *newPool, in copyEntityTable() argument
6589 name = poolCopyString(newPool, oldE->name); in copyEntityTable()
6596 const XML_Char *tem = poolCopyString(newPool, oldE->systemId); in copyEntityTable()
6605 tem = poolCopyString(newPool, cachedOldBase); in copyEntityTable()
6612 tem = poolCopyString(newPool, oldE->publicId); in copyEntityTable()
6619 const XML_Char *tem = poolCopyStringN(newPool, oldE->textPtr, in copyEntityTable()
6627 const XML_Char *tem = poolCopyString(newPool, oldE->notation); in copyEntityTable()
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp3042 std::vector<Semaphore> newPool(mPoolSize); in allocateNewPool() local
3044 for (Semaphore &semaphore : newPool) in allocateNewPool()
3053 ANGLE_TRY(allocateNewEntryPool(contextVk, std::move(newPool))); in allocateNewPool()