Searched refs:myContext (Results 1 – 5 of 5) sorted by relevance
/external/icu4c/common/ |
D | ucnv_io.c | 765 UAliasContext *myContext = (UAliasContext *)(enumerator->context); in ucnv_io_countStandardAliases() local 766 uint32_t listOffset = myContext->listOffset; in ucnv_io_countStandardAliases() 779 UAliasContext *myContext = (UAliasContext *)(enumerator->context); in ucnv_io_nextStandardAliases() local 780 uint32_t listOffset = myContext->listOffset; in ucnv_io_nextStandardAliases() 786 if (myContext->listIdx < listCount) { in ucnv_io_nextStandardAliases() 787 const char *myStr = GET_STRING(currList[myContext->listIdx++]); in ucnv_io_nextStandardAliases() 836 UAliasContext *myContext; in ucnv_openStandardNames() local 844 myContext = uprv_malloc(sizeof(UAliasContext)); in ucnv_openStandardNames() 845 if (myContext == NULL) { in ucnv_openStandardNames() 850 myContext->listOffset = listOffset; in ucnv_openStandardNames() [all …]
|
D | uloc.c | 1521 UKeywordsContext *myContext = NULL; in uloc_openKeywordList() local 1534 myContext = uprv_malloc(sizeof(UKeywordsContext)); in uloc_openKeywordList() 1535 if (myContext == NULL) { in uloc_openKeywordList() 1540 myContext->keywords = (char *)uprv_malloc(keywordListSize+1); in uloc_openKeywordList() 1541 uprv_memcpy(myContext->keywords, keywordList, keywordListSize); in uloc_openKeywordList() 1542 myContext->keywords[keywordListSize] = 0; in uloc_openKeywordList() 1543 myContext->current = myContext->keywords; in uloc_openKeywordList() 1544 result->context = myContext; in uloc_openKeywordList()
|
D | uresbund.c | 2317 ULocalesContext *myContext = NULL; in ures_openAvailableLocales() local 2322 myContext = uprv_malloc(sizeof(ULocalesContext)); in ures_openAvailableLocales() 2324 if(!en || !myContext) { in ures_openAvailableLocales() 2327 uprv_free(myContext); in ures_openAvailableLocales() 2332 ures_initStackObject(&myContext->installed); in ures_openAvailableLocales() 2333 ures_initStackObject(&myContext->curr); in ures_openAvailableLocales() 2335 ures_getByKey(idx, INDEX_TAG, &myContext->installed, status); in ures_openAvailableLocales() 2339 path, INDEX_LOCALE_NAME, INDEX_TAG, ures_getKey(&myContext->installed)); in ures_openAvailableLocales() 2341 en->context = myContext; in ures_openAvailableLocales() 2346 ures_close(&myContext->installed); in ures_openAvailableLocales() [all …]
|
/external/icu4c/i18n/ |
D | ucurr.cpp | 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() [all …]
|
/external/clang/test/Analysis/ |
D | retain-release.m | 1001 void rdar_7184450(CGContextRef myContext, CGFloat x, CGPoint myStartPoint, 1018 CGContextDrawLinearGradient(myContext, myGradient, myStartPoint, myEndPoint, 1023 void rdar_7184450_pos(CGContextRef myContext, CGFloat x, CGPoint myStartPoint, 1039 CGContextDrawLinearGradient(myContext, myGradient, myStartPoint, myEndPoint,
|