/external/chromium/chrome/browser/ui/cocoa/ |
fullscreen_window.mm | 75 BOOL shouldClose = YES; 80 shouldClose = [delegate windowShouldClose:self]; 82 if (shouldClose) {
|
/external/llvm/lib/Bitcode/Writer/ |
BitWriter.cpp | 29 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, 31 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
|
/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/llvm/include/llvm-c/ |
BitWriter.h | 41 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
|
/external/llvm/lib/Support/ |
raw_ostream.cpp | 447 ShouldClose = true; 467 ShouldClose = false; 473 ShouldClose = true; 477 /// ShouldClose is true, this closes the file when the stream is destroyed. 478 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) 480 ShouldClose(shouldClose), Error(false), UseAtomicWrites(false) { 499 if (ShouldClose) 575 assert(ShouldClose); 576 ShouldClose = false [all...] |
LockFileManager.cpp | 91 raw_fd_ostream Out(UniqueLockFileID, /*shouldClose=*/true);
|
/external/webkit/Source/WebKit/wx/ |
WebFrame.h | 168 bool ShouldClose() const;
|
WebFrame.cpp | 476 bool wxWebFrame::ShouldClose() const 479 return m_impl->frame->loader()->shouldClose();
|
WebView.cpp | 1065 bool wxWebView::ShouldClose() const 1068 return m_mainFrame->ShouldClose();
|
WebView.h | 196 bool ShouldClose() const;
|
/frameworks/compile/libbcc/lib/Support/ |
OutputFile.cpp | 145 new (std::nothrow) llvm::raw_fd_ostream(newfd, /* shouldClose */true);
|
/frameworks/compile/mclinker/include/mcld/Support/ |
raw_ostream.h | 37 /// ShouldClose is true, this closes the file when the stream is destroyed.
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebViewPrivate.idl | 129 @method shouldClose: 134 HRESULT shouldClose([out, retval] BOOL* result);
|
/external/clang/unittests/Tooling/ |
RewriterTestContext.h | 72 llvm::raw_fd_ostream Closer(FD, /*shouldClose=*/true);
|
/external/webkit/Source/WebCore/html/parser/ |
HTMLTreeBuilder.h | 182 template <bool shouldClose(const ContainerNode*)>
|
/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/clang/lib/Rewrite/Frontend/ |
FixItRewriter.cpp | 92 OS.reset(new llvm::raw_fd_ostream(fd, /*shouldClose=*/true));
|
/external/llvm/include/llvm/Support/ |
raw_ostream.h | 311 bool ShouldClose; 368 /// ShouldClose is true, this closes the file when the stream is destroyed. 369 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
|
/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/clang/lib/ARCMigrate/ |
FileRemapper.cpp | 157 llvm::raw_fd_ostream newOut(fd, /*shouldClose=*/true);
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebPageProxy.messages.in | 53 RunBeforeUnloadConfirmPanel(WTF::String message, uint64_t frameID) -> (bool shouldClose)
|
/external/webkit/Source/WebCore/loader/ |
FrameLoader.h | 334 bool shouldClose();
|
/external/chromium/chrome/browser/resources/options/ |
options_page.js | 228 return overlay && overlay.shouldClose(); 997 shouldClose: function() {
|