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

/external/webkit/Source/WebCore/platform/mac/
H A 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/webkit/Source/WebCore/platform/cf/
H A DKURLCFNet.cpp43 CFIndex bytesLength = CFURLGetBytes(url, 0, 0); local
44 Vector<char, 512> buffer(bytesLength + 6); // 5 for "file:", 1 for null character to end C string
46 CFURLGetBytes(url, reinterpret_cast<UInt8*>(bytes), bytesLength);
47 bytes[bytesLength] = '\0';
/external/icu4c/test/intltest/
H A Dconvtest.h39 int32_t bytesLength; member in struct:ConversionCase
H A Dconvtest.cpp129 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode);
254 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode);
260 } else if(offsetsLength!=cc.bytesLength) {
262 i, cc.bytesLength, offsetsLength);
794 bytesLimit=source+cc.bytesLength;
1066 (const char *)cc.bytes, cc.bytesLength,
1082 (const char *)cc.bytes, cc.bytesLength,
1146 s=printBytes(cc.bytes, cc.bytesLength, bytesString);
1169 bytesString, cc.bytesLength,
1574 if(cc.bytesLength!
[all...]
/external/icu4c/tools/toolutil/
H A Dxmlparser.cpp170 int32_t fileLength, bytesLength, length, capacity; local
183 bytesLength=T_FileStream_read(f, bytes, (int32_t)sizeof(bytes));
184 if(bytesLength<(int32_t)sizeof(bytes)) {
186 fileLength=bytesLength;
198 charset=ucnv_detectUnicodeSignature(bytes, bytesLength, NULL, &errorCode);
210 buffer=src.getBuffer(bytesLength);
221 &pb, bytes+bytesLength,
275 // convert contents of bytes[bytesLength]
289 &pb, bytes+bytesLength,
309 bytesLength
[all...]
H A Ducm.c906 table->bytesLength=table->codePointsLength=0;
975 idx=table->bytesLength;
976 table->bytesLength+=m->bLen;
977 if(table->bytesLength>table->bytesCapacity) {
H A Ducm.h75 int32_t bytesCapacity, bytesLength; member in struct:UCMTable

Completed in 144 milliseconds