16+ results for '*print' (0 ms)
Not the results you expected?
F90_HYPRE_ams.c (https://github.com/hypre-space/hypre.git) C · 389 lines
cmdline.c (https://github.com/2fast4u88/oxygen_build.git) C · 141 lines
62 char **outfile,
63 char **symsfile,
64 int *print_symtab,
65 int *verbose,
66 int *quiet,
76 *symsfile = NULL;
77 ASSERT(print_symtab);
78 *print_symtab = 0;
79 ASSERT(verbose);
80 *verbose = 0;
118 INFO ("\n");
119 break;
120 case 'p': *print_symtab = 1; break;
121 case 'h': print_help(); exit(1); break;
122 case 'V': *verbose = 1; break;
disable.c (https://github.com/buffygb/illumos-gate.git) C · 163 lines
otbVectorImageToIntensityImageFilter.h (https://github.com/paniwani/OTB.git) C Header · 103 lines
packet_handlers.c (https://github.com/saahil/Network-Traffic-Monitor.git) C · 144 lines
38 dport = ntohs(uh->dport);
40 /*Printing IP addresses and UDP ports on source and destination*/
41 fprintf(out_file, "%d.%d.%d.%d:%d->%d.%d.%d.%d:%d\n",
42 ih->saddr.byte1,
55 fprintf(out_file, "UDP data length: %d\n", uh->len);
57 /*Print the packet*/
58 for(i=1; i<uh->len; i++) {
59 fprintf(out_file, "%c", udp_data[i-1]);
113 dport = ntohs(th->dport);
115 /*Printing IP addresses and TCP ports on source and destination*/
116 fprintf(out_file, "%d.%d.%d.%d:%d->%d.%d.%d.%d:%d\n",
117 ih->saddr.byte1,
setup.lisp (https://gitlab.com/dto/ecl-android-games-src) Lisp · 135 lines
platform.h (https://github.com/CrashSerious/showtime.git) C Header · 205 lines
richtextprint.h (https://bitbucket.org/lennonchan/cafu.git) C Header · 248 lines
ads_protos.h (https://github.com/rhuitl/uClinux.git) C Header · 95 lines
PrettyPrintTable.h (https://github.com/LinjieChen/Slicer3.git) C Header · 155 lines
70 }
72 void add(const unsigned int row, const unsigned int column, const int x, const char *printf_format = 0)
73 {
74 const char *format(printf_format == 0 ? "%d" : printf_format);
79 }
81 void add(const unsigned int row, const unsigned int column, const unsigned int x, const char *printf_format = 0)
82 {
83 const char *format(printf_format == 0 ? "%d" : printf_format);
88 }
90 void add(const unsigned int row, const unsigned int column, const double x, const char *printf_format = 0)
91 {
92 const char *format(printf_format == 0 ? "%lf" : printf_format);
swank-rpc.lisp (https://github.com/ran9er/init.emacs.git) Lisp · 161 lines
clojure.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 502 lines
qabstractprintdialog.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 497 lines
110 as parent widget.
111 */
112 QAbstractPrintDialog::QAbstractPrintDialog(QPrinter *printer, QWidget *parent)
113 : QDialog(*(new QAbstractPrintDialogPrivate), parent)
114 {
122 */
123 QAbstractPrintDialog::QAbstractPrintDialog(QAbstractPrintDialogPrivate &ptr,
124 QPrinter *printer,
125 QWidget *parent)
126 : QDialog(ptr, parent)
408 /*!
409 \fn QPrintDialog::QPrintDialog(QPrinter *printer, QWidget *parent)
411 Constructs a new modal printer dialog for the given \a printer
lisp.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 1038 lines
171 <KEYWORD3>*modules*</KEYWORD3>
172 <KEYWORD3>*package*</KEYWORD3>
173 <KEYWORD3>*print-array*</KEYWORD3>
174 <KEYWORD3>*print-base*</KEYWORD3>
175 <KEYWORD3>*print-case*</KEYWORD3>
176 <KEYWORD3>*print-circle*</KEYWORD3>
177 <KEYWORD3>*print-escape*</KEYWORD3>
178 <KEYWORD3>*print-gensym*</KEYWORD3>
179 <KEYWORD3>*print-length*</KEYWORD3>
180 <KEYWORD3>*print-level*</KEYWORD3>
181 <KEYWORD3>*print-lines*</KEYWORD3>
182 <KEYWORD3>*print-miser-width*</KEYWORD3>
qengines.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 241 lines
174 virtual void cleanup();
175 private:
176 QPrinter *printer;
177 QSize m_size;
178 QString m_tempFile;
194 virtual void cleanup();
195 private:
196 QPrinter *printer;
197 QSize m_size;
198 QString m_tempFile;
215 virtual void cleanup();
216 private:
217 QPrinter *printer;
218 QSize m_size;
219 QString m_tempFile;
example.h
(https://swig.svn.sourceforge.net/svnroot/swig)
C++ Header · 23 lines
✨ Summary
This C++ header file defines two classes: Vector
and VectorArray
. The Vector
class represents a 3D vector with x, y, z components, providing constructors for default and custom initialization, as well as an overloaded +
operator for vector addition. The VectorArray
class is a dynamic array of vectors, allowing indexing and retrieval of elements, with methods for size management and destruction.
This C++ header file defines two classes: Vector
and VectorArray
. The Vector
class represents a 3D vector with x, y, z components, providing constructors for default and custom initialization, as well as an overloaded +
operator for vector addition. The VectorArray
class is a dynamic array of vectors, allowing indexing and retrieval of elements, with methods for size management and destruction.