Home | History | Annotate | Download | only in common

Lines Matching full:mycontext

1528     UKeywordsContext *myContext = NULL;
1541 myContext = static_cast<UKeywordsContext *>(uprv_malloc(sizeof(UKeywordsContext)));
1542 if (myContext == NULL) {
1547 myContext->keywords = (char *)uprv_malloc(keywordListSize+1);
1548 uprv_memcpy(myContext->keywords, keywordList, keywordListSize);
1549 myContext->keywords[keywordListSize] = 0;
1550 myContext->current = myContext->keywords;
1551 result->context = myContext;