Lines Matching defs:value

94 					bool value;
95 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
96 representation = value ? B_TRANSLATE("yes")
107 int16 value;
108 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
109 representation.SetToFormat("%" B_PRId16, value);
119 int32 value;
120 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
121 representation.SetToFormat("%" B_PRId32, value);
131 int64 value;
132 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
133 representation.SetToFormat("%" B_PRId64, value);
143 int8 value;
144 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
145 representation.SetToFormat("%" B_PRId8, value);
155 BRect value;
156 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
157 representation.SetToFormat("(%g,%g) (%g,%g)", value.left,
158 value.top, value.right, value.bottom);
170 double value;
171 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
172 representation.SetToFormat("%f", value);
182 float value;
183 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
184 representation.SetToFormat("%f", value);
195 int32 value;
196 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
197 dateTimeFormatter.Format(representation, value,
200 int64 value;
201 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
202 dateTimeFormatter.Format(representation, value,
215 uint16 value;
216 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
217 representation.SetToFormat("%" B_PRIu16, value);
227 uint32 value;
228 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
229 representation.SetToFormat("%" B_PRIu32, value);
239 uint64 value;
240 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
241 representation.SetToFormat("%" B_PRIu64, value);
251 uint8 value;
252 node->ReadAttr(name, info.type, 0, &value, sizeof(value));
253 representation.SetToFormat("%" B_PRIu8, value);