Searched defs:print (Results 101 - 125 of 326) sorted by relevance

1234567891011>>

/external/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp93 void CallGraph::print(raw_ostream &OS) const { function in class:CallGraph
102 I->second->print(OS);
106 void CallGraph::dump() const { print(dbgs()); }
157 void CallGraphNode::print(raw_ostream &OS) const { function in class:CallGraphNode
176 void CallGraphNode::dump() const { print(dbgs()); }
272 void CallGraphWrapperPass::print(raw_ostream &OS, const Module *) const { function in class:CallGraphWrapperPass
279 G->print(OS);
283 void CallGraphWrapperPass::dump() const { print(dbgs(), nullptr); }
/external/llvm/lib/Analysis/
H A DMemDepPrinter.cpp49 void print(raw_ostream &OS, const Module * = nullptr) const override;
80 INITIALIZE_PASS_BEGIN(MemDepPrinter, "print-memdeps",
83 INITIALIZE_PASS_END(MemDepPrinter, "print-memdeps",
159 void MemDepPrinter::print(raw_ostream &OS, const Module *M) const { function in class:MemDepPrinter
183 DepInst->print(OS);
188 Inst->print(OS);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp87 void DIEAbbrev::print(raw_ostream &O) { function in class:DIEAbbrev
104 void DIEAbbrev::dump() { print(dbgs()); }
141 void DIE::print(raw_ostream &O, unsigned IndentCount) const { function in class:DIE
174 Values[i]->print(O);
180 Children[j]->print(O, IndentCount+4);
187 print(dbgs());
195 print(dbgs());
261 void DIEInteger::print(raw_ostream &O) const { function in class:DIEInteger
287 void DIEExpr::print(raw_ostream &O) const { function in class:DIEExpr
289 Expr->print(
316 void DIELabel::print(raw_ostream &O) const { function in class:DIELabel
341 void DIEDelta::print(raw_ostream &O) const { function in class:DIEDelta
363 void DIEString::print(raw_ostream &O) const { function in class:DIEString
411 void DIEEntry::print(raw_ostream &O) const { function in class:DIEEntry
425 void DIETypeSignature::print(raw_ostream &O) const { function in class:DIETypeSignature
481 void DIELoc::print(raw_ostream &O) const { function in class:DIELoc
532 void DIEBlock::print(raw_ostream &O) const { function in class:DIEBlock
563 void DIELocList::print(raw_ostream &O) const { function in class:DIELocList
[all...]
H A DDwarfAccelTable.cpp227 void DwarfAccelTable::print(raw_ostream &O) { function in class:DwarfAccelTable
229 Header.print(O);
230 HeaderData.print(O);
238 HD->print(O);
246 (*HI)->print(O);
252 (*DI)->print(O);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp341 print(dbgs(), G);
583 // This child has no grandchildren; print it inline right here.
586 } else { // Just the address. FIXME: also print the child's opcode.
620 N->print(OS, G);
640 // Don't print impossibly deep things.
649 // Don't print impossibly deep things.
653 void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const { function in class:SDNode
/external/llvm/lib/CodeGen/
H A DSlotIndexes.cpp105 DEBUG(mf->print(dbgs(), this));
236 void SlotIndex::print(raw_ostream &os) const { function in class:SlotIndex
246 print(dbgs());
/external/llvm/lib/IR/
H A DDiagnosticInfo.cpp106 void DiagnosticInfoInlineAsm::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoInlineAsm
112 void DiagnosticInfoStackSize::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoStackSize
117 void DiagnosticInfoDebugMetadataVersion::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoDebugMetadataVersion
122 void DiagnosticInfoSampleProfile::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoSampleProfile
152 void DiagnosticInfoOptimizationRemarkBase::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoOptimizationRemarkBase
/external/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp93 void ARMConstantPoolValue::print(raw_ostream &O) const { function in class:ARMConstantPoolValue
179 void ARMConstantPoolConstant::print(raw_ostream &O) const { function in class:ARMConstantPoolConstant
181 ARMConstantPoolValue::print(O);
218 void ARMConstantPoolSymbol::print(raw_ostream &O) const { function in class:ARMConstantPoolSymbol
220 ARMConstantPoolValue::print(O);
259 void ARMConstantPoolMBB::print(raw_ostream &O) const { function in class:ARMConstantPoolMBB
261 ARMConstantPoolValue::print(O);
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp21 print(errs(), 0);
24 void Matcher::print(raw_ostream &OS, unsigned indent) const { function in class:Matcher
27 return Next->print(OS, indent);
114 getChild(i)->print(OS, indent+2);
167 Cases[i].second->print(OS, indent+2);
182 Cases[i].second->print(OS, indent+2);
/external/mesa3d/src/glsl/
H A Dir_print_visitor.cpp32 ir_instruction::print(void) const function in class:ir_instruction
64 ir->print();
/external/skia/include/utils/
H A DSkRTConf.h28 virtual void print(SkWStream *o) const = 0;
41 void print(SkWStream *o) const;
123 void SkRTConf<T>::print(SkWStream *o) const { function in class:SkRTConf
145 sprintf(s, "%-30.30s", "How do I print myself??");
/external/tcpdump/
H A Dprint-mptcp.c270 int (*print)(const u_char *, u_int, u_char); member in struct:__anon31536
295 return mptcp_options[subtype].print(cp, len, flags);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3exception.h124 * really internal messages that you then decide how to print out in a form that
207 void (*print) (struct ANTLR3_EXCEPTION_struct * ex); member in struct:ANTLR3_EXCEPTION_struct
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpServer.java209 void print(OutputStream os, String text) throws IOException { method in class:Support_HttpServer.ServerThread
305 print(os, "HTTP/1.1 " + OK + " OK\r\n");
306 print(os, "Content-Length: 5\r\n");
307 print(os, "\r\nABCDE");
321 print(os, "HTTP/1.1 " + OK + " OK\r\n");
322 print(os, "Transfer-Encoding: chunked\r\n");
323 print(os, "\r\n");
324 print(os, "5\r\nFGHIJ");
325 print(os, "\r\n0\r\n\r\n");
347 print(o
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DSSLEngineImplTest.java538 print(result = server.wrap(ByteBuffer.allocate(0), buffer));
555 print(client.unwrap(buffer, app_data_buffer));
610 print(server.unwrap(ByteBuffer.allocate(40), app_data_buffer));
631 print(result =
649 print(result = server.wrap(ByteBuffer.allocate(0), buffer));
673 print(client.unwrap(buffer, app_data_buffer));
773 System.out.print("\n"
781 System.out.print("(NOT_HANDSHAKING) ");
797 print(result = current_engine.wrap(app_data, buffer));
821 print(resul
1354 private static void print(SSLEngineResult result) { method in class:SSLEngineImplTest
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest_filter_unittest.py56 # script in a subprocess to print whether the variable is STILL in
61 [sys.executable, '-c', 'import os; print \'EMPTY_VAR\' in os.environ']) namespace
67 # a python script in a subprocess to print whether the variable
74 [sys.executable, '-c', 'import os; print \'UNSET_VAR\' not in os.environ']) namespace
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DFFTFrame.cpp274 void FFTFrame::print() function in class:blink::FFTFrame
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c62 boolean print; member in struct:sanity_check_ctx
157 if (!ctx->print)
176 if (!ctx->print)
555 ctx.print = debug_get_option_print_sanity();
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_print.cpp300 int Modifier::print(char *buf, size_t size) const function in class:nv50_ir::Modifier
321 int LValue::print(char *buf, size_t size, DataType ty) const function in class:nv50_ir::LValue
376 int ImmediateValue::print(char *buf, size_t size, DataType ty) const function in class:nv50_ir::ImmediateValue
400 int Symbol::print(char *buf, size_t size, DataType ty) const function in class:nv50_ir::Symbol
402 return print(buf, size, NULL, NULL, ty);
405 int Symbol::print(char *buf, size_t size, function in class:nv50_ir::Symbol
420 pos += rel->print(&buf[pos], size - pos);
445 pos += dimRel->print(&buf[pos], size - pos, TYPE_S32);
450 pos += rel->print(&buf[pos], size - pos);
460 void Instruction::print() cons function in class:nv50_ir::Instruction
624 Function::print() function in class:nv50_ir::Function
631 Program::print() function in class:nv50_ir::Program
[all...]
H A Dnv50_ir_util.cpp214 void Interval::print() const function in class:nv50_ir::Interval
371 void BitSet::print() const function in class:nv50_ir::BitSet
/external/clang/include/clang/Analysis/Analyses/
H A DDominators.h23 // FIXME: There is no good reason for the domtree to require a print method
156 virtual void print(raw_ostream &OS, const llvm::Module* M= nullptr) const { function in class:clang::DominatorTree
157 DT->print(OS);
/external/clang/lib/AST/
H A DTemplateBase.cpp33 /// \param TemplArg the TemplateArgument instance to print.
344 void TemplateArgument::print(const PrintingPolicy &Policy, function in class:TemplateArgument
354 getAsType().print(Out, SubPolicy);
375 getAsTemplate().print(Out, Policy);
379 getAsTemplateOrTemplatePattern().print(Out, Policy);
402 P->print(Policy, Out);
503 Arg.print(Policy, OS);
/external/clang/lib/Basic/
H A DModule.cpp288 void Module::print(raw_ostream &OS, unsigned Indent) const { function in class:Module
365 (*MI)->print(OS, Indent + 2);
453 print(llvm::errs());
/external/clang/lib/Driver/
H A DMultilib.cpp85 void Multilib::print(raw_ostream &OS) const { function in class:Multilib
139 M.print(OS);
311 void MultilibSet::print(raw_ostream &OS) const { function in class:MultilibSet
332 MS.print(OS);
/external/clang/lib/Frontend/
H A DASTConsumers.cpp48 return print(D);
63 print(D);
80 void print(Decl *D) { function in class:__anon17902::ASTPrinter
89 D->print(Out, /*Indentation=*/0, /*PrintInstantiation=*/true);
157 D->print(llvm::errs());

Completed in 557 milliseconds

1234567891011>>