Deleted Added
full compact
OptionValueArray.cpp (276479) OptionValueArray.cpp (280031)
1//===-- OptionValueArray.cpp ------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 39 unchanged lines hidden (view full) ---

48 case eTypeDictionary:
49 case eTypeProperties:
50 case eTypeFileSpecList:
51 case eTypePathMap:
52 m_values[i]->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options);
53 break;
54
55 case eTypeBoolean:
1//===-- OptionValueArray.cpp ------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 39 unchanged lines hidden (view full) ---

48 case eTypeDictionary:
49 case eTypeProperties:
50 case eTypeFileSpecList:
51 case eTypePathMap:
52 m_values[i]->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options);
53 break;
54
55 case eTypeBoolean:
56 case eTypeChar:
56 case eTypeEnum:
57 case eTypeFileSpec:
58 case eTypeFormat:
59 case eTypeSInt64:
60 case eTypeString:
61 case eTypeUInt64:
62 case eTypeUUID:
63 // No need to show the type for dictionaries of simple items

--- 6 unchanged lines hidden (view full) ---

70 strm.IndentLess();
71 }
72}
73
74Error
75OptionValueArray::SetValueFromCString (const char *value, VarSetOperationType op)
76{
77 Args args(value);
57 case eTypeEnum:
58 case eTypeFileSpec:
59 case eTypeFormat:
60 case eTypeSInt64:
61 case eTypeString:
62 case eTypeUInt64:
63 case eTypeUUID:
64 // No need to show the type for dictionaries of simple items

--- 6 unchanged lines hidden (view full) ---

71 strm.IndentLess();
72 }
73}
74
75Error
76OptionValueArray::SetValueFromCString (const char *value, VarSetOperationType op)
77{
78 Args args(value);
79 NotifyValueChanged();
78 return SetArgs (args, op);
79}
80
81
82lldb::OptionValueSP
83OptionValueArray::GetSubValue (const ExecutionContext *exe_ctx,
84 const char *name,
85 bool will_modify,

--- 266 unchanged lines hidden ---
80 return SetArgs (args, op);
81}
82
83
84lldb::OptionValueSP
85OptionValueArray::GetSubValue (const ExecutionContext *exe_ctx,
86 const char *name,
87 bool will_modify,

--- 266 unchanged lines hidden ---