Searched refs:fileBuf (Results 1 – 6 of 6) sorted by relevance
/external/icu4c/test/intltest/ |
D | dcfmtest.cpp | 447 char *fileBuf = NULL; in ReadAndConvertFile() local 474 fileBuf = new char[fileSize]; in ReadAndConvertFile() 476 amtRead = fread(fileBuf, 1, fileSize, f); in ReadAndConvertFile() 489 fileBufNoBOM = fileBuf + 3; in ReadAndConvertFile() 491 if (fileSize<3 || uprv_strncmp(fileBuf, "\xEF\xBB\xBF", 3) != 0) { in ReadAndConvertFile() 494 fileBufNoBOM = fileBuf; in ReadAndConvertFile() 516 delete[] fileBuf; in ReadAndConvertFile()
|
D | itspoof.cpp | 349 LocalArray<char> fileBuf(new char[fileSize]); in testConfData() local 351 int32_t amt_read = fread(fileBuf.getAlias(), 1, fileSize, f.getAlias()); in testConfData() 357 … UnicodeString confusablesTxt = UnicodeString::fromUTF8(StringPiece(fileBuf.getAlias(), fileSize)); in testConfData()
|
D | rbbitst.cpp | 2010 char *fileBuf = NULL; in ReadAndConvertFile() local 2036 fileBuf = new char[fileSize]; in ReadAndConvertFile() 2038 amt_read = fread(fileBuf, 1, fileSize, f); in ReadAndConvertFile() 2051 fileBufC = fileBuf; in ReadAndConvertFile() 2053 fileBuf, fileSize, &signatureLength, &status); in ReadAndConvertFile() 2093 delete []fileBuf; in ReadAndConvertFile()
|
D | regextst.cpp | 3786 char *fileBuf = NULL; in ReadAndConvertFile() local 3812 fileBuf = new char[fileSize]; in ReadAndConvertFile() 3814 amt_read = fread(fileBuf, 1, fileSize, f); in ReadAndConvertFile() 3827 fileBufC = fileBuf; in ReadAndConvertFile() 3829 fileBuf, fileSize, &signatureLength, &status); in ReadAndConvertFile() 3873 delete[] fileBuf; in ReadAndConvertFile()
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebChromeClient.cpp | 741 Vector<WCHAR> fileBuf(multiFile ? maxFilePathsListSize : MAX_PATH); in runOpenPanel() local 748 fileBuf[0] = '\0'; in runOpenPanel() 755 ofn.lpstrFile = fileBuf.data(); in runOpenPanel() 756 ofn.nMaxFile = fileBuf.size(); in runOpenPanel() 764 WCHAR* files = fileBuf.data(); in runOpenPanel() 777 if (files != fileBuf.data() || nextFile.isEmpty()) in runOpenPanel()
|
/external/clang/lib/ARCMigrate/ |
D | FileRemapper.cpp | 70 OwningPtr<llvm::MemoryBuffer> fileBuf; in initFromFile() local 71 if (llvm::MemoryBuffer::getFile(infoFile.c_str(), fileBuf)) in initFromFile() 75 fileBuf->getBuffer().split(lines, "\n"); in initFromFile()
|