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

  /external/webkit/WebCore/platform/network/
FormData.h 35 FormDataElement(const String& filename, bool shouldGenerateFile) : m_type(encodedFile), m_filename(filename), m_shouldGenerateFile(shouldGenerateFile) { }
75 void appendFile(const String& filename, bool shouldGenerateFile = false);
FormData.cpp 128 void FormData::appendFile(const String& filename, bool shouldGenerateFile)
130 m_elements.append(FormDataElement(filename, shouldGenerateFile));
  /external/webkit/WebCore/html/
HTMLFormElement.cpp 232 bool shouldGenerateFile = false;
242 shouldGenerateFile = page->chrome()->client()->shouldReplaceWithGeneratedFileForUpload(path, generatedFileName);
243 if (shouldGenerateFile)
269 result->appendFile(value.file()->path(), shouldGenerateFile);

Completed in 1448 milliseconds