Home
last modified time | relevance | path

Searched refs:FormatValue (Results 1 – 17 of 17) sorted by relevance

/haiku/src/kits/debugger/value/value_formatters/
H A DEnumerationValueFormatter.cpp25 EnumerationValueFormatter::FormatValue(Value* _value, BString& _output) in FormatValue() function in EnumerationValueFormatter
40 return IntegerValueFormatter::FormatValue(_value, _output); in FormatValue()
H A DBoolValueFormatter.cpp24 BoolValueFormatter::FormatValue(Value* _value, BString& _output) in FormatValue() function in BoolValueFormatter
H A DStringValueFormatter.cpp28 StringValueFormatter::FormatValue(Value* value, BString& _output) in FormatValue() function in StringValueFormatter
H A DIntegerValueFormatter.cpp44 IntegerValueFormatter::FormatValue(Value* _value, BString& _output) in FormatValue() function in IntegerValueFormatter
54 if (!IntegerFormatter::FormatValue(value->GetValue(), format, buffer, in FormatValue()
H A DFloatValueFormatter.cpp30 FloatValueFormatter::FormatValue(Value* _value, BString& _output) in FormatValue() function in FloatValueFormatter
/haiku/src/apps/debugger/user_interface/gui/value/
H A DTableCellFormattedValueRenderer.cpp44 if (fValueFormatter->FormatValue(value, output) != B_OK) in RenderValue()
58 if (fValueFormatter->FormatValue(value, output) != B_OK) in PreferredValueWidth()
H A DTableCellTextControlEditor.cpp68 if (GetValueFormatter()->FormatValue(InitialValue(), output) == B_OK) in AttachedToWindow()
/haiku/headers/private/debugger/value/value_formatters/
H A DEnumerationValueFormatter.h17 virtual status_t FormatValue(Value* value, BString& _output);
H A DStringValueFormatter.h24 virtual status_t FormatValue(Value* value, BString& _output);
H A DBoolValueFormatter.h24 virtual status_t FormatValue(Value* value, BString& _output);
H A DFloatValueFormatter.h24 virtual status_t FormatValue(Value* value, BString& _output);
H A DIntegerValueFormatter.h30 virtual status_t FormatValue(Value* value, BString& _output);
/haiku/headers/private/debugger/util/
H A DIntegerFormatter.h26 static bool FormatValue(const BVariant& value,
/haiku/headers/private/debugger/value/
H A DValueFormatter.h23 virtual status_t FormatValue(Value* value, BString& _output)
/haiku/src/kits/debugger/util/
H A DIntegerFormatter.cpp94 IntegerFormatter::FormatValue(const BVariant& value, integer_format format, in FormatValue() function in IntegerFormatter
/haiku/src/apps/diskprobe/
H A DProbeView.cpp137 void FormatValue(char* buffer, size_t bufferSize,
581 HeaderView::FormatValue(char* buffer, size_t bufferSize, off_t value) in FormatValue() function in HeaderView
592 FormatValue(buffer, sizeof(buffer), fPosition / fBlockSize); in UpdatePositionViews()
596 FormatValue(buffer, sizeof(buffer), fPosition); in UpdatePositionViews()
606 FormatValue(buffer, sizeof(buffer), fPosition % fBlockSize); in UpdateOffsetViews()
610 FormatValue(buffer, sizeof(buffer), fPosition); in UpdateOffsetViews()
621 FormatValue(buffer, sizeof(buffer), in UpdateFileSizeView()
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageExpressionEvaluator.cpp1966 if (!IntegerFormatter::FormatValue(value, INTEGER_FORMAT_HEX_DEFAULT, in _GetNodeChildForPrimitive()