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

1234567891011>>

/external/llvm/lib/Analysis/
H A DCallGraph.cpp100 void CallGraph::print(raw_ostream &OS) const { function in class:CallGraph
127 CN->print(OS);
131 void CallGraph::dump() const { print(dbgs()); }
181 void CallGraphNode::print(raw_ostream &OS) const { function in class:CallGraphNode
200 void CallGraphNode::dump() const { print(dbgs()); }
295 void CallGraphWrapperPass::print(raw_ostream &OS, const Module *) const { function in class:CallGraphWrapperPass
302 G->print(OS);
306 void CallGraphWrapperPass::dump() const { print(dbgs(), nullptr); }
H A DDemandedBits.cpp380 void DemandedBits::print(raw_ostream &OS, const Module *M) const { function in class:DemandedBits
H A DDivergenceAnalysis.cpp296 void DivergenceAnalysis::print(raw_ostream &OS, const Module *) const { function in class:DivergenceAnalysis
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",
137 void MemDepPrinter::print(raw_ostream &OS, const Module *M) const { function in class:MemDepPrinter
160 DepInst->print(OS);
165 Inst->print(OS);
H A DRegionInfo.cpp50 static cl::opt<Region::PrintStyle, true> printStyleX("print-region-style",
55 clEnumValN(Region::PrintNone, "none", "print no details"),
57 "print regions in detail with block_iterator"),
59 "print regions in detail with element_iterator"),
153 void RegionInfoPass::print(raw_ostream &OS, const Module *) const { function in class:RegionInfoPass
154 RI.print(OS);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp90 void DIEAbbrev::print(raw_ostream &O) { function in class:DIEAbbrev
109 void DIEAbbrev::dump() { print(dbgs()); }
159 V.print(O);
165 void DIE::print(raw_ostream &O, unsigned IndentCount) const { function in class:DIE
178 V.print(O);
184 Child.print(O, IndentCount + 4);
191 print(dbgs());
219 void DIEValue::print(raw_ostream &O) const { function in class:DIEValue
225 getDIE##T().print(O); \
233 print(dbg
309 void DIEInteger::print(raw_ostream &O) const { function in class:DIEInteger
334 void DIEExpr::print(raw_ostream &O) const { O << "Expr: " << *Expr; } function in class:DIEExpr
359 void DIELabel::print(raw_ostream &O) const { O << "Lbl: " << Label->getName(); } function in class:DIELabel
381 void DIEDelta::print(raw_ostream &O) const { function in class:DIEDelta
433 void DIEString::print(raw_ostream &O) const { function in class:DIEString
477 void DIEEntry::print(raw_ostream &O) const { function in class:DIEEntry
491 void DIETypeSignature::print(raw_ostream &O) const { function in class:DIETypeSignature
542 void DIELoc::print(raw_ostream &O) const { function in class:DIELoc
589 void DIEBlock::print(raw_ostream &O) const { function in class:DIEBlock
614 void DIELocList::print(raw_ostream &O) const { O << "LocList: " << Index; } function in class:DIELocList
[all...]
H A DDwarfAccelTable.cpp262 void DwarfAccelTable::print(raw_ostream &O) { function in class:DwarfAccelTable
264 Header.print(O);
265 HeaderData.print(O);
273 HD->print(O);
281 (*HI)->print(O);
287 (*DI)->print(O);
/external/llvm/lib/CodeGen/
H A DMachineRegionInfo.cpp111 void MachineRegionInfoPass::print(raw_ostream &OS, const Module *) const { function in class:MachineRegionInfoPass
112 RI.print(OS);
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.cpp109 void DiagnosticInfoInlineAsm::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoInlineAsm
115 void DiagnosticInfoStackSize::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoStackSize
120 void DiagnosticInfoDebugMetadataVersion::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoDebugMetadataVersion
125 void DiagnosticInfoSampleProfile::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoSampleProfile
135 void DiagnosticInfoPGOProfile::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoPGOProfile
164 void DiagnosticInfoOptimizationBase::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoOptimizationBase
184 void DiagnosticInfoMIRParser::print(DiagnosticPrinter &DP) const { function in class:DiagnosticInfoMIRParser
229 // Only print warnings.
H A DDominators.cpp289 print(errs());
291 OtherDT.print(errs());
318 AM->getResult<DominatorTreeAnalysis>(F).print(OS);
353 void DominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const { function in class:DominatorTreeWrapperPass
354 DT.print(OS);
/external/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp92 void ARMConstantPoolValue::print(raw_ostream &O) const { function in class:ARMConstantPoolValue
178 void ARMConstantPoolConstant::print(raw_ostream &O) const { function in class:ARMConstantPoolConstant
180 ARMConstantPoolValue::print(O);
217 void ARMConstantPoolSymbol::print(raw_ostream &O) const { function in class:ARMConstantPoolSymbol
219 ARMConstantPoolValue::print(O);
258 void ARMConstantPoolMBB::print(raw_ostream &O) const { function in class:ARMConstantPoolMBB
260 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/proguard/src/proguard/optimize/peephole/
H A DClassMerger.java159 (!DETAILS || print(programClass, "Package visibility?")) &&
174 (!DETAILS || print(programClass, "Interface/abstract/single?")) &&
189 (!DETAILS || print(programClass, "Indirect implementation?")) &&
195 (!DETAILS || print(programClass, "Interfaces same subinterfaces?")) &&
204 (!DETAILS || print(programClass, "Same initialized superclasses?")) &&
210 (!DETAILS || print(programClass, "Same instanceofed superclasses?")) &&
216 (!DETAILS || print(programClass, "Same caught superclasses?")) &&
222 (!DETAILS || print(programClass, "Not .classed?")) &&
228 (!DETAILS || print(programClass, "No clashing fields?")) &&
233 (!DETAILS || print(programClas
369 private boolean print(ProgramClass programClass, String message) method in class:ClassMerger
[all...]
/external/skia/include/utils/
H A DSkRTConf.h27 virtual void print(SkWStream *o) const = 0;
40 void print(SkWStream *o) const;
121 void SkRTConf<T>::print(SkWStream *o) const { function in class:SkRTConf
143 sprintf(s, "%-30.30s", "How do I print myself??");
/external/skia/src/gpu/gl/
H A DGrGLExtensions.cpp149 void GrGLExtensions::print(const char* sep) const { function in class:GrGLExtensions
/external/v8/test/mjsunit/tools/
H A Dtickprocessor.js333 this.oldPrint = print; method
334 print = function(str) {
360 print = this.oldPrint;
362 print("===== actual output: =====");
363 print(this.realOut.join('\n'));
364 print("===== expected output: =====");
365 print(this.expectedOut.join('\n'));
424 print('=== testProcessing-' + testName + ' ===');
/external/v8/tools/
H A Dgenerate-ten-powers.scm135 (define (print-c powers from to struct-type
149 (define (print-powers-reduced n)
150 (print "static const " struct-type " " cache-name
159 (print " };")
160 (print "static const int " max-distance-name "(" n ") = "
162 (print "// nb elements (" n "): " nb-elements))
174 (print "// Copyright 2010 the V8 project authors. All rights reserved.")
175 (print "// ------------ GENERATED FILE ----------------")
176 (print "// command used:")
177 (print "// "
[all...]
/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/autotest/client/profilers/powertop/src/
H A Ddisplay.c46 #define print(win, y, x, fmt, args...) do { if (dump) printf(fmt, ## args); else mvwprintw(win, y, x, fmt, ## args); } while (0) macro
146 print(title_bar_window, 0, 0, " PowerTOP version 1.11 (C) 2007 Intel Corporation");
157 print(status_bar_window, 0, x, status_bar_slots[i]);
175 print(cstate_window, count, 0, "%s", cstate_lines[i]);
185 print(cstate_window, i, 38, "%s", cpufreqstrings[i]);
210 print(battery_power_window, 0, 0, "%s\n", buffer);
247 print(battery_power_window, 0, 0, "%s\n", buffer);
270 print(wakeup_window, 0, 0, _("Wakeups-from-idle per second : %4.1f\tinterval: %0.1fs\n"), d, interval);
281 print(timerstat_window, 0, 0, _("Top causes for wakeups:\n"));
289 print(timerstat_windo
[all...]
/external/clang/lib/AST/
H A DTemplateBase.cpp33 /// \param TemplArg the TemplateArgument instance to print.
354 void TemplateArgument::print(const PrintingPolicy &Policy, function in class:TemplateArgument
364 getAsType().print(Out, SubPolicy);
385 getAsTemplate().print(Out, Policy);
389 getAsTemplateOrTemplatePattern().print(Out, Policy);
411 P.print(Policy, Out);
512 Arg.print(Policy, OS);
/external/clang/lib/Basic/
H A DModule.cpp321 void Module::print(raw_ostream &OS, unsigned Indent) const { function in class:Module
402 (*MI)->print(OS, Indent + 2);
490 print(llvm::errs());

Completed in 870 milliseconds

1234567891011>>