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

  /libcore/luni/src/main/java/java/io/
FileInputStream.java 59 private final boolean shouldClose;
79 this.shouldClose = true;
96 this.shouldClose = false;
120 if (shouldClose) {
FileOutputStream.java 56 private final boolean shouldClose;
89 this.shouldClose = true;
103 this.shouldClose = false;
138 if (shouldClose) {
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.h 182 template <bool shouldClose(const ContainerNode*)>
HTMLTreeBuilder.cpp 601 template <bool shouldClose(const ContainerNode*)>
608 if (shouldClose(node)) {
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.cpp 262 bool shouldClose = false;
263 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::RunBeforeUnloadConfirmPanel(message, webFrame->frameID()), Messages::WebPageProxy::RunBeforeUnloadConfirmPanel::Reply(shouldClose), m_page->pageID()))
266 return shouldClose;
  /external/llvm/lib/Support/
raw_ostream.cpp 441 ShouldClose = true;
461 ShouldClose = false;
467 ShouldClose = true;
471 /// ShouldClose is true, this closes the file when the stream is destroyed.
472 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
474 ShouldClose(shouldClose), Error(false), UseAtomicWrites(false) {
493 if (ShouldClose)
568 assert(ShouldClose);
569 ShouldClose = false
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 301 bool ShouldClose;
358 /// ShouldClose is true, this closes the file when the stream is destroyed.
359 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h 180 static bool shouldClose(QWebFrame* frame);
DumpRenderTreeSupportQt.cpp 866 bool DumpRenderTreeSupportQt::shouldClose(QWebFrame* frame)
869 return coreFrame->loader()->shouldClose();
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebViewPrivate.idl 129 @method shouldClose:
134 HRESULT shouldClose([out, retval] BOOL* result);
  /external/webkit/Source/WebCore/loader/
FrameLoader.h 334 bool shouldClose();
FrameLoader.cpp     [all...]
  /external/webkit/Source/WebKit/wx/
WebFrame.cpp 476 bool wxWebFrame::ShouldClose() const
479 return m_impl->frame->loader()->shouldClose();
  /external/webkit/Source/WebKit/mac/WebView/
WebViewPrivate.h 170 - (BOOL)shouldClose;
WebView.mm     [all...]
  /external/webkit/Source/WebCore/page/
DOMWindow.cpp 266 if (!frame->loader()->shouldClose())
934 if (!m_frame->loader()->shouldClose())
    [all...]
  /external/webkit/Source/WebKit/win/
WebView.h 700 virtual HRESULT STDMETHODCALLTYPE shouldClose(
    [all...]
WebView.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 568 void runBeforeUnloadConfirmPanel(const String& message, uint64_t frameID, bool& shouldClose);
    [all...]
WebPageProxy.cpp     [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.cpp 687 return DumpRenderTreeSupportQt::shouldClose(m_drt->webPage()->mainFrame());
  /external/webkit/Tools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 130 return [[mainFrame webView] shouldClose];
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 124 viewPrivate->shouldClose(&result);
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 428 if (!m_mainFrame->coreFrame()->loader()->shouldClose())
    [all...]

Completed in 1354 milliseconds