/libcore/luni/src/main/java/java/lang/ |
StringToReal.java | 62 private static NumberFormatException invalidReal(String s, boolean isDouble) { 63 throw new NumberFormatException("Invalid " + (isDouble ? "double" : "float") + ": \"" + s + "\""); 73 private static StringExponentPair initialParse(String s, int length, boolean isDouble) { 76 throw invalidReal(s, isDouble); 86 throw invalidReal(s, isDouble); 94 throw invalidReal(s, isDouble); 109 throw invalidReal(s, isDouble); 114 throw invalidReal(s, isDouble); 137 throw invalidReal(s, isDouble); 151 throw invalidReal(s, isDouble); [all...] |
HexStringParser.java | 103 private long parse(String hexString, boolean isDouble) { 106 throw new NumberFormatException("Invalid hex " + (isDouble ? "double" : "float")+ ":" +
|
/external/chromium/webkit/glue/ |
cpp_binding_example.cc | 79 else if (arg1.isDouble()) 103 if (arg1.isDouble()) 108 if (arg2.isDouble())
|
cpp_variant.h | 83 bool isDouble() const { return (type == NPVariantType_Double); } 84 bool isNumber() const { return (isInt32() || isDouble()); }
|
cpp_variant_unittest.cc | 354 EXPECT_FALSE(cpp.isDouble()); 364 EXPECT_FALSE(cpp.isDouble()); 375 EXPECT_FALSE(cpp.isDouble()); 386 EXPECT_TRUE(cpp.isDouble()); 397 EXPECT_FALSE(cpp.isDouble()); 408 EXPECT_FALSE(cpp.isDouble()); 420 EXPECT_FALSE(cpp.isDouble()); 481 EXPECT_TRUE(cpp_vector[0].isDouble());
|
cpp_variant.cc | 190 } else if (isDouble()) { 201 } else if (isDouble()) {
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
CppVariant.h | 107 bool isDouble() const { return (type == NPVariantType_Double); } 108 bool isNumber() const { return (isInt32() || isDouble()); }
|
CppVariant.cpp | 230 if (isDouble()) 240 if (isDouble())
|
/external/chromium_org/webkit/renderer/ |
cpp_variant.h | 86 bool isDouble() const { return (type == NPVariantType_Double); } 87 bool isNumber() const { return (isInt32() || isDouble()); }
|
cpp_variant_unittest.cc | 375 EXPECT_FALSE(cpp.isDouble()); 385 EXPECT_FALSE(cpp.isDouble()); 396 EXPECT_FALSE(cpp.isDouble()); 407 EXPECT_TRUE(cpp.isDouble()); 418 EXPECT_FALSE(cpp.isDouble()); 429 EXPECT_FALSE(cpp.isDouble()); 441 EXPECT_FALSE(cpp.isDouble()); 502 EXPECT_TRUE(cpp_vector[0].isDouble());
|
cpp_variant.cc | 192 } else if (isDouble()) { 203 } else if (isDouble()) {
|
/external/chromium_org/content/test/ |
cpp_binding_example.cc | 92 else if (arg1.isDouble()) 116 if (arg1.isDouble()) 121 if (arg2.isDouble())
|
/dalvik/vm/compiler/codegen/arm/FP/ |
Thumb2VFP.cpp | 214 bool isDouble; 220 isDouble = false; 224 isDouble = false; 228 isDouble = true; 232 isDouble = true; 238 if (isDouble) {
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
nmfmtrt.h | 49 isDouble(const Formattable& n)
|
nmfmtrt.cpp | 239 if(isDouble(value)) 254 if(isDouble(n)) 303 if(isDouble(a)) 308 if(isDouble(b))
|
/external/icu4c/test/intltest/ |
nmfmtrt.h | 49 isDouble(const Formattable& n)
|
nmfmtrt.cpp | 239 if(isDouble(value)) 254 if(isDouble(n)) 303 if(isDouble(a)) 308 if(isDouble(b))
|
/dalvik/vm/compiler/codegen/x86/libenc/ |
enc_wrapper.h | 222 ENCODER_DECLARE_EXPORT char* encoder_compare_fp_stack(bool pop, int reg, bool isDouble, char* stream);
|
enc_wrapper.cpp | 432 extern "C" ENCODER_DECLARE_EXPORT char * encoder_compare_fp_stack(bool pop, int reg, bool isDouble, char * stream) { 438 add_fp(args, reg, isDouble);
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
json.cc | 45 } else if (in.isDouble()) {
|
/dalvik/vm/compiler/codegen/x86/ |
LowerAlu.cpp | 205 int common_fp_to_int(bool isDouble, u2 vA, u2 vB) { 206 if(isDouble) { 217 compare_fp_stack(true, 2, false/*isDouble*/); //ST(2) 221 compare_fp_stack(true, 1, false/*isDouble*/); //ST(1) 286 int common_fp_to_long(bool isDouble, u2 vA, u2 vB) { 287 if(isDouble) { 297 compare_fp_stack(true, 1, false/*isDouble*/); // Pops ST(1) 304 compare_fp_stack(true, 1, false/*isDouble*/); // Pops ST(1) 339 compare_fp_stack(true, 0, false/*isDouble*/); //ST(0) 349 compare_fp_stack(true, 0, false/*isDouble*/); //ST(0 [all...] |
Lower.h | 657 void compare_fp_stack(bool pop, int reg, bool isDouble); [all...] |
/external/chromium_org/third_party/jsoncpp/overrides/include/json/ |
value.h | 287 bool isDouble() const; [all...] |
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/ |
json_value.cpp | [all...] |
/external/llvm/lib/IR/ |
AsmWriter.cpp | 787 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble; 791 double Val = isDouble ? CFP->getValueAPF().convertToDouble() : 819 if (!isDouble) [all...] |