Home | History | Annotate | Download | only in common

Lines Matching refs:nextSeparator

812     const char* nextSeparator = NULL;
846 nextSeparator = uprv_strchr(startSearchHere, '=');
848 if(!nextSeparator) {
851 if(nextSeparator - startSearchHere >= ULOC_KEYWORD_BUFFER_LEN) {
856 for(i = 0; i < nextSeparator - startSearchHere; i++) {
866 startSearchHere = uprv_strchr(nextSeparator, ';');
869 nextSeparator++;
870 while(*nextSeparator == ' ') {
871 nextSeparator++;
874 if(startSearchHere && startSearchHere - nextSeparator < bufferCapacity) {
878 uprv_strncpy(buffer, nextSeparator, startSearchHere - nextSeparator);
879 result = u_terminateChars(buffer, bufferCapacity, (int32_t)(startSearchHere - nextSeparator), status);
880 } else if(!startSearchHere && (int32_t)uprv_strlen(nextSeparator) < bufferCapacity) { /* last item in string */
881 i = (int32_t)uprv_strlen(nextSeparator);
882 while(nextSeparator[i - 1] == ' ') {
885 uprv_strncpy(buffer, nextSeparator, i);
891 result = (int32_t)(startSearchHere - nextSeparator);
893 result = (int32_t)uprv_strlen(nextSeparator);
920 char* nextSeparator = NULL;
1007 nextSeparator = uprv_strchr(nextEqualsign, ';');
1015 if (nextSeparator) {
1017 foundValueLen = (int32_t)(nextSeparator - nextEqualsign);
1028 if(nextSeparator) { /* RH side */
1029 uprv_memmove(nextSeparator - delta, nextSeparator, bufLen-(nextSeparator-buffer));
1041 if(nextSeparator) { /* RH side */
1042 uprv_memmove(nextSeparator+delta,nextSeparator, bufLen-(nextSeparator-buffer));
1055 uprv_memmove(keywordStart, nextSeparator+1, bufLen-((nextSeparator+1)-buffer));
1056 keywordStart[bufLen-((nextSeparator+1)-buffer)]=0;
1057 return (int32_t)(bufLen-((nextSeparator+1)-keywordStart));
1064 keywordStart = nextSeparator;