Searched refs:print (Results 101 - 125 of 807) sorted by relevance

1234567891011>>

/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DMachineDominators.cpp57 void MachineDominatorTree::print(raw_ostream &OS, const Module*) const { function in class:MachineDominatorTree
58 DT->print(OS);
/macosx-10.10.1/groff-38/groff/src/include/
H A Derrarg.h39 void print() const;
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DLeaksContext.h22 static void print(const T* P) { errs() << P; } function in struct:llvm::PrinterTrait
27 static void print(const Value* P) { errs() << *P; } function in struct:llvm::PrinterTrait
75 PrinterTrait<T>::print(*I);
/macosx-10.10.1/PowerManagement-494.1.2/BATS/
H A DIOPMPerformBlockWithAssertion-15072112.c55 static bool globalAssertionLevelFor(CFStringRef type, int expected, const char *print);
158 static bool globalAssertionLevelFor(CFStringRef type, int expected, const char *print) argument
178 if (print) {
194 printf("[PASS] \"%s\" level is %s, expected to be %s\n",print, actualStr, expectedStr);
196 printf("[FAIL] \"%s\" level is %s, should be %s\n",print, actualStr, expectedStr);
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DCodeBlockSet.cpp164 out.print("{old = [");
166 out.print(comma, pointerDump(codeBlock));
167 out.print("], new = [");
170 out.print(comma, pointerDump(codeBlock));
171 out.print("], currentlyExecuting = [");
174 out.print(comma, pointerDump(codeBlock));
175 out.print("]}");
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/AsmPrinter/
H A DDIE.cpp86 void DIEAbbrev::print(raw_ostream &O) { function in class:DIEAbbrev
103 void DIEAbbrev::dump() { print(dbgs()); }
116 void DIE::print(raw_ostream &O, unsigned IncIndent) { function in class:DIE
150 Values[i]->print(O);
156 Children[j]->print(O, 4);
164 print(dbgs());
172 print(dbgs());
231 void DIEInteger::print(raw_ostream &O) { function in class:DIEInteger
256 void DIELabel::print(raw_ostream &O) { function in class:DIELabel
280 void DIEDelta::print(raw_ostrea function in class:DIEDelta
296 void DIEEntry::print(raw_ostream &O) { function in class:DIEEntry
346 void DIEBlock::print(raw_ostream &O) { function in class:DIEBlock
[all...]
/macosx-10.10.1/remote_cmds-47/timed.tproj/timed.tproj/
H A Dreadmsg.c112 print(&ptr->info, &ptr->addr);
148 print(&msgin, &from);
270 print(&msgin, &from);
291 print(&msgin, &from);
315 print(&msgin, &from);
365 print(&msgin, &from);
373 print(&msgin, &from);
393 print(&msgin, &from);
401 print(&msgin, &from);
428 print(
455 print(msg, addr) function
[all...]
/macosx-10.10.1/IOKitTools-91/ioreg.tproj/
H A Dioreg.c71 static void print(const char * format, ...);
879 print("%s", name);
886 if (status == KERN_SUCCESS) print("@%s", location);
890 print(" <class ");
904 print(aCStr);
915 print("%s", class);
918 // Prepare to print out the service's useful debug information.
925 print(", id 0x%llx", entryID);
935 print( ", %sregistered, %smatched, %sactive",
940 print(", bus
1148 static void print(const char * format, ...) function
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITCode.cpp229 out.print("None");
232 out.print("Host");
235 out.print("LLInt");
238 out.print("Baseline");
241 out.print("DFG");
244 out.print("FTL");
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGDominators.cpp122 out.print(" Block ", *block, ":");
126 out.print(" #", otherIndex);
128 out.print("\n");
H A DDFGArgumentPosition.h124 out.print(" ");
127 out.print("arg", operand.toArgument(), "(", VariableAccessDataDump(*graph, variable), ")");
129 out.print("r", operand.toLocal(), "(", VariableAccessDataDump(*graph, variable), ")");
131 out.print("\n");
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DMachineConstantPool.h60 /// print - Implement operator<<
61 virtual void print(raw_ostream &O) const = 0;
66 V.print(OS);
163 /// print - Used by the MachineFunction printer to print information about
166 void print(raw_ostream &OS) const;
168 /// dump - Call print(cerr) to be called from the debugger.
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DPrettyStackTrace.cpp40 Entry->print(OS);
47 // Don't print an empty trace.
123 void PrettyStackTraceString::print(raw_ostream &OS) const { function in class:PrettyStackTraceString
127 void PrettyStackTraceProgram::print(raw_ostream &OS) const { function in class:PrettyStackTraceProgram
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DProfilerOrigin.cpp45 out.print(*m_bytecodes, ":bc#", m_bytecodeIndex);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Ddowhile-005.js10 * print statement below and it works OK.
40 // print( i );
46 print (i);
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DDataLog.h45 dataFile().print(values...);
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/tests/
H A Disctest.h28 #include <isc/print.h>
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Analysis/
H A DBlockFrequencyInfo.h43 void print(raw_ostream &O, const Module *M) const;
H A DFindUsedTypes.h42 void print(raw_ostream &o, const Module *M) const;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DCFGPrinter.cpp37 void print(raw_ostream &OS, const Module* = 0) const {} function in struct:__anon9871::CFGViewer
60 void print(raw_ostream &OS, const Module* = 0) const {} function in struct:__anon9872::CFGOnlyViewer
94 void print(raw_ostream &OS, const Module* = 0) const {} function in struct:__anon9873::CFGPrinter
127 void print(raw_ostream &OS, const Module* = 0) const {} function in struct:__anon9874::CFGOnlyPrinter
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dattr_clnt.c96 ATTR_CLNT_PRINT_FN print; member in struct:ATTR_CLNT
118 client->print = attr_vprint_plain;
140 * XXX For some reason we can't simply call the scan routine after the print
160 err = (client->print(stream, send_flags, ap) != 0
223 client->print = va_arg(ap, ATTR_CLNT_PRINT_FN);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/
H A Djsref.js98 // print out bugnumber
182 print( string + BR + CR );
185 print( H2 + string + H2_ );
194 print(sizeTag);
195 print(testcases.length);
198 print(beginTag + 'PASSED' + endTag);
199 print(testcases[tc].passed);
200 print(beginTag + 'NAME' + endTag);
201 print(testcases[tc].name);
202 print(beginTa
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/
H A Djsref.js142 print( string + BR + CR );
145 print( H2 + string + H2_ );
154 print(sizeTag);
155 print(testcases.length);
158 print(beginTag + 'PASSED' + endTag);
159 print(testcases[tc].passed);
160 print(beginTag + 'NAME' + endTag);
161 print(testcases[tc].name);
162 print(beginTag + 'EXPECTED' + endTag);
163 print(testcase
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/otp/
H A Dotptest.c42 void (*print)(OtpKey,char*, size_t),
48 (*print)(key1, buf, sizeof(buf));
41 test_one(OtpKey key1, char *name, char *val, void (*print)(OtpKey,char*, size_t), OtpAlgorithm *alg) argument
/macosx-10.10.1/JavaScriptCore-7600.1.17/JavaScriptCore.vcxproj/
H A DJavaScriptCorePreBuild.cmd4 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"

Completed in 209 milliseconds

1234567891011>>