HomeSort by relevance Sort by last modified time
    Searched defs:tobj (Results 1 - 25 of 36) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/java/io/
OldWriterTest.java 27 Writer tobj = new Support_ASimpleWriter(2); local
28 tobj.append('a');
29 tobj.append('b');
30 assertEquals("Wrong stuff written!", "ab", tobj.toString());
32 tobj.append('c');
41 Writer tobj = new Support_ASimpleWriter(20); local
42 tobj.append(testString);
43 assertEquals("Wrong stuff written!", testString, tobj.toString());
45 tobj.append(testString);
54 Writer tobj = new Support_ASimpleWriter(21) local
79 Writer tobj = new Support_ASimpleWriter(21); local
101 Writer tobj = new Support_ASimpleWriter(21); local
118 Writer tobj = new Support_ASimpleWriter(2); local
131 Writer tobj = new Support_ASimpleWriter(21); local
149 Writer tobj = new Support_ASimpleWriter(21); local
174 Writer tobj = new Support_ASimpleWriter(21); local
    [all...]
OldStringWriterTest.java 29 StringWriter tobj = new StringWriter(9); local
30 tobj.append("01234567890123456789", 19, 2);
36 StringWriter tobj = new StringWriter(9); local
37 tobj.append("01234567890123456789", 29, 2);
OldPushbackInputStreamTest.java 73 PushbackInputStream tobj; local
75 tobj = new PushbackInputStream(underlying);
76 tobj.close();
77 tobj.close();
78 tobj = new PushbackInputStream(underlying);
81 tobj.close();
89 PushbackInputStream tobj; local
91 tobj = new PushbackInputStream(underlying);
92 assertEquals("Wrong number!", 30, tobj.available());
95 tobj.available()
108 PushbackInputStream tobj; local
125 PushbackInputStream tobj; local
142 PushbackInputStream tobj; local
167 PushbackInputStream tobj; local
202 PushbackInputStream tobj; local
242 PushbackInputStream tobj; local
307 PushbackInputStream tobj; local
    [all...]
OldPushbackReaderTest.java 59 PushbackReader tobj; local
61 tobj = new PushbackReader(underlying, 10000);
62 tobj = new PushbackReader(underlying, 1);
65 tobj = new PushbackReader(underlying, -1);
66 tobj.close();
72 tobj = new PushbackReader(underlying, 0);
73 tobj.close();
84 PushbackReader tobj; local
86 tobj = new PushbackReader(underlying);
87 tobj.close()
111 PushbackReader tobj; local
128 PushbackReader tobj; local
230 PushbackReader tobj; local
246 PushbackReader tobj; local
287 PushbackReader tobj; local
306 PushbackReader tobj; local
351 PushbackReader tobj; local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
OwnedMonitorsTest.java 88 TaggedObject tobj = reply.getNextValueAsTaggedObject(); local
91 + JDWPConstants.Tag.getName(tobj.tag) + "(" + tobj.tag + ") "
92 + "ID: " + tobj.objectID);
97 packet.setNextValueAsObjectID(tobj.objectID);
CurrentContendedMonitorTest.java 80 TaggedObject tobj = reply.getNextValueAsTaggedObject(); local
83 + JDWPConstants.Tag.getName(tobj.tag) + "(" + tobj.tag + ") "
84 + "ID: " + tobj.objectID);
89 packet.setNextValueAsObjectID(tobj.objectID);
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerUsageTest.java 58 Time tobj = new Time(); local
59 tobj.set(System.currentTimeMillis());
60 return tobj.format("%Y-%m-%d %H:%M:%S") + "." + signature + "."
  /external/boringssl/src/crypto/x509/
x509_lu.c 481 const X509_OBJECT *tobj, *pstmp; local
485 tobj = sk_X509_OBJECT_value(h, tidx);
486 if (x509_object_cmp(&tobj, &pstmp))
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
Contacts.java 300 Time tobj = new Time(); local
301 tobj.set(time);
302 return String.format("%s.%s", tobj.format("%m-%d %H:%M:%S"), time % 1000);
PollingTask.java 216 Time tobj = new Time(); local
217 tobj.set(time);
218 return String.format("%s.%s", tobj.format("%m-%d %H:%M:%S"), time % 1000);
CapabilityPolling.java 668 Time tobj = new Time(); local
669 tobj.set(time);
670 return String.format("%s.%s", tobj.format("%m-%d %H:%M:%S"), time % 1000);
    [all...]
EABContactManager.java 773 Time tobj = new Time(); local
774 tobj.set(time);
775 return String.format("%s.%s", tobj.format("%m-%d %H:%M:%S"), time % 1000);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_asyncore.py 159 tobj = testobj() variable in class:HelperFunctionTests.test_readwrite.testobj
160 self.assertEqual(getattr(tobj, expectedattr), False)
161 asyncore.readwrite(tobj, flag)
166 self.assertEqual(getattr(tobj, attr), attr==expectedattr)
  /external/python/cpython2/Lib/test/
test_asyncore.py 159 tobj = testobj() variable in class:HelperFunctionTests.test_readwrite.testobj
160 self.assertEqual(getattr(tobj, expectedattr), False)
161 asyncore.readwrite(tobj, flag)
166 self.assertEqual(getattr(tobj, attr), attr==expectedattr)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_asyncore.py 160 tobj = testobj() variable in class:HelperFunctionTests.test_readwrite.testobj
161 self.assertEqual(getattr(tobj, expectedattr), False)
162 asyncore.readwrite(tobj, flag)
167 self.assertEqual(getattr(tobj, attr), attr==expectedattr)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_asyncore.py 160 tobj = testobj() variable in class:HelperFunctionTests.test_readwrite.testobj
161 self.assertEqual(getattr(tobj, expectedattr), False)
162 asyncore.readwrite(tobj, flag)
167 self.assertEqual(getattr(tobj, attr), attr==expectedattr)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_asyncore.py 160 tobj = testobj() variable in class:HelperFunctionTests.test_readwrite.testobj
161 self.assertEqual(getattr(tobj, expectedattr), False)
162 asyncore.readwrite(tobj, flag)
167 self.assertEqual(getattr(tobj, attr), attr==expectedattr)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_asyncore.py 160 tobj = testobj() variable in class:HelperFunctionTests.test_readwrite.testobj
161 self.assertEqual(getattr(tobj, expectedattr), False)
162 asyncore.readwrite(tobj, flag)
167 self.assertEqual(getattr(tobj, attr), attr==expectedattr)
  /development/samples/ShortcutDemo/publisher/src/com/example/android/pm/shortcutdemo/
ShortcutPublisher.java 265 Time tobj = new Time(); local
266 tobj.set(time);
267 return tobj.format("%Y-%m-%d %H:%M:%S");
  /external/libjpeg-turbo/
turbojpeg-jni.c 974 jobject tobj; member in struct:_JNICustomFilterParams
984 jobject tobj=params->tobj, cfobj=params->cfobj; local
1083 jobject tobj, cfobj; local
    [all...]
  /external/python/cpython3/Lib/test/
test_asyncore.py 172 tobj = testobj() variable in class:HelperFunctionTests.test_readwrite.testobj
173 self.assertEqual(getattr(tobj, expectedattr), False)
174 asyncore.readwrite(tobj, flag)
179 self.assertEqual(getattr(tobj, attr), attr==expectedattr)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
multibytecodec.c 227 PyObject *retobj = NULL, *retstr = NULL, *tobj; local
312 !PyUnicode_Check((tobj = PyTuple_GET_ITEM(retobj, 0))) ||
322 const Py_UNICODE *uraw = PyUnicode_AS_UNICODE(tobj);
325 PyUnicode_GET_SIZE(tobj), ERROR_STRICT,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
multibytecodec.c 225 PyObject *retobj = NULL, *retstr = NULL, *tobj; local
310 !PyUnicode_Check((tobj = PyTuple_GET_ITEM(retobj, 0))) ||
320 const Py_UNICODE *uraw = PyUnicode_AS_UNICODE(tobj);
323 PyUnicode_GET_SIZE(tobj), ERROR_STRICT,
    [all...]
  /external/python/cpython2/Modules/cjkcodecs/
multibytecodec.c 227 PyObject *retobj = NULL, *retstr = NULL, *tobj; local
312 !PyUnicode_Check((tobj = PyTuple_GET_ITEM(retobj, 0))) ||
322 const Py_UNICODE *uraw = PyUnicode_AS_UNICODE(tobj);
325 PyUnicode_GET_SIZE(tobj), ERROR_STRICT,
    [all...]
  /external/python/cpython3/Modules/cjkcodecs/
multibytecodec.c 203 PyObject *retobj = NULL, *retstr = NULL, *tobj; local
300 (!PyUnicode_Check((tobj = PyTuple_GET_ITEM(retobj, 0))) && !PyBytes_Check(tobj)) ||
308 if (PyUnicode_Check(tobj)) {
311 retstr = multibytecodec_encode(codec, state, tobj,
318 Py_INCREF(tobj);
319 retstr = tobj;
    [all...]

Completed in 860 milliseconds

1 2