HomeSort by relevance Sort by last modified time
    Searched refs:bytesLength (Results 1 - 13 of 13) sorted by null

  /external/webkit/WebCore/platform/mac/
KURLMac.mm 40 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/WebCore/platform/cf/
KURLCFNet.cpp 43 CFIndex bytesLength = CFURLGetBytes(url, 0, 0);
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/chromium/third_party/icu/source/test/intltest/
convtest.h 39 int32_t bytesLength;
convtest.cpp 114 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode);
230 cc.bytes=testCase->getBinary(cc.bytesLength, "bytes", errorCode);
236 } else if(offsetsLength!=cc.bytesLength) {
238 i, cc.bytesLength, offsetsLength);
761 bytesLimit=source+cc.bytesLength;
    [all...]
  /external/icu4c/test/intltest/
convtest.h 39 int32_t bytesLength;
convtest.cpp 129 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);
792 bytesLimit=source+cc.bytesLength;
    [all...]
  /external/chromium/third_party/icu/source/tools/toolutil/
xmlparser.cpp 170 int32_t fileLength, bytesLength, length, capacity;
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=T_FileStream_read(f, bytes, (int32_t)sizeof(bytes))
    [all...]
ucm.c 906 table->bytesLength=table->codePointsLength=0;
975 idx=table->bytesLength;
976 table->bytesLength+=m->bLen;
977 if(table->bytesLength>table->bytesCapacity) {
    [all...]
ucm.h 75 int32_t bytesCapacity, bytesLength;
  /external/icu4c/tools/toolutil/
xmlparser.cpp 170 int32_t fileLength, bytesLength, length, capacity;
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=T_FileStream_read(f, bytes, (int32_t)sizeof(bytes))
    [all...]
ucm.c 906 table->bytesLength=table->codePointsLength=0;
975 idx=table->bytesLength;
976 table->bytesLength+=m->bLen;
977 if(table->bytesLength>table->bytesCapacity) {
    [all...]
ucm.h 75 int32_t bytesCapacity, bytesLength;
  /frameworks/base/core/java/android/net/
Uri.java     [all...]

Completed in 610 milliseconds