Searched refs:formatter (Results 1 - 25 of 32) sorted by relevance

12

/haiku/src/apps/debugger/user_interface/gui/value/
H A DTableCellFormattedValueEditor.cpp12 Value* initialValue, ValueFormatter* formatter)
15 fValueFormatter(formatter)
11 TableCellFormattedValueEditor( Value* initialValue, ValueFormatter* formatter) argument
H A DTableCellIntegerEditor.cpp17 ValueFormatter* formatter)
19 TableCellTextControlEditor(initialValue, formatter)
16 TableCellIntegerEditor(::Value* initialValue, ValueFormatter* formatter) argument
H A DTableCellFloatEditor.cpp17 ValueFormatter* formatter)
19 TableCellTextControlEditor(initialValue, formatter)
16 TableCellFloatEditor(::Value* initialValue, ValueFormatter* formatter) argument
H A DTableCellFormattedValueEditor.h18 ValueFormatter* formatter);
H A DTableCellIntegerEditor.h17 ValueFormatter* formatter);
H A DTableCellBoolEditor.h16 ValueFormatter* formatter);
H A DTableCellEnumerationEditor.h17 ValueFormatter* formatter);
H A DTableCellFloatEditor.h16 ValueFormatter* formatter);
H A DTableCellFormattedValueRenderer.cpp17 ValueFormatter* formatter)
19 fValueFormatter(formatter)
16 TableCellFormattedValueRenderer( ValueFormatter* formatter) argument
H A DTableCellBoolEditor.cpp12 ValueFormatter* formatter)
14 TableCellOptionPopUpEditor(initialValue, formatter)
11 TableCellBoolEditor(::Value* initialValue, ValueFormatter* formatter) argument
H A DTableCellOptionPopUpEditor.cpp17 ValueFormatter* formatter)
19 TableCellFormattedValueEditor(initialValue, formatter),
16 TableCellOptionPopUpEditor(::Value* initialValue, ValueFormatter* formatter) argument
H A DTableCellFormattedValueRenderer.h19 ValueFormatter* formatter);
H A DTableCellOptionPopUpEditor.h20 ValueFormatter* formatter);
H A DTableCellTextControlEditor.h19 ValueFormatter* formatter);
H A DTableCellEnumerationEditor.cpp13 ValueFormatter* formatter)
15 TableCellOptionPopUpEditor(initialValue, formatter)
12 TableCellEnumerationEditor(::Value* initialValue, ValueFormatter* formatter) argument
H A DTableCellTextControlEditor.cpp19 ValueFormatter* formatter)
21 TableCellFormattedValueEditor(initialValue, formatter),
18 TableCellTextControlEditor(::Value* initialValue, ValueFormatter* formatter) argument
/haiku/src/apps/debugger/user_interface/gui/value/value_handlers/
H A DBoolValueHandler.cpp49 BoolValueFormatter* formatter = new(std::nothrow) BoolValueFormatter;
50 if (formatter == NULL)
53 _formatter = formatter;
65 ValueFormatter* formatter = NULL;
66 if (GetValueFormatter(value, formatter) != B_OK)
68 BReference<ValueFormatter> formatterReference(formatter, true);
72 = new(std::nothrow) TableCellFormattedValueRenderer(formatter);
89 ValueFormatter* formatter;
90 status_t error = GetValueFormatter(value, formatter);
93 BReference<ValueFormatter> formatterReference(formatter, tru
[all...]
H A DStringValueHandler.cpp47 ValueFormatter* formatter = new(std::nothrow) StringValueFormatter;
48 if (formatter == NULL)
51 _formatter = formatter;
63 ValueFormatter* formatter = NULL;
64 status_t error = GetValueFormatter(value, formatter);
67 BReference<ValueFormatter> formatterReference(formatter, true);
71 = new(std::nothrow) TableCellFormattedValueRenderer(formatter);
H A DFloatValueHandler.cpp48 FloatValueFormatter* formatter = new(std::nothrow) FloatValueFormatter;
49 if (formatter == NULL)
52 _formatter = formatter;
64 ValueFormatter* formatter = NULL;
65 status_t error = GetValueFormatter(value, formatter);
68 BReference<ValueFormatter> formatterReference(formatter, true);
72 = new(std::nothrow) TableCellFormattedValueRenderer(formatter);
89 ValueFormatter* formatter;
90 status_t error = GetValueFormatter(value, formatter);
93 BReference<ValueFormatter> formatterReference(formatter, tru
[all...]
H A DEnumerationValueHandler.cpp57 ValueFormatter* formatter = NULL; local
58 error = CreateValueFormatter(config, formatter);
62 _formatter = formatter;
82 ValueFormatter* formatter; local
83 error = CreateValueFormatter(config, formatter);
86 BReference<ValueFormatter> formatterReference(formatter, true);
89 TableCellEnumerationEditor(value, formatter);
119 ValueFormatter* formatter = new(std::nothrow) EnumerationValueFormatter( local
121 if (formatter == NULL)
124 _formatter = formatter;
154 ValueFormatter* formatter = NULL; local
[all...]
H A DIntegerValueHandler.cpp157 ValueFormatter* formatter = new(std::nothrow) IntegerValueFormatter(config); local
158 if (formatter == NULL)
161 _formatter = formatter;
199 ValueFormatter* formatter; local
200 error = CreateValueFormatter(config, formatter);
203 BReference<ValueFormatter> formatterReference(formatter, true);
206 value, formatter);
281 ValueFormatter* formatter = new(std::nothrow) IntegerValueFormatter( local
283 if (formatter == NULL)
286 _formatter = formatter;
296 ValueFormatter* formatter; local
[all...]
/haiku/src/tests/kits/locale/
H A DStringFormatTest.cpp85 BStringFormat formatter(language, tests[i].pattern);
87 result = formatter.Format(output, tests[i].number);
116 BStringFormat formatter(tests[i].pattern);
117 CPPUNIT_ASSERT(formatter.InitCheck() != B_OK);
119 result = formatter.Format(output, 1);
122 result = formatter.Format(output, 2);
/haiku/src/kits/shared/
H A DStringForRate.cpp45 BStringFormat formatter(
47 formatter.Format(format, rate);
H A DStringForSize.cpp46 BStringFormat formatter(
48 formatter.Format(format, size);
/haiku/src/kits/locale/
H A DNumberFormat.cpp38 ssize_t ApplyFormatter(NumberFormat* formatter, char* string,
40 status_t ApplyFormatter(NumberFormat* formatter, BString& string,
159 BNumberFormatImpl::ApplyFormatter(NumberFormat* formatter, char* string, argument
163 status_t status = ApplyFormatter(formatter, fullString, value);
172 BNumberFormatImpl::ApplyFormatter(NumberFormat* formatter, BString& string, argument
175 if (formatter == NULL)
179 formatter->format(value, icuString);
234 NumberFormat* formatter = fPrivateData->GetFloat(&fConventions); local
236 if (formatter == NULL)
240 formatter
265 NumberFormat* formatter = fPrivateData->GetInteger(&fConventions); local
[all...]

Completed in 92 milliseconds

12