/libcore/luni/src/test/java/tests/java/sql/ |
D | SelectFunctionalityTest.java | 132 ResultSet result = statement.executeQuery(sql); in test_SelectSimple() local 197 ResultSet result = prepStatement.executeQuery(); in test_SelectPrepared() local 239 ResultSet result = statement.executeQuery(sql); in test_SubSelect() local 275 ResultSet result = statement.executeQuery(sql); in test_SelectThreeTables() local 307 ResultSet result = statement.executeQuery(sql); in test_SelectUnionItself() local 334 ResultSet result = statement.executeQuery(sql); in test_SelectLeftOuterJoin() local 367 ResultSet result = statement.executeQuery(sql); in test_SelectRightOuterJoin() local 397 ResultSet result = statement.executeQuery(selectQuery); in test_SelectGroupBy() local 424 ResultSet result = statement.executeQuery(selectQuery); in test_SelectOrderBy() local 457 ResultSet result = statement.executeQuery(selectQuery); in test_SelectDistinct() local [all …]
|
D | UpdateFunctionalityTest.java | 116 ResultSet result = statement.executeQuery(selectQuery); in testUpdate1() local 141 ResultSet result = statement.executeQuery(selectQuery); in testUpdate2() local 174 ResultSet result = statement.executeQuery(selectQuery); in testUpdate3() local 205 ResultSet result = statement.executeQuery(selectQuery); in testUpdate4() local 238 ResultSet result = statement.executeQuery(selectQuery); in testUpdate5() local 279 ResultSet result = statement.executeQuery(selectQuery); in testUpdate6() local 307 ResultSet result = statement.executeQuery(selectQuery); in testUpdate7() local 339 ResultSet result = statement.executeQuery(selectQuery); in testUpdate8() local
|
/libcore/luni/src/test/java/libcore/java/math/ |
D | OldBigIntegerOperateBitsTest.java | 41 int result = aNumber.getLowestSetBit(); in test_getLowestSetBitNeg() local 56 int result = aNumber.getLowestSetBit(); in test_getLowestSetBitPos() local 87 int result = aNumber.getLowestSetBit(); in test_getLowestSetBitZero() local
|
/libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/ |
D | ListOfTypes.java | 52 Type[] result = resolvedTypes; in getResolvedTypes() local 57 Type[] result = new Type[unresolved.size()]; in resolveTypes() local 70 StringBuilder result = new StringBuilder(); in toString() local
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
D | X509CertImpl.java | 159 BigInteger result = serialNumber; in getSerialNumber() local 171 X500Principal result = issuer; in getIssuerX500Principal() local 184 X500Principal result = subject; in getSubjectX500Principal() local 197 long result = notBefore; in getNotBeforeInternal() local 209 long result = notAfter; in getNotAfterInternal() local 241 String result = sigAlgName; in getSigAlgName() local 256 String result = sigAlgOID; in getSigAlgOID() local 358 PublicKey result = publicKey; in getPublicKey() local
|
/libcore/junit/src/main/java/junit/extensions/ |
D | TestDecorator.java | 21 public void basicRun(TestResult result) { in basicRun() 27 public void run(TestResult result) { in run()
|
D | ActiveTestSuite.java | 29 public void run(TestResult result) { in run() 35 public void runTest(final Test test, final TestResult result) { in runTest()
|
/libcore/luni/src/main/java/java/nio/ |
D | MappedByteBufferAdapter.java | 96 MappedByteBufferAdapter result = new MappedByteBufferAdapter(wrapped.asReadOnlyBuffer()); in asReadOnlyBuffer() local 122 MappedByteBufferAdapter result = new MappedByteBufferAdapter(wrapped.duplicate()); in duplicate() local 144 ByteBuffer result = wrapped.get(dst, dstOffset, byteCount); in get() local 152 char result = wrapped.getChar(); in getChar() local 165 double result = wrapped.getDouble(); in getDouble() local 178 float result = wrapped.getFloat(); in getFloat() local 191 int result = wrapped.getInt(); in getInt() local 204 long result = wrapped.getLong(); in getLong() local 217 short result = wrapped.getShort(); in getShort() local 358 MappedByteBufferAdapter result = new MappedByteBufferAdapter(wrapped.slice()); in slice() local
|
D | DirectByteBuffer.java | 103 char result = (char) this.block.peekShort(offset + position, order); in getChar() local 120 double result = Double.longBitsToDouble(this.block.peekLong(offset + position, order)); in getDouble() local 137 float result = Float.intBitsToFloat(this.block.peekInt(offset + position, order)); in getFloat() local 154 int result = this.block.peekInt(offset + position, order); in getInt() local 171 long result = this.block.peekLong(offset + position, order); in getLong() local 188 short result = this.block.peekShort(offset + position, order); in getShort() local
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | OldScannerTest.java | 41 String result = s.findWithinHorizon("\\p{Lower}", 5); in test_findWithinHorizon_Ljava_lang_StringI() local 218 assertEquals(stringBuilder.toString(), result); in test_findWithinHorizon_Ljava_lang_StringI() local 252 assertEquals(stringBuilder.toString(), result); in test_findWithinHorizon_Ljava_lang_StringI() local 293 String result = s.findInLine("^"); in test_findInLine_LString() local
|
/libcore/luni/src/main/java/java/net/ |
D | CookieStoreImpl.java | 66 List<HttpCookie> result = new ArrayList<HttpCookie>(); in get() local 105 List<HttpCookie> result = new ArrayList<HttpCookie>(); in getCookies() local 120 List<URI> result = new ArrayList<URI>(map.keySet()); in getURIs() local
|
/libcore/support/src/test/java/tests/support/ |
D | Support_GetLocal.java | 46 int result; in getLocalFile() local 66 int result; in getExternalLocalFile() local 82 int result; in getStream() local
|
/libcore/json/src/main/java/org/json/ |
D | JSONArray.java | 287 Boolean result = JSON.toBoolean(object); in getBoolean() local 308 Boolean result = JSON.toBoolean(object); in optBoolean() local 321 Double result = JSON.toDouble(object); in getDouble() local 342 Double result = JSON.toDouble(object); in optDouble() local 355 Integer result = JSON.toInteger(object); in getInt() local 376 Integer result = JSON.toInteger(object); in optInt() local 389 Long result = JSON.toLong(object); in getLong() local 410 Long result = JSON.toLong(object); in optLong() local 422 String result = JSON.toString(object); in getString() local 443 String result = JSON.toString(object); in optString() local [all …]
|
D | JSONObject.java | 352 Object result = nameValuePairs.get(name); in get() local 376 Boolean result = JSON.toBoolean(object); in getBoolean() local 397 Boolean result = JSON.toBoolean(object); in optBoolean() local 410 Double result = JSON.toDouble(object); in getDouble() local 431 Double result = JSON.toDouble(object); in optDouble() local 444 Integer result = JSON.toInteger(object); in getInt() local 465 Integer result = JSON.toInteger(object); in optInt() local 478 Long result = JSON.toLong(object); in getLong() local 499 Long result = JSON.toLong(object); in optLong() local 511 String result = JSON.toString(object); in getString() local [all …]
|
/libcore/luni/src/test/java/tests/api/java/util/ |
D | ListResourceBundleTest.java | 37 Vector result = new Vector(); in test_getKeys() local 58 Vector result = new Vector(); in test_handleGetObjectLjava_lang_String() local
|
/libcore/luni/src/main/native/ |
D | toStringArray.h | 26 jobjectArray result = env->NewObjectArray(count, JniConstants::stringClass, NULL); in toStringArray() local 46 jobjectArray result = env->NewObjectArray(count, JniConstants::stringClass, NULL); in toStringArray16() local
|
D | Register.cpp | 68 bool result = in registerCoreLibrariesJni() local
|
/libcore/luni/src/test/java/libcore/java/text/ |
D | OldDecimalFormatTest.java | 40 String result; in test_formatToCharacterIterator() local 141 Number result = form.parse("123.123"); in test_isParseBigDecimalLjava_lang_Boolean_isParseIntegerOnlyLjava_lang_Boolean() local 151 Number result = form.parse("123.123"); in test_isParseBigDecimalLjava_lang_Boolean_isParseIntegerOnlyLjava_lang_Boolean() local 170 Number result = format.parse("123.123"); in test_isParseIntegerOnly() local 179 Number result = format.parse("123.123"); in test_isParseIntegerOnly() local 215 BigDecimal result = (BigDecimal)number; in test_parseLjava_lang_String_Ljava_text_ParsePosition() local 575 String result = decFormat.toPattern(); in test_applyPatternLjava_lang_String2() local 923 Number result = format.parse("9223372036854775807", pos); in test_parseLjava_lang_StringLjava_text_ParsePosition() local
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldStreamTokenizerTest.java | 103 String result = tokenizer.toString(); in test_harmonyRegressionTest() local 121 String result = tokenizer.toString(); in test_harmonyRegressionTest2() local
|
/libcore/luni/src/main/java/java/util/ |
D | Formatter.java | 1434 String result = arg.toString(); in transform() local 1441 CharSequence result; in transform() local 1497 StringBuilder result = new StringBuilder(length); in localizeDigits() local 1513 StringBuilder result = new StringBuilder(s.length() + s.length()/3); in insertGrouping() local 1541 CharSequence result; in transformFromBoolean() local 1553 CharSequence result; in transformFromHashCode() local 1582 CharSequence result = arg != null ? arg.toString() : "null"; in transformFromString() local 1597 CharSequence result = (codePoint < Character.MIN_SUPPLEMENTARY_CODE_POINT) in transformFromCharacter() local 1646 StringBuilder result = toStringBuilder(source); in padding() local 1659 private StringBuilder wrapParentheses(StringBuilder result) { in wrapParentheses() [all …]
|
/libcore/luni/src/test/java/libcore/xml/ |
D | KxmlPullParserDtdTest.java | 25 KXmlParser result = new KXmlParser(); in newPullParser() local
|
/libcore/luni/src/main/java/java/nio/charset/ |
D | CharsetDecoder.java | 188 CoderResult result = null; in decode() local 219 private void checkCoderResult(CoderResult result) throws CharacterCodingException { in checkCoderResult() 236 CharBuffer result = CharBuffer.allocate(output.capacity() * 2); in allocateMore() local 315 CoderResult result = null; in decode() local 460 CoderResult result = implFlush(out); in flush() local
|
/libcore/luni/src/main/java/java/lang/ |
D | Class.java | 215 Class<?> result; in forName() local 456 Member result = recursive in getConstructorOrMethod() local 468 Member result = Class.getDeclaredConstructorOrMethod(c, name, parameterTypes); in getPublicConstructorOrMethodRecursive() local 477 Member result = ifc.getPublicConstructorOrMethodRecursive(name, parameterTypes); in getPublicConstructorOrMethodRecursive() local 546 Class<?>[] result = getDeclaredClasses(this, publicOnly); in getFullListOfClasses() local 629 Field result = getDeclaredField(this, name); in getDeclaredField() local 785 Field result = getPublicFieldRecursive(name); in getField() local 795 Field result = Class.getDeclaredField(c, name); in getPublicFieldRecursive() local 804 Field result = ifc.getPublicFieldRecursive(name); in getPublicFieldRecursive() local 843 private void getPublicFieldsRecursive(List<Field> result) { in getPublicFieldsRecursive() [all …]
|
/libcore/luni/src/main/java/java/io/ |
D | SequenceInputStream.java | 139 int result = in.read(); in read() local 190 int result = in.read(buffer, offset, count); in read() local
|
/libcore/junit/src/main/java/junit/framework/ |
D | Test.java | 16 public abstract void run(TestResult result); in run()
|