/libcore/json/src/test/java/org/json/ |
D | JSONObjectTest.java | 40 JSONObject object = new JSONObject(); in testEmptyObject() local 118 JSONObject object = new JSONObject(); in testGet() local 142 JSONObject object = new JSONObject(); in testPut() local 160 JSONObject object = new JSONObject(); in testPutNullRemoves() local 173 JSONObject object = new JSONObject(); in testPutOpt() local 184 JSONObject object = new JSONObject(); in testPutOptUnsupportedNumbers() local 203 JSONObject object = new JSONObject(); in testRemove() local 213 JSONObject object = new JSONObject(); in testBooleans() local 251 JSONObject object = new JSONObject(); in testCoerceStringToBoolean() local 263 JSONObject object = new JSONObject(); in testNumbers() local [all …]
|
D | JSONArrayTest.java | 333 JSONObject object = values.toJSONObject(keys); in testToJSONObject() local 352 JSONObject object = values.toJSONObject(keys); in testToJSONObjectWithNulls() local 364 JSONObject object = values.toJSONObject(keys); in testToJSONObjectMoreNamesThanValues() local 375 JSONObject object = values.toJSONObject(keys); in testToJSONObjectMoreValuesThanNames() local 385 JSONObject object = values.toJSONObject(keys); in testToJSONObjectNullKey() local 443 JSONArray object = new JSONArray(new JSONTokener("[false]")); in testTokenerConstructor() local 475 JSONArray object = new JSONArray("[false]"); in testStringConstructor() local
|
D | ParsingTest.java | 224 private JSONObject object(Object... keyValuePairs) throws JSONException { in object() method in ParsingTest 257 JSONObject object = (JSONObject) input; in canonicalize() local
|
D | JSONStringerTest.java | 241 JSONObject object = new JSONObject(); in testJSONObjectAsValue() local 327 JSONObject object = new JSONObject(); in testMaxDepthWithObjectValue() local
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
D | Field.java | 317 public native Object get(Object object) in get() 342 public native boolean getBoolean(Object object) in getBoolean() 367 public native byte getByte(Object object) in getByte() 394 public native char getChar(Object object) in getChar() 421 public native short getShort(Object object) in getShort() 448 public native int getInt(Object object) in getInt() 475 public native long getLong(Object object) in getLong() 502 public native float getFloat(Object object) in getFloat() 529 public native double getDouble(Object object) in getDouble() 598 public native void set(Object object, Object value) in set() [all …]
|
/libcore/json/src/main/java/org/json/ |
D | JSONArray.java | 92 Object object = readFrom.nextValue(); in JSONArray() local 327 Object object = get(index); in getBoolean() local 348 Object object = opt(index); in optBoolean() local 361 Object object = get(index); in getDouble() local 382 Object object = opt(index); in optDouble() local 395 Object object = get(index); in getInt() local 416 Object object = opt(index); in optInt() local 429 Object object = get(index); in getLong() local 450 Object object = opt(index); in optLong() local 462 Object object = get(index); in getString() local [all …]
|
D | JSONObject.java | 156 Object object = readFrom.nextValue(); in JSONObject() local 410 Object object = get(name); in getBoolean() local 431 Object object = opt(name); in optBoolean() local 444 Object object = get(name); in getDouble() local 465 Object object = opt(name); in optDouble() local 478 Object object = get(name); in getInt() local 499 Object object = opt(name); in optInt() local 514 Object object = get(name); in getLong() local 538 Object object = opt(name); in optLong() local 550 Object object = get(name); in getString() local [all …]
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldObjectInputStreamGetFieldTest.java | 71 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); in test_get() local 99 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); in test_defaultedLjava_lang_String() local 123 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); in test_getException() local 239 Support_GetPutFields object = (Support_GetPutFields) ois.readObject(); in test_getObjectStreamClass() local
|
D | ObjectOutputStreamTest.java | 81 CallsCloseInWriteObjectMethod object = new CallsCloseInWriteObjectMethod(hello); in testCloseInWriteObject() local 97 private Serializable roundTrip(Object object) in roundTrip()
|
/libcore/ojluni/src/main/java/java/security/ |
D | GuardedObject.java | 53 private Object object; // the object we are guarding field in GuardedObject 66 public GuardedObject(Object object, Guard guard) in GuardedObject()
|
D | Guard.java | 55 void checkGuard(Object object) throws SecurityException; in checkGuard()
|
D | Permission.java | 36 public void checkGuard(Object object) throws SecurityException { } in checkGuard()
|
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/ |
D | PatternSyntaxExceptionTest.java | 120 PatternSyntaxException object = new PatternSyntaxException("TESTDESC", "TESTREGEX", 3); in testSerializationCompatibility() local 125 PatternSyntaxException object = new PatternSyntaxException("TESTDESC", "TESTREGEX", 3); in testSerializationSelf() local
|
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/ |
D | SerializationTest.java | 269 public static SerializableAssert defineComparator(TestCase test, Object object) in defineComparator() 303 public static void verifyGolden(TestCase test, Object object) throws Exception { in verifyGolden() 319 public static void verifyGolden(TestCase test, Object object, SerializableAssert comparator) in verifyGolden() 373 public static void verifySelf(Object object) throws Exception { in verifySelf() 386 public static void verifySelf(Object object, SerializableAssert comparator) throws Exception { in verifySelf() 447 public static void createGoldenFile(String root, TestCase test, Object object) in createGoldenFile()
|
/libcore/luni/src/test/java/libcore/util/ |
D | SerializationTester.java | 82 private static byte[] serialize(Object object) throws IOException { in serialize() 114 public static Object reserialize(Object object) throws IOException, ClassNotFoundException { in reserialize() 118 public static String serializeHex(Object object) throws IOException { in serializeHex()
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 148 public int indexOf(E object, int from) { in indexOf() 153 public int indexOf(Object object) { in indexOf() 164 public int lastIndexOf(E object, int to) { in lastIndexOf() 169 public int lastIndexOf(Object object) { in lastIndexOf() 334 public synchronized boolean addIfAbsent(E object) { in addIfAbsent() 572 @Override public int indexOf(Object object) { in indexOf() 580 @Override public int lastIndexOf(Object object) { in lastIndexOf() 588 @Override public boolean contains(Object object) { in contains() 626 @Override public void add(int index, E object) { in add() 635 @Override public boolean add(E object) { in add() [all …]
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
D | MyGuard.java | 33 public void checkGuard(Object object) { in checkGuard()
|
/libcore/luni/src/main/java/libcore/icu/ |
D | CollationKeyICU.java | 43 public boolean equals(Object object) { in equals()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | Support_Format.java | 37 protected void t_FormatWithField(int count, Format format, Object object, in t_FormatWithField() 58 …protected void t_Format(int count, Object object, Format format, Vector<FieldContainer> expectedRe… in t_Format()
|
/libcore/support/src/test/java/tests/support/ |
D | Support_Format.java | 36 protected void t_FormatWithField(int count, Format format, Object object, in t_FormatWithField() 59 protected void t_Format(int count, Object object, Format format, in t_Format()
|
/libcore/luni/src/main/java/javax/xml/validation/ |
D | ValidatorHandler.java | 415 …public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSuppor… in setProperty()
|
D | Validator.java | 406 …public void setProperty(String name, Object object) throws SAXNotRecognizedException, SAXNotSuppor… in setProperty()
|
/libcore/ojluni/src/main/native/ |
D | io_util.h | 98 #define WITH_FIELD_PLATFORM_STRING(env, object, id, var) \ argument
|
D | jni_util.c | 935 JNU_IsInstanceOfByName(JNIEnv *env, jobject object, char* classname) in JNU_IsInstanceOfByName() 970 JNU_MonitorWait(JNIEnv *env, jobject object, jlong timeout) in JNU_MonitorWait() 990 JNU_Notify(JNIEnv *env, jobject object) in JNU_Notify() 1010 JNU_NotifyAll(JNIEnv *env, jobject object) in JNU_NotifyAll() 1049 JNU_PrintClass(JNIEnv *env, char* hdr, jobject object) in JNU_PrintClass() 1064 JNU_ToString(JNIEnv *env, jobject object) in JNU_ToString()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
D | ProxyTest.java | 299 public TestProxyHandler(Object object) { in TestProxyHandler() 303 public Object invoke(Object object, Method method, Object[] args) in invoke()
|