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

  /external/llvm/include/llvm-c/
BitWriter.h 41 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int 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);
  /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...]
  /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;
  /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);

Completed in 94 milliseconds