1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// by alternatives/alternatives1.cc
inline TriState Options::addRoot() const
{
return d_addRoot;
}
// by alternatives/findalternatives.cc
inline bool Options::all() const
{
return d_arg.option('a');
}
// by alternatives/alternatives1.cc
inline bool Options::allDirs() const
{
return d_allDirs;
}
// by command/concatargs.cc
inline FBB::Ranger<char const **> Options::args() const
{
return FBB::ranger(d_arg.argPointers(), d_arg.nArgs());
}
// by selector/setblocksize.cc
inline size_t Options::blockSize() const
{
return d_blockSize;
}
// by alternatives/alternatives1.cc
inline bool Options::fromHome() const
{
return d_fromHome;
}
// by alternatives/finddirs.cc
inline bool Options::generalized() const
{
return d_arg.option('g');
}
// by history/history1.cc
inline std::string const &Options::history() const
{
return d_history;
}
// by history/load.cc
inline size_t Options::historyLifetime() const
{
return d_historyLifetime;
}
// by history/save.cc
inline size_t Options::historyMaxSize() const
{
return d_historyMaxSize;
}
// by alternatives/startdir.cc history/history1.cc
inline std::string const &Options::homeDir() const
{
return d_homeDir;
}
// by alternatives/checkcase.cc
inline size_t Options::icase() const
{
return d_arg.option('i');
}
// by alternatives/setignored.cc
inline auto Options::ignore() const
{
return d_arg.beginEndRE("^\\s*ignore\\s+\\S+\\s*$");
}
// by ./noinput.cc selector/selector1.cc
// static
inline bool Options::input()
{
return s_input;
}
// by history/history1.cc
inline size_t Options::now() const
{
return d_now;
}
// by history/history.f (position, rotate)
inline Position Options::historyPosition() const
{
return d_historyPosition;
}
// by alternatives/separateat.cc
inline bool Options::separate() const
{
return d_separate;
}
// by alternatives/finddirs.cc
inline bool Options::traditional() const
{
return d_arg.option(0, "traditional");
}
// by alternatives/viable.cc
inline std::string const &Options::triStateStr() const
{
return s_triState[d_addRoot];
}
|