Searched refs:m_files (Results 1 - 4 of 4) sorted by relevance

/external/webkit/WebCore/html/
H A DFileList.cpp39 if (index >= m_files.size())
41 return m_files[index].get();
H A DFileList.h44 unsigned length() const { return m_files.size(); }
47 bool isEmpty() const { return m_files.isEmpty(); }
48 void clear() { m_files.clear(); }
49 void append(PassRefPtr<File> file) { m_files.append(file); }
54 Vector<RefPtr<File> > m_files; member in class:WebCore::FileList
/external/webkit/WebCore/platform/wx/
H A DFileSystemWx.cpp145 wxDirTraverserNonRecursive(wxString basePath, wxArrayString& files) : m_basePath(basePath), m_files(files) { }
152 m_files.push_back(filename);
162 m_files.push_back(dirname);
169 wxArrayString& m_files; member in class:WebCore::wxDirTraverserNonRecursive
/external/webkit/WebCore/bindings/js/
H A DSerializedScriptValue.cpp156 unsigned length() const { return m_files.size(); }
157 const String& item(unsigned idx) { return m_files[idx]; }
163 m_files.reserveCapacity(length);
165 m_files.append(list->item(i)->path().crossThreadString());
168 Vector<String> m_files;

Completed in 425 milliseconds