Symbol: FindDouble
headers/build/os/app/Message.h
166
status_t FindDouble(const char *name, double *value) const;
headers/build/os/app/Message.h
167
status_t FindDouble(const char *name, int32 index, double *value) const;
headers/build/os/app/Message.h
268
double FindDouble(const char *, int32 n = 0) const;
headers/os/app/Message.h
246
status_t FindDouble(const char* name,
headers/os/app/Message.h
248
status_t FindDouble(const char* name, int32 index,
headers/os/app/Message.h
426
double FindDouble(const char* name, int32 n = 0) const;
src/add-ons/print/transports/shared/DbgMsg.cpp
128
msg->FindDouble(name, j, &aDouble);
src/apps/cortex/Persistence/Wrappers/MessageIO.cpp
521
err = message->FindDouble(name, index, &v);
src/apps/cortex/ValControl/NumericValControl.cpp
511
err = pMsg->FindDouble("value", &dfValue);
src/apps/cortex/ValControl/ValControlDigitSegment.cpp
347
pMsg->FindDouble("value", &fVal);
src/apps/haikudepot/model/Model.cpp
649
&& error.FindDouble("code", &errorCode) == B_OK) {
src/apps/haikudepot/server/PopulatePkgUserRatingsFromServerProcess.cpp
123
if (item.FindDouble("rating", &rating) != B_OK)
src/apps/haikudepot/server/PopulatePkgUserRatingsFromServerProcess.cpp
143
version.FindDouble("revision", &revision);
src/apps/haikudepot/server/PopulatePkgUserRatingsFromServerProcess.cpp
164
item.FindDouble("createTimestamp", &createTimestamp);
src/apps/haikudepot/server/PopulatePkgUserRatingsFromServerProcess.cpp
217
status = result.FindDouble("sampleSize", &sampleSizeF);
src/apps/haikudepot/server/PopulatePkgUserRatingsFromServerProcess.cpp
230
status = result.FindDouble("rating", &ratingF);
src/apps/haikudepot/server/PopulatePkgUserRatingsFromServerProcess.cpp
255
= ratingDistributionItem.FindDouble("rating", &ratingDistributionRatingF);
src/apps/haikudepot/server/PopulatePkgUserRatingsFromServerProcess.cpp
261
status = ratingDistributionItem.FindDouble("total", &ratingDistributionTotalF);
src/apps/haikudepot/server/WebAppInterface.cpp
370
if (agreementMessage.FindDouble("timestampAgreed", &timestampAgreedMillis) == B_OK)
src/apps/haikudepot/server/WebAppInterface.cpp
433
if (claimsMessage.FindDouble("exp", &expiryTimestampDouble) == B_OK)
src/apps/haikudepot/server/WebAppInterface.cpp
471
|| (resultMessage.FindDouble("minimumAge", &metaDataMinimumAge) != B_OK)) {
src/apps/haikudepot/server/WebAppInterface.cpp
877
if (resultMessage.FindDouble("minPasswordLength", &value) == B_OK)
src/apps/haikudepot/server/WebAppInterface.cpp
880
if (resultMessage.FindDouble("minPasswordUppercaseChar", &value) == B_OK)
src/apps/haikudepot/server/WebAppInterface.cpp
883
if (resultMessage.FindDouble("minPasswordDigitsChar", &value) == B_OK)
src/apps/haikudepot/server/WebAppInterface.cpp
920
&& error.FindDouble("code", &code) == B_OK) {
src/apps/haikudepot/ui/RatePackageWindow.cpp
477
if (response.FindDouble("rating", &rating) == B_OK) {
src/bin/hey.cpp
225
the_reply.FindDouble("result", &v);
src/kits/interface/DecimalSpinner.cpp
143
if (data->FindDouble("_min", &fMinValue) != B_OK)
src/kits/interface/DecimalSpinner.cpp
146
if (data->FindDouble("_max", &fMaxValue) != B_OK)
src/kits/interface/DecimalSpinner.cpp
152
if (data->FindDouble("_step", &fStep) != B_OK)
src/kits/interface/DecimalSpinner.cpp
155
if (data->FindDouble("_val", &fValue) != B_OK)
src/kits/network/libnetservices/Geolocation.cpp
173
result = location.FindDouble("lat", &lat);
src/kits/network/libnetservices/Geolocation.cpp
176
result = location.FindDouble("lng", &lon);
src/kits/shared/SettingsMessage.cpp
463
if (FindDouble(name, &value) != B_OK)
src/libs/alm/ALMLayout.cpp
1170
err = from->FindDouble(kItemAspectRatio, index, &contentAspectRatio);
src/libs/icon/transformer/ContourTransformer.cpp
57
if (archive->FindDouble("width", &value) == B_OK)
src/libs/icon/transformer/ContourTransformer.cpp
60
if (archive->FindDouble("miter limit", &value) == B_OK)
src/libs/icon/transformer/ContourTransformer.cpp
63
if (archive->FindDouble("inner miter limit", &value) == B_OK)
src/libs/icon/transformer/PerspectiveTransformer.cpp
58
if (archive->FindDouble("matrix", i, &matrix[i]) != B_OK)
src/libs/icon/transformer/StrokeTransformer.cpp
57
if (archive->FindDouble("width", &value) == B_OK)
src/libs/icon/transformer/StrokeTransformer.cpp
60
if (archive->FindDouble("miter limit", &value) == B_OK)
src/libs/icon/transformer/StrokeTransformer.cpp
63
if (archive->FindDouble("inner miter limit", &value) == B_OK)
src/libs/icon/transformer/StrokeTransformer.cpp
66
if (archive->FindDouble("shorten", &value) == B_OK)
src/libs/print/libprint/DbgMsg.cpp
121
msg->FindDouble(name, j, &aDouble);
src/libs/print/libprint/JobData.cpp
166
return fSettings.FindDouble(key, &value) == B_OK;
src/libs/print/libprint/JobData.cpp
175
fSettings.FindDouble(key, &value);
src/servers/app/drawing/Painter/Transformable.cpp
50
ret = archive->FindDouble("affine matrix", i, &storage[i]);
src/tests/apps/haikudepot/JwtTokenHelperTest.cpp
99
status_t result = message.FindDouble(key, &value);
src/tests/kits/app/bmessage/MessageEasyFindTest.cpp
37
CPPUNIT_ASSERT(msg.FindDouble("data") == 0);
src/tests/kits/shared/JsonToMessageTest.cpp
243
pkgMessage1.FindDouble("modifyTimestamp", &modifyTimestampDouble));
src/tests/kits/shared/JsonToMessageTest.cpp
47
message.FindDouble("1", &doubleValue));