Lines Matching refs:myContext
2018 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context); in ucurr_countCurrencyList() local
2019 uint32_t currType = myContext->currType; in ucurr_countCurrencyList()
2036 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context); in ucurr_nextCurrencyList() local
2039 while (myContext->listIdx < UPRV_LENGTHOF(gCurrencyList)-1) { in ucurr_nextCurrencyList()
2040 const struct CurrencyList *currItem = &gCurrencyList[myContext->listIdx++]; in ucurr_nextCurrencyList()
2041 if (UCURR_MATCHES_BITMASK(currItem->currType, myContext->currType)) in ucurr_nextCurrencyList()
2246 UCurrencyContext *myContext; in ucurr_openISOCurrencies() local
2254 myContext = (UCurrencyContext*)uprv_malloc(sizeof(UCurrencyContext)); in ucurr_openISOCurrencies()
2255 if (myContext == NULL) { in ucurr_openISOCurrencies()
2260 myContext->currType = currType; in ucurr_openISOCurrencies()
2261 myContext->listIdx = 0; in ucurr_openISOCurrencies()
2262 myEnum->context = myContext; in ucurr_openISOCurrencies()