Lines Matching refs:myContext
1797 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context); in ucurr_countCurrencyList() local
1798 uint32_t currType = myContext->currType; in ucurr_countCurrencyList()
1815 UCurrencyContext *myContext = (UCurrencyContext *)(enumerator->context); in ucurr_nextCurrencyList() local
1818 while (myContext->listIdx < (sizeof(gCurrencyList)/sizeof(gCurrencyList[0]))-1) { in ucurr_nextCurrencyList()
1819 const struct CurrencyList *currItem = &gCurrencyList[myContext->listIdx++]; in ucurr_nextCurrencyList()
1820 if (UCURR_MATCHES_BITMASK(currItem->currType, myContext->currType)) in ucurr_nextCurrencyList()
1978 UCurrencyContext *myContext; in ucurr_openISOCurrencies() local
1986 myContext = (UCurrencyContext*)uprv_malloc(sizeof(UCurrencyContext)); in ucurr_openISOCurrencies()
1987 if (myContext == NULL) { in ucurr_openISOCurrencies()
1992 myContext->currType = currType; in ucurr_openISOCurrencies()
1993 myContext->listIdx = 0; in ucurr_openISOCurrencies()
1994 myEnum->context = myContext; in ucurr_openISOCurrencies()