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