HomeSort by relevance Sort by last modified time
    Searched refs:short_option (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/lldb/source/Interpreter/
OptionGroupUUID.cpp 54 const int short_option = g_option_table[option_idx].short_option; local
56 switch (short_option)
65 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
OptionGroupArchitecture.cpp 65 const int short_option = g_option_table[option_idx].short_option; local
67 switch (short_option)
74 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
OptionGroupOutputFile.cpp 56 const int short_option = g_option_table[option_idx].short_option; local
58 switch (short_option)
69 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
OptionGroupFile.cpp 23 int short_option,
32 m_option_definition.short_option = short_option;
63 int short_option,
72 m_option_definition.short_option = short_option;
OptionGroupBoolean.cpp 23 int short_option,
32 m_option_definition.short_option = short_option;
OptionGroupString.cpp 23 int short_option,
33 m_option_definition.short_option = short_option;
OptionGroupUInt64.cpp 23 int short_option,
33 m_option_definition.short_option = short_option;
OptionGroupWatchpoint.cpp 76 const int short_option = g_option_table[option_idx].short_option; local
77 switch (short_option)
95 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
OptionGroupPlatform.cpp 120 const int short_option = g_option_table[option_idx].short_option; local
122 switch (short_option)
145 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
OptionGroupVariable.cpp 80 const int short_option = g_option_table[option_idx].short_option; local
81 switch (short_option)
98 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
OptionGroupFormat.cpp 76 const int short_option = g_option_table[option_idx].short_option; local
78 switch (short_option)
200 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
OptionGroupValueObjectDisplay.cpp 69 const int short_option = g_option_table[option_idx].short_option; local
72 switch (short_option)
118 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
Options.cpp 232 m_required_options[j].insert(opt_defs[i].short_option);
234 m_optional_options[j].insert(opt_defs[i].short_option);
278 const int short_opt = opt_defs[i].short_option;
430 const bool has_short_option = isprint8(opt_def.short_option) != 0;
442 strm.Printf ("-%c", opt_def.short_option);
527 if (opt_defs[i].usage_mask & opt_set_mask && isprint8(opt_defs[i].short_option))
534 options.insert (opt_defs[i].short_option);
558 if (opt_defs[i].usage_mask & opt_set_mask && isprint8(opt_defs[i].short_option))
565 options.insert (opt_defs[i].short_option);
592 if (opt_defs[i].usage_mask & opt_set_mask && isprint8(opt_defs[i].short_option))
    [all...]
  /external/lldb/source/Commands/
CommandObjectHelp.h 60 const int short_option = m_getopt_table[option_idx].val; local
62 switch (short_option)
71 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
CommandObjectArgs.cpp 59 const int short_option = m_getopt_table[option_idx].val; local
61 switch (short_option)
64 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
CommandObjectType.cpp 214 const int short_option = m_getopt_table[option_idx].val; local
217 switch (short_option)
244 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
379 const int short_option = g_option_table[option_idx].short_option; local
382 switch (short_option)
396 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
922 const int short_option = m_getopt_table[option_idx].val; local
925 switch (short_option)
974 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
1439 const int short_option = m_getopt_table[option_idx].val; local
1602 const int short_option = m_getopt_table[option_idx].val; local
1746 const int short_option = m_getopt_table[option_idx].val; local
2309 const int short_option = m_getopt_table[option_idx].val; local
2523 const int short_option = m_getopt_table[option_idx].val; local
2721 const int short_option = m_getopt_table[option_idx].val; local
2887 const int short_option = m_getopt_table[option_idx].val; local
3054 const int short_option = m_getopt_table[option_idx].val; local
3183 const int short_option = m_getopt_table[option_idx].val; local
3700 const int short_option = m_getopt_table[option_idx].val; local
    [all...]
CommandObjectThread.cpp 72 const int short_option = m_getopt_table[option_idx].val; local
74 switch (short_option)
81 error.SetErrorStringWithFormat("invalid integer value for option '%c'", short_option);
93 error.SetErrorStringWithFormat("invalid integer value for option '%c'", short_option);
97 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
296 const int short_option = m_getopt_table[option_idx].val; local
298 switch (short_option)
305 error.SetErrorStringWithFormat("invalid boolean value for option '%c'", short_option);
331 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
825 const int short_option = m_getopt_table[option_idx].val local
1279 const int short_option = m_getopt_table[option_idx].val; local
    [all...]
CommandObjectSource.cpp 61 const int short_option = g_option_table[option_idx].short_option; local
62 switch (short_option)
75 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
169 const int short_option = g_option_table[option_idx].short_option; local
170 switch (short_option)
209 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
    [all...]
CommandObjectExpression.cpp 75 const int short_option = g_option_table[option_idx].short_option; local
77 switch (short_option)
131 error.SetErrorStringWithFormat("invalid short option character '%c'", short_option);
  /external/lldb/include/lldb/Interpreter/
OptionGroupBoolean.h 34 int short_option,
OptionGroupString.h 32 int short_option,
OptionGroupUInt64.h 32 int short_option,
OptionGroupFile.h 34 int short_option,
92 int short_option,
  /external/lldb/include/lldb/
lldb-private-types.h 61 int short_option; // Single character for this option. member in struct:lldb_private::__anon14228
  /external/lldb/tools/driver/
Driver.cpp 66 int short_option; // Single character for this option. member in struct:__anon14403
275 if (option_table[i].short_option == 'h')
281 fprintf (out, " -%c <%s>", option_table[i].short_option, arg_name);
283 fprintf (out, " -%c [<%s>]", option_table[i].short_option, arg_name);
285 fprintf (out, " -%c", option_table[i].short_option);
290 fprintf (out, " [-%c <%s>]", option_table[i].short_option, arg_name);
292 fprintf (out, " [-%c [<%s>]]", option_table[i].short_option, arg_name);
294 fprintf (out, " [-%c]", option_table[i].short_option);
320 pos = options_seen.find (option_table[i].short_option);
326 options_seen.insert (option_table[i].short_option);
589 const int short_option = g_options[long_options_index].short_option; local
    [all...]

Completed in 534 milliseconds

1 2 3