Home
last modified time | relevance | path

Searched refs:bFolder (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fxcrt/
Dfx_folder_windows.cpp23 bool GetNextFile(ByteString* filename, bool* bFolder) override;
54 bool FX_WindowsFolder::GetNextFile(ByteString* filename, bool* bFolder) { in GetNextFile() argument
59 *bFolder = !!(m_FindData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY); in GetNextFile()
Dfx_folder_posix.cpp27 bool GetNextFile(ByteString* filename, bool* bFolder) override;
53 bool FX_PosixFolder::GetNextFile(ByteString* filename, bool* bFolder) { in GetNextFile() argument
64 *bFolder = S_ISDIR(deStat.st_mode); in GetNextFile()
Dfx_folder.h21 virtual bool GetNextFile(ByteString* filename, bool* bFolder) = 0;
/external/pdfium/core/fxge/android/
Dcfpf_skiafontmgr.cpp351 bool bFolder = false; in ScanPath() local
352 while (handle->GetNextFile(&filename, &bFolder)) { in ScanPath()
353 if (bFolder) { in ScanPath()
365 if (bFolder) in ScanPath()
/external/pdfium/core/fxge/
Dcfx_folderfontinfo.cpp170 bool bFolder; in ScanPath() local
171 while (handle->GetNextFile(&filename, &bFolder)) { in ScanPath()
172 if (bFolder) { in ScanPath()
190 bFolder ? ScanPath(fullpath) : ScanFile(fullpath); in ScanPath()