Home
last modified time | relevance | path

Searched refs:bytesLength (Results 1 – 7 of 7) sorted by relevance

/external/webkit/WebCore/platform/cf/
DKURLCFNet.cpp43 CFIndex bytesLength = CFURLGetBytes(url, 0, 0); in KURL() local
44 … Vector<char, 512> buffer(bytesLength + 6); // 5 for "file:", 1 for null character to end C string in KURL()
46 CFURLGetBytes(url, reinterpret_cast<UInt8*>(bytes), bytesLength); in KURL()
47 bytes[bytesLength] = '\0'; in KURL()
/external/icu4c/tools/toolutil/
Dxmlparser.cpp165 int32_t fileLength, bytesLength, length, capacity; in parseFile() local
178 bytesLength=T_FileStream_read(f, bytes, (int32_t)sizeof(bytes)); in parseFile()
179 if(bytesLength<(int32_t)sizeof(bytes)) { in parseFile()
181 fileLength=bytesLength; in parseFile()
193 charset=ucnv_detectUnicodeSignature(bytes, bytesLength, NULL, &errorCode); in parseFile()
205 buffer=src.getBuffer(bytesLength); in parseFile()
216 &pb, bytes+bytesLength, in parseFile()
284 &pb, bytes+bytesLength, in parseFile()
304 bytesLength=T_FileStream_read(f, bytes, (int32_t)sizeof(bytes)); in parseFile()
305 if(bytesLength==0) { in parseFile()
Ducm.c906 table->bytesLength=table->codePointsLength=0; in ucm_resetTable()
975 index=table->bytesLength; in ucm_addMapping()
976 table->bytesLength+=m->bLen; in ucm_addMapping()
977 if(table->bytesLength>table->bytesCapacity) { in ucm_addMapping()
Ducm.h75 int32_t bytesCapacity, bytesLength; member
/external/webkit/WebCore/platform/mac/
DKURLMac.mm40 CFIndex bytesLength = CFURLGetBytes(reinterpret_cast<CFURLRef>(url), 0, 0);
41 … Vector<char, 512> buffer(bytesLength + 6); // 5 for "file:", 1 for null character to end C string
43 CFURLGetBytes(reinterpret_cast<CFURLRef>(url), reinterpret_cast<UInt8*>(bytes), bytesLength);
44 bytes[bytesLength] = '\0';
/external/icu4c/test/intltest/
Dconvtest.cpp114 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode); in TestToUnicode()
230 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode); in TestFromUnicode()
236 } else if(offsetsLength!=cc.bytesLength) { in TestFromUnicode()
238 i, cc.bytesLength, offsetsLength); in TestFromUnicode()
758 bytesLimit=source+cc.bytesLength; in stepToUnicode()
1033 (const char *)cc.bytes, cc.bytesLength, in ToUnicodeCase()
1049 (const char *)cc.bytes, cc.bytesLength, in ToUnicodeCase()
1113 s=printBytes(cc.bytes, cc.bytesLength, bytesString); in checkToUnicode()
1136 bytesString, cc.bytesLength, in checkToUnicode()
1541 if(cc.bytesLength!=resultLength) { in checkFromUnicode()
[all …]
Dconvtest.h39 int32_t bytesLength; member