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

1 2

  /external/lldb/source/Interpreter/
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);
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);
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);
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);
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);
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);
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);
  /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);
CommandObjectDisassemble.cpp 67 const int short_option = m_getopt_table[option_idx].val; local
71 switch (short_option)
169 error.SetErrorStringWithFormat("unrecognized short 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);
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);
CommandObjectLog.cpp 137 const int short_option = m_getopt_table[option_idx].val; local
139 switch (short_option)
151 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
CommandObjectBreakpointCommand.cpp 424 const int short_option = m_getopt_table[option_idx].val; local
426 switch (short_option)
    [all...]
CommandObjectFrame.cpp 117 const int short_option = m_getopt_table[option_idx].val; local
118 switch (short_option)
127 error.SetErrorStringWithFormat ("invalid short option character '%c'", short_option);
CommandObjectRegister.cpp 302 const int short_option = g_option_table[option_idx].short_option; local
303 switch (short_option)
330 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
CommandObjectSettings.cpp 116 const int short_option = m_getopt_table[option_idx].val; local
118 switch (short_option)
124 error.SetErrorStringWithFormat ("unrecognized options '%c'", short_option);
    [all...]
CommandObjectWatchpointCommand.cpp 401 const int short_option = m_getopt_table[option_idx].val; local
403 switch (short_option)
    [all...]
CommandObjectPlatform.cpp 631 const int short_option = m_getopt_table[option_idx].val; local
634 switch (short_option)
710 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
    [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...]
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...]
  /external/lldb/tools/lldb-perf/lib/
TestCase.cpp 77 const int short_option = ::getopt_long_only (argc, local
83 switch (short_option)
94 done = !ParseOption(short_option, optarg);
  /external/lldb/include/lldb/
lldb-private-types.h 61 int short_option; // Single character for this option. member in struct:lldb_private::__anon8966
  /external/lldb/tools/lldb-perf/common/clang/
lldb_perf_clang.cpp 354 const int short_option = ::getopt_long_only (argc, local
360 switch (short_option)
403 fprintf (stderr, "error: unrecognized option %c\n", short_option);
  /external/lldb/tools/lldb-perf/common/stepping/
lldb-perf-stepping.cpp 244 const int short_option = ::getopt_long_only (argc, local
250 switch (short_option)
294 fprintf (stderr, "error: unrecognized option %c\n", short_option);

Completed in 245 milliseconds

1 2