/external/icu4c/test/intltest/ |
D | tfsmalls.cpp | 168 if (!ftp || !(ftp->getType() == Formattable::kLong) || !(ftp->getLong() == 0)) { in test_Formattable() 178 fta.getLong(&status); in test_Formattable() 220 fta.getLong(&status); in test_Formattable() 263 && (ft_arr[2].getType() == Formattable::kLong) && (ft_arr[2].getLong() == (int32_t)3) in test_Formattable() 323 if ((ft_arr[0].getType() == Formattable::kLong) && (ft_arr[0].getLong() == (int32_t)1)) { in test_Formattable() 333 if ((ft_dynarr[0].getType() == Formattable::kLong) && (ft_dynarr[0].getLong() == (int32_t)3) in test_Formattable() 334 && (ft_dynarr[1].getType() == Formattable::kLong) && (ft_dynarr[1].getLong() == (int32_t)4)) { in test_Formattable() 341 if ((ft_arr[0].getType() == Formattable::kLong) && (ft_arr[0].getLong() == (int32_t)3) in test_Formattable() 342 && (ft_arr[1].getType() == Formattable::kLong) && (ft_arr[1].getLong() == (int32_t)4)) { in test_Formattable()
|
D | nmfmtrt.cpp | 242 s = fmt->format(value.getLong(), s); in test() 257 s2 = fmt->format(n.getLong(), s2); in test() 292 … escape(s) + " P> " + (n.getType() == Formattable::kDouble ? n.getDouble() : (double)n.getLong()) in test() 306 aa = a.getLong(); in proportionalError() 311 bb = b.getLong(); in proportionalError()
|
D | tsnmfmt.cpp | 310 number[i].setDouble(number[i].getLong()); in tryIt() 318 + ", longValue=" + number[i].getLong()); in tryIt() 387 + ", longValue=" + number.getLong() in tryIt() 391 if (number.getLong() != aNumber) { in tryIt() 392 errln("**** FAIL: Parse of " + prettify(stringNum) + " failed. Got:" + number.getLong() in tryIt()
|
D | numfmtst.cpp | 376 a = af.getLong(); in TestExponential() 424 int32_t a = af.getLong(status); in TestExponential() 437 + ", Long: " + af.getLong()); in TestExponential() 840 logln((UnicodeString)"parse(" + arg + ") = " + n.getLong()); in TestParse() 842 n.getLong() != 0) errln((UnicodeString)"FAIL: Expected 0"); in TestParse() 936 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse() 939 n.getLong() != 1) { in TestLenientParse() 960 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse() 962 if (U_FAILURE(status) || n.getType() != Formattable::kLong || n.getLong() != -5) { in TestLenientParse() 980 logln((UnicodeString)"parse(" + testCase + ") = " + n.getLong()); in TestLenientParse() [all …]
|
D | itrbnfrt.cpp | 307 (double)parseResult.getLong(); in doTest() 334 (double)parseResult.getLong(); in doTest()
|
/external/icu4c/i18n/unicode/ |
D | fmtable.h | 303 int32_t getLong(void) const { return (int32_t)fValue.fInt64; } in getLong() function 321 int32_t getLong(UErrorCode& status) const; 593 inline int32_t getLong(UErrorCode* status) const; 664 inline int32_t Formattable::getLong(UErrorCode* status) const { in getLong() function 665 return getLong(*status); in getLong()
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | NetObject.java | 116 if (f.getLong(this) != g.getLong(that)) in equals() 206 if (f.getLong(this) != g.getLong(that)) in match() 317 long longField = f.getLong(this); in debugDump()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | SIPObject.java | 122 if (f.getLong(this) != g.getLong(that)) in equals() 212 if (f.getLong(this) != g.getLong(that)) in match() 328 long longField = f.getLong(this); in debugDump()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/ |
D | ArrayTest.java | 287 ret = Array.getLong(x, 0); in test_getLongLjava_lang_ObjectI() 291 ret = Array.getLong(new Object(), 0); in test_getLongLjava_lang_ObjectI() 301 ret = Array.getLong(x, 4); in test_getLongLjava_lang_ObjectI() 616 assertEquals("Get returned incorrect value", 1, Array.getLong(x, 0)); in test_setLongLjava_lang_ObjectIJ()
|
/external/nist-sip/java/gov/nist/core/ |
D | GenericObject.java | 253 long longField = f.getLong(mergeObject); in merge() 447 if (f.getLong(this) != g.getLong(that)) in equals() 532 if (f.getLong(this) != g.getLong(that)) in match() 631 long longField = f.getLong(this); in debugDump()
|
/external/guava/guava/src/com/google/common/hash/ |
D | Murmur3_128HashFunction.java | 60 long k1 = bb.getLong(); in process() 61 long k2 = bb.getLong(); in process()
|
/external/icu4c/i18n/ |
D | fmtable.cpp | 385 Formattable::getLong(UErrorCode& status) const in getLong() function in Formattable 422 getNumber().getLong(status); in getLong() 709 fDecimalNum->set(this->getLong()); in getDecimalNumber() 745 fValue.fInt64 = fDecimalNum->getLong(); in adoptDigitList() 833 stream << obj.getLong() << 'L';
|
D | datefmt.cpp | 128 date = (UDate)obj.getLong(); in format() 163 date = (UDate)obj.getLong(); in format()
|
D | digitlst.h | 195 int32_t getLong(void) /*const*/;
|
/external/apache-xml/src/main/java/org/apache/xml/utils/res/ |
D | LongArrayWrapper.java | 35 public long getLong(int index){ in getLong() method in LongArrayWrapper
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
D | LongTest.java | 161 assertTrue("returned incorrect Long", Long.getLong("testLong").equals( in test_getLongLjava_lang_String() 164 Long.getLong("ff")); in test_getLongLjava_lang_String() 176 assertTrue("returned incorrect Long", Long.getLong("testLong", 4L) in test_getLongLjava_lang_StringJ() 178 assertTrue("returned incorrect default Long", Long.getLong("ff", 4L) in test_getLongLjava_lang_StringJ() 191 assertTrue("returned incorrect Long", Long.getLong("testLong", in test_getLongLjava_lang_StringLjava_lang_Long() 193 assertTrue("returned incorrect default Long", Long.getLong("ff", in test_getLongLjava_lang_StringLjava_lang_Long()
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
D | LongSerializer.java | 48 return data.getLong(); in readObject()
|
D | DateSerializer.java | 49 return new Date(data.getLong()); in readObject()
|
/external/dexmaker/src/test/java/com/google/dexmaker/stock/ |
D | ProxyBuilderTest.java | 174 public long getLong() { return 3L; } in getLong() method in ProxyBuilderTest.AllReturnTypes 192 assertEquals(10, proxy.getLong()); in testAllReturnTypes() 211 public long getLong(long input) { return input; } in getLong() method in ProxyBuilderTest.PassThroughAllTypes 237 assertEquals(4L, proxy.getLong(4L)); in testPassThroughWorksForAllTypes() 238 assertEquals(5L, proxy.getLong(5L)); in testPassThroughWorksForAllTypes()
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorState.h | 58 long getLong(const String& propertyName);
|
D | InspectorState.cpp | 95 long InspectorState::getLong(const String& propertyName) in getLong() function in WebCore::InspectorState
|
/external/javassist/src/test/test/javassist/convert/ |
D | ArrayAccessReplaceTest.java | 96 assertEquals(i, simple.getLong(i)); in testLong() 261 public long getLong(int pos); in getLong() method 325 public long getLong(int pos) { in getLong() method in ArrayAccessReplaceTest.Simple
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
D | ByteArray.java | 165 public long getLong(int off) { in getLong() method in ByteArray
|
/external/icu4c/samples/numfmt/ |
D | util.cpp | 95 sprintf(buf, "%ldL", f.getLong()); in formattableToString()
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
D | MessageObject.java | 97 long longField = f.getLong(this); in debugDump()
|