Home
last modified time | relevance | path

Searched refs:FileInputType (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DFileInputType.cpp51 inline FileInputType::FileInputType(HTMLInputElement& element) in FileInputType() function in WebCore::FileInputType
57 PassRefPtr<InputType> FileInputType::create(HTMLInputElement& element) in create()
59 return adoptRef(new FileInputType(element)); in create()
62 Vector<FileChooserFileInfo> FileInputType::filesFromFormControlState(const FormControlState& state) in filesFromFormControlState()
74 const AtomicString& FileInputType::formControlType() const in formControlType()
79 FormControlState FileInputType::saveFormControlState() const in saveFormControlState()
92 void FileInputType::restoreFormControlState(const FormControlState& state) in restoreFormControlState()
99 bool FileInputType::appendFormData(FormDataList& encoding, bool multipart) const in appendFormData()
128 bool FileInputType::valueMissing(const String& value) const in valueMissing()
133 String FileInputType::valueMissingText() const in valueMissingText()
[all …]
DFileInputType.h44 class FileInputType : public BaseClickableWithKeyInputType, private FileChooserClient {
50 FileInputType(HTMLInputElement&);
DInputType.cpp89 map->add(InputTypeNames::file, FileInputType::create); in createInputTypeFactoryMap()
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_html.target.linux-arm.mk198 third_party/WebKit/Source/core/html/forms/FileInputType.cpp \
Dwebcore_html.target.darwin-x86.mk198 third_party/WebKit/Source/core/html/forms/FileInputType.cpp \
Dwebcore_html.target.linux-mips.mk198 third_party/WebKit/Source/core/html/forms/FileInputType.cpp \
Dwebcore_html.target.darwin-mips.mk198 third_party/WebKit/Source/core/html/forms/FileInputType.cpp \
Dwebcore_html.target.darwin-arm.mk198 third_party/WebKit/Source/core/html/forms/FileInputType.cpp \
Dwebcore_html.target.linux-x86.mk198 third_party/WebKit/Source/core/html/forms/FileInputType.cpp \
Dcore.gypi2504 'html/forms/FileInputType.cpp',
2505 'html/forms/FileInputType.h',
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLInputElement.cpp180 return FileInputType::filesFromFormControlState(state); in filesFromFileInputFormControlState()