Home
last modified time | relevance | path

Searched refs:fullLength (Results 1 – 4 of 4) sorted by relevance

/external/webkit/WebKit/win/
DDefaultDownloadDelegate.cpp120 size_t fullLength = _tcslen(pathChars) + SysStringLen(filename) + 2; in decideDestinationWithSuggestedFilename() local
121 BSTR full = SysAllocStringLen(0, (UINT)fullLength); in decideDestinationWithSuggestedFilename()
125 _tcscpy_s(full, fullLength, pathChars); in decideDestinationWithSuggestedFilename()
126 _tcscat_s(full, fullLength, _T("\\")); in decideDestinationWithSuggestedFilename()
127 _tcscat_s(full, fullLength, filename); in decideDestinationWithSuggestedFilename()
/external/icu4c/common/
Ducase.c520 int32_t index, closureLength, fullLength, length; in ucase_addCaseClosure() local
547 GET_SLOT_VALUE(excWord, UCASE_EXC_FULL_MAPPINGS, pe, fullLength); in ucase_addCaseClosure()
552 fullLength&=0xffff; /* bits 16 and higher are reserved */ in ucase_addCaseClosure()
555 pe+=fullLength&UCASE_FULL_LOWER; in ucase_addCaseClosure()
556 fullLength>>=4; in ucase_addCaseClosure()
559 length=fullLength&0xf; in ucase_addCaseClosure()
566 fullLength>>=4; in ucase_addCaseClosure()
567 pe+=fullLength&0xf; in ucase_addCaseClosure()
568 fullLength>>=4; in ucase_addCaseClosure()
569 pe+=fullLength; in ucase_addCaseClosure()
/external/icu4c/i18n/
Duregex.cpp428 int32_t fullLength = endIx - startIx; in uregex_group() local
429 int32_t copyLength = fullLength; in uregex_group()
445 return fullLength; in uregex_group()
/external/icu4c/test/cintltst/
Dcucdtst.c3151 const UChar *full, int32_t fullLength, in testFold() argument
3167 if(length2!=fullLength || 0!=u_memcmp(t, full, fullLength)) { in testFold()