OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:allowMultipleFiles
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebKit2/UIProcess/API/C/
WKOpenPanelParameters.cpp
41
return toImpl(parametersRef)->
allowMultipleFiles
();
/external/webkit/Source/WebKit2/Shared/
WebOpenPanelParameters.h
48
bool
allowMultipleFiles
;
57
bool
allowMultipleFiles
() const { return m_data.
allowMultipleFiles
; }
WebOpenPanelParameters.cpp
49
encoder->encode(CoreIPC::In(
allowMultipleFiles
, allowsDirectoryUpload, acceptTypes, filenames));
54
return decoder->decode(CoreIPC::Out(result.
allowMultipleFiles
, result.allowsDirectoryUpload, result.acceptTypes, result.filenames));
/external/webkit/Source/WebKit/mac/WebView/
WebUIDelegate.h
414
@method webView:runOpenPanelForFileButtonWithResultListener:
allowMultipleFiles
418
@param
allowMultipleFiles
YES if the open panel should allow myltiple files to be selected, NO if not.
422
- (void)webView:(WebView *)sender runOpenPanelForFileButtonWithResultListener:(id<WebOpenPanelResultListener>)resultListener
allowMultipleFiles
:(BOOL)
allowMultipleFiles
WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_IN_WEBKIT_VERSION_4_0);
/external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.mm
779
BOOL
allowMultipleFiles
= chooser->allowsMultipleFiles();
782
if ([delegate respondsToSelector:@selector(webView:runOpenPanelForFileButtonWithResultListener:
allowMultipleFiles
:)])
783
CallUIDelegate(m_webView, @selector(webView:runOpenPanelForFileButtonWithResultListener:
allowMultipleFiles
:), listener,
allowMultipleFiles
);
[
all
...]
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.cpp
599
parameters.
allowMultipleFiles
= fileChooser->allowsMultipleFiles();
Completed in 482 milliseconds