Lines Matching refs:myContext
2045 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context); in ucurr_countCurrencyList() local
2046 uint32_t currType = myContext->currType; in ucurr_countCurrencyList()
2063 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context); in ucurr_nextCurrencyList() local
2066 while (myContext->listIdx < UPRV_LENGTHOF(gCurrencyList)-1) { in ucurr_nextCurrencyList()
2067 const struct CurrencyList *currItem = &gCurrencyList[myContext->listIdx++]; in ucurr_nextCurrencyList()
2068 if (UCURR_MATCHES_BITMASK(currItem->currType, myContext->currType)) in ucurr_nextCurrencyList()
2273 UCurrencyContext *myContext; in ucurr_openISOCurrencies() local
2281 myContext = (UCurrencyContext*)uprv_malloc(sizeof(UCurrencyContext)); in ucurr_openISOCurrencies()
2282 if (myContext == NULL) { in ucurr_openISOCurrencies()
2287 myContext->currType = currType; in ucurr_openISOCurrencies()
2288 myContext->listIdx = 0; in ucurr_openISOCurrencies()
2289 myEnum->context = myContext; in ucurr_openISOCurrencies()