/external/chromium_org/ppapi/cpp/ |
var.cc | 169 return AsDouble() == other.AsDouble(); 200 double Var::AsDouble() const { 233 snprintf(buf, sizeof(buf), "Var(%f)", AsDouble());
|
var.h | 195 /// AsDouble() converts this <code>Var</code> to a double. This function is 206 double AsDouble() const;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
itrbnf.cpp | 442 LLAssert(llong(llong::kD32).asDouble() == llong::kD32); 445 LLAssert(llong(0, 1).asDouble() == 1); 446 LLAssert(llong(1, 0).asDouble() == llong::kD32); 447 LLAssert(llong((uint32_t)-1, (uint32_t)-1).asDouble() == -1); 450 LLAssert(llong().asDouble() == 0); 493 LLAssert(llong((double)0).asDouble() == (double)0); 494 LLAssert(llong((double)1).asDouble() == (double)1); 495 LLAssert(llong((double)0x7fffffff).asDouble() == (double)0x7fffffff); 496 LLAssert(llong((double)0x80000000).asDouble() == (double)0x80000000); 497 LLAssert(llong((double)0x80000001).asDouble() == (double)0x80000001) [all...] |
/external/icu4c/test/intltest/ |
itrbnf.cpp | 443 LLAssert(llong(llong::kD32).asDouble() == llong::kD32); 446 LLAssert(llong(0, 1).asDouble() == 1); 447 LLAssert(llong(1, 0).asDouble() == llong::kD32); 448 LLAssert(llong((uint32_t)-1, (uint32_t)-1).asDouble() == -1); 451 LLAssert(llong().asDouble() == 0); 494 LLAssert(llong((double)0).asDouble() == (double)0); 495 LLAssert(llong((double)1).asDouble() == (double)1); 496 LLAssert(llong((double)0x7fffffff).asDouble() == (double)0x7fffffff); 497 LLAssert(llong((double)0x80000000).asDouble() == (double)0x80000000); 498 LLAssert(llong((double)0x80000001).asDouble() == (double)0x80000001) [all...] |
/external/chromium_org/ppapi/cpp/extensions/ |
from_var_converter.h | 135 FromVarConverterBase<double>::value_ = Var(var).AsDouble();
|
/cts/libs/json/src/com/android/json/stream/ |
JsonReader.java | 459 double asDouble = Double.parseDouble(value); // don't catch this NumberFormatException 460 result = (long) asDouble; 461 if ((double) result != asDouble) { 490 double asDouble = Double.parseDouble(value); // don't catch this NumberFormatException 491 result = (int) asDouble; 492 if ((double) result != asDouble) { [all...] |
/external/chromium_org/ppapi/tests/ |
test_post_message.cc | 91 return fabs(expected.AsDouble() - actual.AsDouble()) < 1.0e-4; 374 ASSERT_DOUBLE_EQ(message_data_.back().AsDouble(), 382 ASSERT_DOUBLE_EQ(message_data_.back().AsDouble(), kTestDouble); 775 double_vec.push_back(iter->AsDouble()); [all...] |
test_x509_certificate_private.cc | 36 return std::fabs(field_value.AsDouble() - expected) <=
|
/frameworks/base/core/java/android/util/ |
JsonReader.java | 488 double asDouble = Double.parseDouble(value); // don't catch this NumberFormatException 489 result = (long) asDouble; 490 if ((double) result != asDouble) { 519 double asDouble = Double.parseDouble(value); // don't catch this NumberFormatException 520 result = (int) asDouble; 521 if ((double) result != asDouble) { [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
json.cc | 46 s << in.asDouble(); 123 *out = in.asDouble();
|
json_unittest.cc | 285 EXPECT_EQ(in[i], out[i].asDouble());
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
TraceEventDispatcher.h | 107 double asDouble(const char* name) const
|
CodeGeneratorInspectorStrings.py | 440 static bool asDouble(JSONValue* value, double* output) { return value->asNumber(output); } 454 return getPropertyValueImpl<double, double, double>(object, name, valueFound, protocolErrors, 0, AsMethodBridges::asDouble, "Number");
|
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/ |
graphics_3d.cc | 303 x_angle_ = x_angle_var.AsDouble(); 312 y_angle_ = y_angle_var.AsDouble();
|
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/ |
cube.cc | 306 x_angle_ = x_angle_var.AsDouble(); 315 y_angle_ = y_angle_var.AsDouble();
|
/external/chromium_org/native_client_sdk/src/examples/demo/earth/ |
earth.cc | 751 SetLight(static_cast<float>(dictionary.Get("value").AsDouble())); 753 SetZoom(static_cast<float>(dictionary.Get("value").AsDouble()));
|
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/earth/ |
earth.cc | 793 SetLight(static_cast<float>(dictionary.Get("value").AsDouble())); 795 SetZoom(static_cast<float>(dictionary.Get("value").AsDouble()));
|
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/ |
json_value.cpp | 862 Value::asDouble() const 939 return ( isNumeric() && asDouble() == 0.0 ) [all...] |
/external/chromium_org/third_party/jsoncpp/overrides/include/json/ |
value.h | 277 double asDouble() const; [all...] |
/prebuilts/devtools/tools/lib/ |
monkeyrunner.jar | |