Searched refs:raw_ostream (Results 401 - 425 of 746) sorted by relevance

<<11121314151617181920>>

/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h57 class raw_ostream;
332 void print(raw_ostream &OS, unsigned Depth = 0) const;
343 raw_ostream& operator<<(raw_ostream &OS, const LoopBase<BlockT, LoopT> &Loop) {
621 void print(raw_ostream &OS) const;
688 void print(raw_ostream &O, const Module* M = nullptr) const override;
H A DCallGraph.h110 void print(raw_ostream &OS) const;
207 void print(raw_ostream &OS) const;
387 void print(raw_ostream &o, const Module *) const override;
H A DLazyCallGraph.h55 class raw_ostream;
550 /// \brief A pass which prints the call graph to a \c raw_ostream.
554 raw_ostream &OS;
557 explicit LazyCallGraphPrinterPass(raw_ostream &OS);
H A DDependenceAnalysis.h54 class raw_ostream;
202 void dump(raw_ostream &OS) const;
455 void dump(raw_ostream &OS) const;
925 void print(raw_ostream &, const Module * = nullptr) const override;
H A DIVUsers.h172 void print(raw_ostream &OS, const Module* = nullptr) const override;
H A DLoopPass.h35 Pass *createPrinterPass(raw_ostream &O,
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp16 #include "llvm/Support/raw_ostream.h"
43 raw_ostream &BlockMass::print(raw_ostream &OS) const {
528 raw_ostream &
529 BlockFrequencyInfoImplBase::printBlockFreq(raw_ostream &OS,
534 raw_ostream &
535 BlockFrequencyInfoImplBase::printBlockFreq(raw_ostream &OS,
H A DLoopPass.cpp32 raw_ostream &Out; // raw_ostream to print on.
36 PrintLoopPass(const std::string &B, raw_ostream &o)
315 Pass *LoopPass::createPrinterPass(raw_ostream &O,
H A DAnalysis.cpp16 #include "llvm/Support/raw_ostream.h"
77 raw_ostream *DebugOS = Action != LLVMReturnStatusAction ? &errs() : nullptr;
/external/clang/include/clang/Frontend/
H A DCompilerInstance.h146 raw_ostream *OS;
149 raw_ostream *os)
607 raw_ostream &OS);
/external/llvm/include/llvm/MC/
H A DMCContext.h23 #include "llvm/Support/raw_ostream.h"
106 raw_ostream *SecureLog;
411 raw_ostream *getSecureLog() { return SecureLog; }
413 void setSecureLog(raw_ostream *Value) {
H A DMCStreamer.h41 class raw_ostream;
276 /// GetCommentOS - Return a raw_ostream that comments can be written to.
279 virtual raw_ostream &GetCommentOS();
782 raw_ostream &OS, MCCodeEmitter *CE,
789 raw_ostream &OS, MCCodeEmitter *CE, bool RelaxAll,
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp42 void run(raw_ostream &o);
234 void CodeEmitterGen::run(raw_ostream &o) {
335 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS) {
/external/clang/include/clang/AST/
H A DAttr.h28 #include "llvm/Support/raw_ostream.h"
109 virtual void printPretty(raw_ostream &OS,
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h811 raw_ostream &operator<<(raw_ostream &OS,
955 raw_ostream &OS;
963 raw_ostream &OS)
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSubEngine.h140 virtual void printState(raw_ostream &Out, ProgramStateRef State,
/external/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistration.cpp26 #include "llvm/Support/raw_ostream.h"
129 void ento::printCheckerHelp(raw_ostream &out, ArrayRef<std::string> plugins) {
/external/clang/tools/diagtool/
H A DShowEnabledWarnings.cpp86 int ShowEnabledWarnings::run(unsigned int argc, char **argv, raw_ostream &Out) {
/external/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp485 void EmitClangDiagsDefs(RecordKeeper &Records, raw_ostream &OS,
614 RecordVec &GroupsInPedantic, raw_ostream &OS) {
665 RecordVec &DiagsInPedantic, raw_ostream &OS) {
698 raw_ostream &OS) {
720 raw_ostream &OS) {
746 StringToOffsetTable &GroupNames, raw_ostream &OS) {
816 static void emitCategoryTable(RecordKeeper &Records, raw_ostream &OS) {
825 void EmitClangDiagGroups(RecordKeeper &Records, raw_ostream &OS) {
879 void EmitClangDiagsIndexName(RecordKeeper &Records, raw_ostream &OS) {
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp37 #include "llvm/Support/raw_ostream.h"
100 raw_ostream *out = &outs();
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h33 class raw_ostream;
220 void print(raw_ostream &os, const TargetMachine *TM = nullptr) const;
718 inline raw_ostream &operator<<(raw_ostream &OS, const MachineOperand& MO) {
/external/llvm/lib/Object/
H A DObjectFile.cpp18 #include "llvm/Support/raw_ostream.h"
29 std::error_code ObjectFile::printSymbolName(raw_ostream &OS,
/external/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp47 #include "llvm/Support/raw_ostream.h"
440 raw_ostream &O) {
542 raw_ostream &O) {
560 raw_ostream &O) {
624 raw_ostream &O) {
633 raw_ostream &O) {
642 printMemOperand(const MachineInstr *MI, int opNum, raw_ostream &O) {
653 printMemOperandEA(const MachineInstr *MI, int opNum, raw_ostream &O) {
663 printFCCOperand(const MachineInstr *MI, int opNum, raw_ostream &O,
986 raw_ostream
[all...]
H A DMipsMachineFunction.cpp18 #include "llvm/Support/raw_ostream.h"
52 void MipsCallEntry::printCustom(raw_ostream &O) const {
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCExpr.cpp26 void PPCMCExpr::PrintImpl(raw_ostream &OS) const {

Completed in 521 milliseconds

<<11121314151617181920>>