Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:OptionValue

1 //===-- OptionValue.cpp -----------------------------------------*- C++ -*-===//
10 #include "lldb/Interpreter/OptionValue.h"
29 OptionValue::GetUInt64Value (uint64_t fail_value, bool *success_ptr)
35 case OptionValue::eTypeBoolean: return static_cast<OptionValueBoolean *>(this)->GetCurrentValue();
36 case OptionValue::eTypeSInt64: return static_cast<OptionValueSInt64 *>(this)->GetCurrentValue();
37 case OptionValue::eTypeUInt64: return static_cast<OptionValueUInt64 *>(this)->GetCurrentValue();
47 OptionValue::SetSubValue (const ExecutionContext *exe_ctx,
59 OptionValue::GetAsBoolean ()
61 if (GetType () == OptionValue::eTypeBoolean)
67 OptionValue::GetAsBoolean () const
69 if (GetType () == OptionValue::eTypeBoolean)
76 OptionValue::GetAsFileSpec ()
78 if (GetType () == OptionValue::eTypeFileSpec)
85 OptionValue::GetAsFileSpec () const
87 if (GetType () == OptionValue::eTypeFileSpec)
94 OptionValue::GetAsFileSpecList ()
96 if (GetType () == OptionValue::eTypeFileSpecList)
103 OptionValue::GetAsFileSpecList () const
105 if (GetType () == OptionValue::eTypeFileSpecList)
112 OptionValue::GetAsArch ()
114 if (GetType () == OptionValue::eTypeArch)
121 OptionValue::GetAsArch () const
123 if (GetType () == OptionValue::eTypeArch)
129 OptionValue::GetAsArray ()
131 if (GetType () == OptionValue::eTypeArray)
138 OptionValue::GetAsArray () const
140 if (GetType () == OptionValue::eTypeArray)
146 OptionValue::GetAsArgs ()
148 if (GetType () == OptionValue::eTypeArgs)
155 OptionValue::GetAsArgs () const
157 if (GetType () == OptionValue::eTypeArgs)
163 OptionValue::GetAsDictionary ()
165 if (GetType () == OptionValue::eTypeDictionary)
171 OptionValue::GetAsDictionary () const
173 if (GetType () == OptionValue::eTypeDictionary)
179 OptionValue::GetAsEnumeration ()
181 if (GetType () == OptionValue::eTypeEnum)
187 OptionValue::GetAsEnumeration () const
189 if (GetType () == OptionValue::eTypeEnum)
195 OptionValue::GetAsFormat ()
197 if (GetType () == OptionValue::eTypeFormat)
203 OptionValue::GetAsFormat () const
205 if (GetType () == OptionValue::eTypeFormat)
211 OptionValue::GetAsPathMappings ()
213 if (GetType () == OptionValue::eTypePathMap)
219 OptionValue::GetAsPathMappings () const
221 if (GetType () == OptionValue::eTypePathMap)
227 OptionValue::GetAsProperties ()
229 if (GetType () == OptionValue::eTypeProperties)
235 OptionValue::GetAsProperties () const
237 if (GetType () == OptionValue::eTypeProperties)
243 OptionValue::GetAsRegex ()
245 if (GetType () == OptionValue::eTypeRegex)
251 OptionValue::GetAsRegex () const
253 if (GetType () == OptionValue::eTypeRegex)
259 OptionValue::GetAsSInt64 ()
261 if (GetType () == OptionValue::eTypeSInt64)
267 OptionValue::GetAsSInt64 () const
269 if (GetType () == OptionValue::eTypeSInt64)
275 OptionValue::GetAsString ()
277 if (GetType () == OptionValue::eTypeString)
283 OptionValue::GetAsString () const
285 if (GetType () == OptionValue::eTypeString)
291 OptionValue::GetAsUInt64 ()
293 if (GetType () == OptionValue::eTypeUInt64)
299 OptionValue::GetAsUInt64 () const
301 if (GetType () == OptionValue::eTypeUInt64)
307 OptionValue::GetAsUUID ()
309 if (GetType () == OptionValue::eTypeUUID)
316 OptionValue::GetAsUUID () const
318 if (GetType () == OptionValue::eTypeUUID)
325 OptionValue::GetBooleanValue (bool fail_value) const
334 OptionValue::SetBooleanValue (bool new_value)
346 OptionValue::GetEnumerationValue (int64_t fail_value) const
355 OptionValue::SetEnumerationValue (int64_t value)
367 OptionValue::GetFileSpecValue () const
377 OptionValue::SetFileSpecValue (const FileSpec &file_spec)
389 OptionValue::GetFileSpecListValue () const
399 OptionValue::GetFormatValue (lldb::Format fail_value) const
408 OptionValue::SetFormatValue (lldb::Format new_value)
420 OptionValue::GetRegexValue () const
430 OptionValue::GetSInt64Value (int64_t fail_value) const
439 OptionValue::SetSInt64Value (int64_t new_value)
451 OptionValue::GetStringValue (const char *fail_value) const
460 OptionValue::SetStringValue (const char *new_value)
472 OptionValue::GetUInt64Value (uint64_t fail_value) const
481 OptionValue::SetUInt64Value (uint64_t new_value)
493 OptionValue::GetUUIDValue () const
502 OptionValue::SetUUIDValue (const UUID &uuid)
514 OptionValue::GetBuiltinTypeAsCString (Type t)
541 OptionValue::CreateValueFromCStringForTypeMask (const char *value_cstr, uint32_t type_mask, Error &error)
566 OptionValue::DumpQualifiedName (Stream &strm) const
588 OptionValue::AutoComplete (CommandInterpreter &interpreter,
601 OptionValue::SetValueFromCString (const char *value, VarSetOperationType op)