Lines Matching refs:myContext
2026 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context); in ucurr_countCurrencyList() local
2027 uint32_t currType = myContext->currType; in ucurr_countCurrencyList()
2044 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context); in ucurr_nextCurrencyList() local
2047 while (myContext->listIdx < (sizeof(gCurrencyList)/sizeof(gCurrencyList[0]))-1) { in ucurr_nextCurrencyList()
2048 const struct CurrencyList *currItem = &gCurrencyList[myContext->listIdx++]; in ucurr_nextCurrencyList()
2049 if (UCURR_MATCHES_BITMASK(currItem->currType, myContext->currType)) in ucurr_nextCurrencyList()
2250 UCurrencyContext *myContext; in ucurr_openISOCurrencies() local
2258 myContext = (UCurrencyContext*)uprv_malloc(sizeof(UCurrencyContext)); in ucurr_openISOCurrencies()
2259 if (myContext == NULL) { in ucurr_openISOCurrencies()
2264 myContext->currType = currType; in ucurr_openISOCurrencies()
2265 myContext->listIdx = 0; in ucurr_openISOCurrencies()
2266 myEnum->context = myContext; in ucurr_openISOCurrencies()