Symbol: ValueFormatter
headers/private/debugger/value/ValueFormatter.h
16
class ValueFormatter : public BReferenceable {
headers/private/debugger/value/ValueFormatter.h
18
virtual ~ValueFormatter();
headers/private/debugger/value/value_formatters/BoolValueFormatter.h
16
class BoolValueFormatter : public ValueFormatter {
headers/private/debugger/value/value_formatters/FloatValueFormatter.h
16
class FloatValueFormatter : public ValueFormatter {
headers/private/debugger/value/value_formatters/IntegerValueFormatter.h
17
class IntegerValueFormatter : public ValueFormatter {
headers/private/debugger/value/value_formatters/StringValueFormatter.h
16
class StringValueFormatter : public ValueFormatter {
src/apps/debugger/user_interface/gui/value/TableCellBoolEditor.cpp
12
ValueFormatter* formatter)
src/apps/debugger/user_interface/gui/value/TableCellBoolEditor.h
16
ValueFormatter* formatter);
src/apps/debugger/user_interface/gui/value/TableCellEnumerationEditor.cpp
13
ValueFormatter* formatter)
src/apps/debugger/user_interface/gui/value/TableCellEnumerationEditor.h
17
ValueFormatter* formatter);
src/apps/debugger/user_interface/gui/value/TableCellFloatEditor.cpp
17
ValueFormatter* formatter)
src/apps/debugger/user_interface/gui/value/TableCellFloatEditor.h
16
ValueFormatter* formatter);
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueEditor.cpp
12
Value* initialValue, ValueFormatter* formatter)
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueEditor.h
11
class ValueFormatter;
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueEditor.h
18
ValueFormatter* formatter);
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueEditor.h
22
ValueFormatter* GetValueFormatter() const
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueEditor.h
26
ValueFormatter* fValueFormatter;
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueRenderer.cpp
17
ValueFormatter* formatter)
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueRenderer.h
13
class ValueFormatter;
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueRenderer.h
19
ValueFormatter* formatter);
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueRenderer.h
24
ValueFormatter* GetValueFormatter() const
src/apps/debugger/user_interface/gui/value/TableCellFormattedValueRenderer.h
34
ValueFormatter* fValueFormatter;
src/apps/debugger/user_interface/gui/value/TableCellIntegerEditor.cpp
17
ValueFormatter* formatter)
src/apps/debugger/user_interface/gui/value/TableCellIntegerEditor.h
17
ValueFormatter* formatter);
src/apps/debugger/user_interface/gui/value/TableCellOptionPopUpEditor.cpp
17
ValueFormatter* formatter)
src/apps/debugger/user_interface/gui/value/TableCellOptionPopUpEditor.h
20
ValueFormatter* formatter);
src/apps/debugger/user_interface/gui/value/TableCellTextControlEditor.cpp
19
ValueFormatter* formatter)
src/apps/debugger/user_interface/gui/value/TableCellTextControlEditor.h
19
ValueFormatter* formatter);
src/apps/debugger/user_interface/gui/value/ValueHandler.h
18
class ValueFormatter;
src/apps/debugger/user_interface/gui/value/ValueHandler.h
27
ValueFormatter*& _formatter) = 0;
src/apps/debugger/user_interface/gui/value/ValueHandlerRoster.cpp
147
ValueFormatter*& _formatter)
src/apps/debugger/user_interface/gui/value/ValueHandlerRoster.h
15
class ValueFormatter;
src/apps/debugger/user_interface/gui/value/ValueHandlerRoster.h
38
ValueFormatter*& _formatter);
src/apps/debugger/user_interface/gui/value/value_handlers/BoolValueHandler.cpp
44
ValueFormatter*& _formatter)
src/apps/debugger/user_interface/gui/value/value_handlers/BoolValueHandler.cpp
65
ValueFormatter* formatter = NULL;
src/apps/debugger/user_interface/gui/value/value_handlers/BoolValueHandler.cpp
68
BReference<ValueFormatter> formatterReference(formatter, true);
src/apps/debugger/user_interface/gui/value/value_handlers/BoolValueHandler.cpp
89
ValueFormatter* formatter;
src/apps/debugger/user_interface/gui/value/value_handlers/BoolValueHandler.cpp
93
BReference<ValueFormatter> formatterReference(formatter, true);
src/apps/debugger/user_interface/gui/value/value_handlers/BoolValueHandler.h
21
ValueFormatter*& _formatter);
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.cpp
117
IntegerValueFormatter::Config* config, ValueFormatter*& _formatter)
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.cpp
119
ValueFormatter* formatter = new(std::nothrow) EnumerationValueFormatter(
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.cpp
154
ValueFormatter* formatter = NULL;
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.cpp
158
BReference<ValueFormatter> formatterReference(formatter,
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.cpp
45
ValueFormatter*& _formatter)
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.cpp
57
ValueFormatter* formatter = NULL;
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.cpp
82
ValueFormatter* formatter;
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.cpp
86
BReference<ValueFormatter> formatterReference(formatter, true);
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.h
21
ValueFormatter*& _formatter);
src/apps/debugger/user_interface/gui/value/value_handlers/EnumerationValueHandler.h
30
ValueFormatter*& _formatter);
src/apps/debugger/user_interface/gui/value/value_handlers/FloatValueHandler.cpp
43
ValueFormatter*& _formatter)
src/apps/debugger/user_interface/gui/value/value_handlers/FloatValueHandler.cpp
64
ValueFormatter* formatter = NULL;
src/apps/debugger/user_interface/gui/value/value_handlers/FloatValueHandler.cpp
68
BReference<ValueFormatter> formatterReference(formatter, true);
src/apps/debugger/user_interface/gui/value/value_handlers/FloatValueHandler.cpp
89
ValueFormatter* formatter;
src/apps/debugger/user_interface/gui/value/value_handlers/FloatValueHandler.cpp
93
BReference<ValueFormatter> formatterReference(formatter, true);
src/apps/debugger/user_interface/gui/value/value_handlers/FloatValueHandler.h
21
ValueFormatter*& _formatter);
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.cpp
145
ValueFormatter*& _formatter)
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.cpp
157
ValueFormatter* formatter = new(std::nothrow) IntegerValueFormatter(config);
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.cpp
199
ValueFormatter* formatter;
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.cpp
203
BReference<ValueFormatter> formatterReference(formatter, true);
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.cpp
279
ValueFormatter*& _formatter)
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.cpp
281
ValueFormatter* formatter = new(std::nothrow) IntegerValueFormatter(
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.cpp
296
ValueFormatter* formatter;
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.cpp
300
BReference<ValueFormatter> formatterReference(formatter, true);
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.h
29
ValueFormatter*& _formatter);
src/apps/debugger/user_interface/gui/value/value_handlers/IntegerValueHandler.h
45
ValueFormatter*& _formatter);
src/apps/debugger/user_interface/gui/value/value_handlers/StringValueHandler.cpp
42
ValueFormatter*& _formatter)
src/apps/debugger/user_interface/gui/value/value_handlers/StringValueHandler.cpp
47
ValueFormatter* formatter = new(std::nothrow) StringValueFormatter;
src/apps/debugger/user_interface/gui/value/value_handlers/StringValueHandler.cpp
63
ValueFormatter* formatter = NULL;
src/apps/debugger/user_interface/gui/value/value_handlers/StringValueHandler.cpp
67
BReference<ValueFormatter> formatterReference(formatter, true);
src/apps/debugger/user_interface/gui/value/value_handlers/StringValueHandler.h
21
ValueFormatter*& _formatter);
src/kits/debugger/value/ValueFormatter.cpp
10
ValueFormatter::~ValueFormatter()
src/kits/debugger/value/ValueFormatter.cpp
16
ValueFormatter::SupportsValidation() const
src/kits/debugger/value/ValueFormatter.cpp
23
ValueFormatter::ValidateFormattedValue(const BString& input, type_code type)
src/kits/debugger/value/ValueFormatter.cpp
31
ValueFormatter::GetValueFromFormattedInput(const BString& input,
src/kits/debugger/value/value_formatters/BoolValueFormatter.cpp
13
ValueFormatter()
src/kits/debugger/value/value_formatters/FloatValueFormatter.cpp
19
ValueFormatter()
src/kits/debugger/value/value_formatters/IntegerValueFormatter.cpp
21
ValueFormatter(),
src/kits/debugger/value/value_formatters/StringValueFormatter.cpp
17
ValueFormatter()