Searched refs:getObject (Results 1 - 24 of 24) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DRef.java28 * into a Java object until {@code getObject} is called. However, if
56 public Object getObject() throws SQLException; method in interface:Ref
69 public Object getObject(Map<String, Class<?>> map) throws SQLException; method in interface:Ref
H A DCallableStatement.java466 public Object getObject(int parameterIndex) throws SQLException; method in interface:CallableStatement
482 public Object getObject(int parameterIndex, Map<String, Class<?>> map) method in interface:CallableStatement
501 public Object getObject(String parameterName) throws SQLException; method in interface:CallableStatement
516 public Object getObject(String parameterName, Map<String, Class<?>> map) method in interface:CallableStatement
H A DResultSet.java749 * getObject(columnIndex,this.getStatement().getConnection().getTypeMap())}
758 public Object getObject(int columnIndex) throws SQLException; method in interface:ResultSet
778 public Object getObject(int columnIndex, Map<String, Class<?>> map) method in interface:ResultSet
788 * getObject(columnIndex,this.getStatement().getConnection().getTypeMap())}
797 public Object getObject(String columnName) throws SQLException; method in interface:ResultSet
816 public Object getObject(String columnName, Map<String, Class<?>> map) method in interface:ResultSet
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DGuardedObjectTest.java40 assertNull(go.getObject());
44 assertEquals(obj, go.getObject());
59 assertEquals(objBuffer, go.getObject());
63 go.getObject();
H A DSignedObjectTest.java65 assertEquals(prop, so.getObject());
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DSealedObjectTest.java83 secret, so_des.getObject(new NullCipher()));
144 .getObject(cipher));
197 * getObject(Key key) method testing. Tests if the object sealed with
215 + "original object.", secret, so.getObject(key));
222 so.getObject((Key)null);
232 * getObject(Cipher c) method testing. Tests if the proper exception is
240 .getObject((Cipher) null);
260 + "original object.", secret, so.getObject(cipher));
263 so.getObject((Cipher)null);
271 * getObject(Ke
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/support/
H A DP.java37 ret = (String) b.getObject(key);
/libcore/luni/src/main/java/java/security/
H A DGuardedObject.java59 public Object getObject() throws SecurityException { method in class:GuardedObject
H A DSignedObject.java102 public Object getObject() throws IOException, ClassNotFoundException { method in class:SignedObject
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DResourceBundleTest.java289 "frFRVARValue4", (String)bundle.getObject("parent4"));
291 "frFRValue3", (String)bundle.getObject("parent3"));
293 "frValue2", (String) bundle.getObject("parent2"));
295 "parentValue1", (String)bundle.getObject("parent1"));
297 "frFRVARChildValue3", (String)bundle.getObject("child3"));
299 "frFRVARChildValue2", (String) bundle.getObject("child2"));
301 "frFRVARChildValue1", (String)bundle.getObject("child1"));
303 1, bundle.getObject("IntegerVal"));
306 bundle.getObject(null);
313 bundle.getObject("");
[all...]
H A DPropertyResourceBundleTest.java127 assertTrue("Returned incorrect objects", prb.getObject("p1")
129 && prb.getObject("p2").equals("two"));
135 prb.getObject("Not in the bundle");
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/support/
H A DP.java20 ret = (String)b.getObject(key);
/libcore/luni/src/main/java/javax/crypto/
H A DSealedObject.java166 public final Object getObject(Key key) method in class:SealedObject
223 public final Object getObject(Cipher c) method in class:SealedObject
253 public final Object getObject(Key key, String provider) method in class:SealedObject
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
H A DSerializationTest.java322 Serializable deserialized = getObject(test, ".golden.ser");
360 Serializable deserialized = getObject(test, ".golden." + i + ".ser");
423 private static Serializable getObject(TestCase test, String toAppend) throws Exception { method in class:SerializationTest
/libcore/libart/src/main/java/sun/misc/
H A DUnsafe.java263 public native Object getObject(Object obj, long offset); method in class:Unsafe
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldResultSetTest.java469 assertNull(target.getObject(2));
471 assertNotNull(target.getObject(1));
H A DOldResultSetGetterTests.java736 Object value = res.getObject(i);
744 res.getObject(500);
752 Object value = res.getObject(i);
763 Object value = res.getObject(name);
771 res.getObject("bla");
781 Object value = res.getObject(colNameIt.next());
H A DOldPreparedStatementTest.java2268 public Object getObject() throws SQLException { method in class:OldPreparedStatementTest.MockRef
2272 public Object getObject(Map<String, Class<?>> map) throws SQLException { method in class:OldPreparedStatementTest.MockRef
/libcore/luni/src/test/java/tests/java/sql/
H A DUpdateFunctionalityTest.java342 .getObject("field2"));
H A DSelectFunctionalityTest.java345 Object val = result.getObject("ccnum");
379 Object val = result.getObject("ccnum");
/libcore/luni/src/main/java/java/util/
H A DResourceBundle.java431 public final Object getObject(String key) { method in class:ResourceBundle
454 * @see #getObject(String)
457 return (String) getObject(key);
470 * @see #getObject(String)
473 return (String[]) getObject(key);
/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java679 U.getObject
740 if ((t = (ForkJoinTask<?>)U.getObject(a, j)) == null)
863 ForkJoinTask<?> t = (ForkJoinTask<?>)U.getObject(a, i);
891 t = (ForkJoinTask<?>)U.getObject(a, j);
963 if ((o = U.getObject(a, j)) instanceof CountedCompleter) {
993 if ((o = U.getObject(a, j)) instanceof CountedCompleter) {
2312 if (U.getObject(a, j) == task &&
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DSerializationStressTest4.java1508 equals = ((java.security.GuardedObject) objToSave).getObject()
1511 .getObject());
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 407 milliseconds