comparison libinterp/dldfcn/audiodevinfo.cc @ 30896:c9788d7f6e65

maint: Use "fcn" as preferred abbreviation for "function" in libinterp/. * __eigs__.cc, bsxfun.cc, cellfun.cc, daspk.cc, dasrt.cc, dassl.cc, data.cc, debug.cc, error.cc, graphics.cc, graphics.in.h, gzfstream.h, ls-hdf5.cc, lsode.cc, max.cc, oct-opengl.h, quad.cc, strfns.cc, utils.cc, utils.h, variables.cc, __ode15__.cc, gzip.cc, cdef-manager.cc, ov-fcn-handle.cc, ov-java.cc, ov-usr-fcn.cc, bp-table.cc, bp-table.h, lex.h, lex.ll, oct-parse.yy, pt-eval.cc: Replace "func", "fun", "fn" in documentation and variable names with "fcn".
author Rik <rik@octave.org>
date Tue, 05 Apr 2022 08:33:58 -0700
parents 32d2b6604a9f
children e88a07dec498
comparison
equal deleted inserted replaced
30895:360d330cc30e 30896:c9788d7f6e65
536 bool print_as_scalar (void) const { return true; } 536 bool print_as_scalar (void) const { return true; }
537 537
538 void init (void); 538 void init (void);
539 void init_fn (void); 539 void init_fn (void);
540 void set_y (const octave_value& y); 540 void set_y (const octave_value& y);
541 void set_y (octave_function *fn); 541 void set_y (octave_function *fcn);
542 void set_y (std::string fn); 542 void set_y (std::string fcn);
543 Matrix& get_y (void); 543 Matrix& get_y (void);
544 RowVector get_left (void) const; 544 RowVector get_left (void) const;
545 RowVector get_right (void) const; 545 RowVector get_right (void) const;
546 void set_fs (int fs); 546 void set_fs (int fs);
547 int get_fs (void); 547 int get_fs (void);
1002 1002
1003 reset_end_sample (); 1003 reset_end_sample ();
1004 } 1004 }
1005 1005
1006 void 1006 void
1007 audioplayer::set_y (octave_function *fn) 1007 audioplayer::set_y (octave_function *fcn)
1008 { 1008 {
1009 octave_callback_function = fn; 1009 octave_callback_function = fcn;
1010 channels = 2; 1010 channels = 2;
1011 reset_end_sample (); 1011 reset_end_sample ();
1012 } 1012 }
1013 1013
1014 Matrix& 1014 Matrix&