Searched refs:cin (Results 1 - 25 of 78) sorted by relevance

1234

/macosx-10.9.5/swig-10/Lib/cffi/
H A Dcffi.swg8 %typemap(cin) void ":void";
10 %typemap(cin) char ":char";
11 %typemap(cin) char * ":string";
12 %typemap(cin) unsigned char ":unsigned-char";
13 %typemap(cin) signed char ":char";
15 %typemap(cin) short ":short";
16 %typemap(cin) signed short ":short";
17 %typemap(cin) unsigned short ":unsigned-short";
19 %typemap(cin) int ":int";
20 %typemap(cin) signe
[all...]
/macosx-10.9.5/swig-10/Lib/ruby/
H A Dstd_ios.i8 AUTODOC(cin, "Standard C++ input stream");
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DSaslInteractionHandler.cpp72 std::cin >> std::noskipws >> input;
73 std::cin >> std::skipws;
75 if( std::cin.fail() ) {
76 std::cin.clear();
79 std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
/macosx-10.9.5/BerkeleyDB-21/db/examples_cxx/
H A DLockExample.cpp18 using std::cin;
144 cin.getline(opbuf, sizeof(opbuf));
145 if (cin.eof())
151 cin.getline(objbuf, sizeof(objbuf));
152 if (cin.eof())
161 cin.getline(lockbuf, sizeof(lockbuf));
162 if (cin.eof())
200 cin.getline(objbuf, sizeof(objbuf));
201 if (cin.eof())
H A DAccessExample.cpp30 using std::cin;
124 cin.getline(buf, sizeof(buf));
125 if (cin.eof())
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/backward/
H A Diostream.h41 using std::cin;
/macosx-10.9.5/vim-53/runtime/indent/
H A Dbib.vim15 let b:undo_indent = "setl cin<"
H A Dc.vim15 let b:undo_indent = "setl cin<"
H A Dcpp.vim15 let b:undo_indent = "setl cin<"
H A Dcs.vim15 let b:undo_indent = "setl cin<"
H A Dcuda.vim15 let b:undo_indent = "setl cin<"
H A Ddtrace.vim17 let b:undo_indent = "setl cin<"
H A Djavascript.vim16 let b:undo_indent = "setl cin<"
H A Dlifelines.vim23 let b:undo_indent = "setl cin< cino< cinw<"
/macosx-10.9.5/libstdcxx-60/src/
H A Dios_init.cc70 extern istream cin;
111 new (&cin) istream(&buf_cin_sync);
114 cin.tie(&cout);
182 // Turn off sync with C FILE* for cin, cout, cerr, clog iff
211 cin.rdbuf(&buf_cin);
H A Dglobals_io.cc60 fake_istream cin; variable
/macosx-10.9.5/lsof-52/lsof/lib/
H A Drnmh.c333 int cin = sizeof(c.NCACHE_NM); local
524 if ((len < 3) && (cin > 1)) {
536 if (len > cin) {
540 * cin) of the name has yet been read to lc->nm[], read it
544 if (cin > 0)
545 (void) strncpy(lc->nm, c.NCACHE_NM, cin);
546 if (kread(ka + (KA_T)(nmo + cin), &lc->nm[cin], len - cin))
548 if ((cin <
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/scr015/
H A DTestKeyRange.cpp109 cin.getline(buf, sizeof(buf));
110 if (cin.eof())
/macosx-10.9.5/llvmCore-3425.0.33/examples/BrainF/
H A DBrainFDriver.cpp116 std::istream *in = &std::cin;
128 if (in != &std::cin)
/macosx-10.9.5/Heimdal-323.92.1/appl/ftp/ftp/
H A Dftp.c51 FILE *cin, *cout; variable
126 cin = fdopen (s, "r");
128 if (cin == NULL || cout == NULL) {
130 if (cin)
131 fclose (cin);
140 if (cin)
141 fclose (cin);
345 c = getc (cin);
362 c = getc (cin);
364 fprintf (cout, "%c%c%c", IAC, DONT, getc (cin));
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/src/
H A Dftp.c264 cin = fdopen(s, "r");
266 if (cin == NULL || cout == NULL) {
268 if (cin)
269 (void)fclose(cin);
278 if (cin)
279 (void)fclose(cin);
398 ((c = getc(cin)) != '\n')) {
400 switch (c = getc(cin)) {
403 c = getc(cin);
409 c = getc(cin);
526 empty(FILE *cin, FILE *din, int sec) argument
[all...]
H A Dftp.c.orig260 cin = fdopen(s, "r");
262 if (cin == NULL || cout == NULL) {
264 if (cin)
265 (void)fclose(cin);
274 if (cin)
275 (void)fclose(cin);
394 ((c = getc(cin)) != '\n')) {
396 switch (c = getc(cin)) {
399 c = getc(cin);
405 c = getc(cin);
[all...]
/macosx-10.9.5/zsh-60/zsh/Src/Modules/
H A Dzftp.c304 FILE *cin; /* control input file */ member in struct:zftp_session
599 ch = fgetc(zfsess->cin);
603 if (ferror(zfsess->cin) && errno == EINTR) {
604 clearerr(zfsess->cin);
612 ch = fgetc(zfsess->cin);
639 ch = fgetc(zfsess->cin);
643 ch = fgetc(zfsess->cin);
653 ch = fgetc(zfsess->cin);
1940 zfsess->cin = fdopen(zfsess->control->fd, "r");
1942 if (!zfsess->cin) {
[all...]
/macosx-10.9.5/vim-53/src/testdir/
H A Dtest3.in1 /* vim: set cin ts=4 sw=4 : */
830 * Testing for comments, without 'cin' set
845 :set cin
857 :set cin
880 :set cin
909 :set cin
/macosx-10.9.5/BerkeleyDB-21/db/examples_cxx/excxx_repquote/
H A DRepQuoteExample.cpp40 using std::cin;
310 while (prompt(), getline(cin, input)) {

Completed in 476 milliseconds

1234