#include <istream>
#include <list>
#include <ostream>
#include <sstream>
#include <string>
#include <vector>
#include "file-ops.h"
#include "oct-locbuf.h"
#include "defaults.h"
#include "defun.h"
#include "error.h"
#include "errwarn.h"
#include "file-stat.h"
#include "input.h"
#include "interpreter-private.h"
#include "interpreter.h"
#include "load-path.h"
#include "oct-env.h"
#include "oct-hdf5.h"
#include "oct-map.h"
#include "ov-base.h"
#include "ov-cell.h"
#include "ov-fcn-handle.h"
#include "ov-usr-fcn.h"
#include "parse.h"
#include "pr-output.h"
#include "pt-arg-list.h"
#include "pt-assign.h"
#include "pt-cmd.h"
#include "pt-eval.h"
#include "pt-exp.h"
#include "pt-idx.h"
#include "pt-misc.h"
#include "pt-pr-code.h"
#include "pt-stmt.h"
#include "stack-frame.h"
#include "syminfo.h"
#include "symscope.h"
#include "unwind-prot.h"
#include "variables.h"
#include "byte-swap.h"
#include "ls-ascii-helper.h"
#include "ls-hdf5.h"
#include "ls-oct-text.h"
#include "ls-oct-binary.h"
#include "ls-utils.h"
Go to the source code of this file.
Classes | |
class | octave::anonymous_fcn_handle |
class | octave::class_simple_fcn_handle |
class | octave::internal_fcn_handle |
class | octave::invalid_fcn_handle |
class | octave::nested_fcn_handle |
class | octave::scoped_fcn_handle |
class | octave::simple_fcn_handle |
Namespaces | |
octave | |
Functions | |
static void | octave::err_invalid_fcn_handle (const std::string &name) |
OCTAVE_EXPORT octave_value_list | Ffunc2str (const octave_value_list &args, int) |
OCTAVE_EXPORT octave_value_list | Ffunctions (const octave_value_list &args, int) |
OCTAVE_EXPORT octave_value_list | Fis_function_handle (const octave_value_list &args, int) |
OCTAVE_EXPORT octave_value_list | Fstr2func (octave::interpreter &interp, const octave_value_list &args, int) |
bool | octave::is_equal_to (const anonymous_fcn_handle &fh1, const anonymous_fcn_handle &fh2) |
bool | octave::is_equal_to (const class_simple_fcn_handle &fh1, const class_simple_fcn_handle &fh2) |
bool | octave::is_equal_to (const internal_fcn_handle &fh1, const internal_fcn_handle &fh2) |
bool | octave::is_equal_to (const nested_fcn_handle &fh1, const nested_fcn_handle &fh2) |
bool | is_equal_to (const octave_fcn_handle &fh1, const octave_fcn_handle &fh2) |
bool | octave::is_equal_to (const scoped_fcn_handle &fh1, const scoped_fcn_handle &fh2) |
bool | octave::is_equal_to (const simple_fcn_handle &fh1, const simple_fcn_handle &fh2) |
octave_value | octave::make_fcn_handle (interpreter &interp, const std::string &nm) |
OCTAVE_EXPORT octave_value_list Ffunc2str | ( | const octave_value_list & | args, |
int | |||
) |
Definition at line 3171 of file ov-fcn-handle.cc.
References error(), octave_fcn_handle::fcn_name(), octave_fcn_handle::is_anonymous(), octave_fcn_handle::print_raw(), print_usage(), and retval.
OCTAVE_EXPORT octave_value_list Ffunctions | ( | const octave_value_list & | args, |
int | |||
) |
Definition at line 3155 of file ov-fcn-handle.cc.
References octave_fcn_handle::info(), ovl(), and print_usage().
OCTAVE_EXPORT octave_value_list Fis_function_handle | ( | const octave_value_list & | args, |
int | |||
) |
Definition at line 3292 of file ov-fcn-handle.cc.
References ovl(), and print_usage().
OCTAVE_EXPORT octave_value_list Fstr2func | ( | octave::interpreter & | interp, |
const octave_value_list & | args, | ||
int | |||
) |
Definition at line 3208 of file ov-fcn-handle.cc.
References error(), octave::tree_evaluator::make_fcn_handle(), ovl(), print_usage(), and warning_with_id().
bool is_equal_to | ( | const octave_fcn_handle & | fh1, |
const octave_fcn_handle & | fh2 | ||
) |
Definition at line 3062 of file ov-fcn-handle.cc.