HomeSort by relevance Sort by last modified time
    Searched defs:obj (Results 226 - 250 of 3281) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/security/keystore/
confirmation_manager.cpp 167 sp<BpConfirmationPromptCallback> obj = new BpConfirmationPromptCallback(listener); local
168 Status status = obj->onConfirmationPromptCompleted(static_cast<int32_t>(responseCode),
  /toolchain/binutils/binutils-2.27/gold/
copy-relocs.cc 150 Object* obj = sym->object(); local
151 Task_lock_obj<Object> tl(dummy_task, obj);
152 addralign = obj->section_addralign(shndx);
target.cc 80 Sized_relobj_file<size, big_endian>* obj = local
82 obj->setup();
83 return obj;
87 Sized_dynobj<size, big_endian>* obj = local
89 obj->setup();
90 return obj;
  /tools/tradefederation/core/src/com/android/tradefed/sandbox/
SandboxInvocationRunner.java 72 Throwable obj = (Throwable) SerializationUtil.deserialize(exception, true); local
73 throw obj;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERExternal.java 51 ASN1TaggedObject obj = (ASN1TaggedObject)enc; local
52 setEncoding(obj.getTagNo());
53 externalContent = obj.getObject();
148 DERTaggedObject obj = new DERTaggedObject(true, encoding, externalContent); local
149 baos.write(obj.getEncoded(ASN1Encoding.DER));
  /art/tools/ahat/src/test/com/android/ahat/
InstanceTest.java 180 AhatInstance obj = dump.getDumpedAhatInstance("nullString"); local
181 assertNull(obj);
187 AhatInstance obj = dump.getDumpedAhatInstance("anObject"); local
188 assertNotNull(obj);
189 assertNull(obj.asString());
316 AhatInstance obj = dump.getDumpedAhatInstance("anObject"); local
317 assertNull(obj.asBitmap());
323 AhatInstance obj = dump.getDumpedAhatInstance("gcPathArray"); local
324 assertNull(obj.asBitmap());
330 AhatInstance obj = dump.findClass("Main") local
337 AhatInstance obj = dump.getDumpedAhatInstance("aPhantomReference"); local
345 AhatInstance obj = dump.findClass("Main"); local
352 AhatInstance obj = dump.getDumpedAhatInstance("gcPathArray"); local
365 AhatInstance obj = dump.getDumpedAhatInstance("bigArray"); local
373 AhatInstance obj = dump.getDumpedAhatInstance("anObject"); local
414 AhatInstance obj = dump.getDumpedAhatInstance("anObject"); local
466 AhatInstance obj = dump.getDumpedAhatInstance("anObject"); local
    [all...]
  /art/runtime/gc/accounting/
card_table_test.cc 84 auto obj = reinterpret_cast<const mirror::Object*>(addr); local
85 EXPECT_EQ(card_table_->GetCard(obj), CardTable::kCardClean);
86 EXPECT_TRUE(!card_table_->IsDirty(obj));
88 EXPECT_TRUE(card_table_->IsDirty(obj));
89 EXPECT_EQ(card_table_->GetCard(obj), CardTable::kCardDirty);
  /art/runtime/gc/
heap-inl.h 64 ObjPtr<mirror::Object> obj; local
66 obj = AllocLargeObject<kInstrumented, PreFenceVisitor>(self, &klass, byte_count,
68 if (obj != nullptr) {
69 return obj.Ptr();
87 obj = self->AllocTlab(byte_count);
88 DCHECK(obj != nullptr) << "AllocTlab can't fail";
89 obj->SetClass(klass);
91 obj->AssertReadBarrierState();
95 pre_fence_visitor(obj, usable_size);
99 (obj = rosalloc_space_->AllocThreadLocal(self, byte_count, &bytes_allocated)) != nullptr &
    [all...]
  /art/runtime/mirror/
object-readbarrier-inl.h 76 uintptr_t obj = reinterpret_cast<uintptr_t>(this); local
81 "ldr %[result], [%[obj], #4]\n\t"
86 : [obj] "r" (obj));
92 uintptr_t obj = reinterpret_cast<uintptr_t>(this);
97 "ldr %w[result], [%[obj], #4]\n\t"
102 : [obj] "r" (obj));
  /art/test/023-many-interfaces/src/
ManyInterfaces.java 190 ManyInterfaces obj = new ManyInterfaces(); local
206 testIface001(obj, iter);
211 testIface049(obj, iter);
216 testIface099(obj, iter);
221 testVirt001(obj, iter);
226 testVirt049(obj, iter);
231 testVirt099(obj, iter);
236 testInstance001(obj, iter);
241 testInstance049(obj, iter);
246 testInstance099(obj, iter)
    [all...]
  /art/test/042-new-instance/src/
Main.java 37 Object obj = c.newInstance(); local
47 Object obj = c.newInstance(); local
88 Object obj = cons.newInstance(); local
99 Object obj = cons.newInstance(new Main()); local
110 Object obj = cons.newInstance(); local
134 Object obj = cons.newInstance(); local
149 Object obj = cons.newInstance(); local
  /art/test/522-checker-regression-monitor-exit/src/
Main.java 35 public HashCodeQuery(Object obj) {
36 m_obj = obj;
58 Object obj = new Object(); local
65 queries.add(new HashCodeQuery(obj));
71 int hash = obj.hashCode();
  /art/test/671-npe-field-opts/src/
Main.java 18 static Main obj; field in class:Main
44 int v1 = obj.intField;
45 float v2 = obj.floatField;
52 float f = obj.floatField;
53 int i = obj.intField;
  /art/test/704-multiply-accumulate/src/
Main.java 83 CA obj = new CA(); local
84 result = a*c + obj.ia;
88 obj = ca;
91 tmp = obj.ia;
145 CA obj = new CA(); local
146 result = a*c + obj.la;
150 obj = ca;
153 tmp = obj.la;
  /art/test/905-object-free/src/art/
Test905.java 71 Object obj = new Object(); local
72 Main.setTag(obj, i);
73 setTag2(obj, i + 1);
95 Object obj = new Object(); local
96 l.add(obj);
97 Main.setTag(obj, tag);
  /art/test/958-methodhandle-stackframe/src-art/
Main.java 99 Object obj = "goodbye"; local
101 0.56f, 100.0d, "hello", obj);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstInteger.java 65 CstInteger obj = cache[idx]; local
67 if ((obj != null) && (obj.getValue() == value)) {
68 return obj;
71 obj = new CstInteger(value);
72 cache[idx] = obj;
73 return obj;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstInteger.java 65 CstInteger obj = cache[idx]; local
67 if ((obj != null) && (obj.getValue() == value)) {
68 return obj;
71 obj = new CstInteger(value);
72 cache[idx] = obj;
73 return obj;
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertingCells.java 83 ListItemObject obj = mValues[mItemNum % mValues.length]; local
84 final ListItemObject newObj = new ListItemObject(obj.getTitle(), obj.getImgResource(),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
abstract.h 476 PyAPI_FUNC(int) PyObject_AsCharBuffer(PyObject *obj,
492 PyAPI_FUNC(int) PyObject_CheckReadBuffer(PyObject *obj); variable
501 PyAPI_FUNC(int) PyObject_AsReadBuffer(PyObject *obj,
517 PyAPI_FUNC(int) PyObject_AsWriteBuffer(PyObject *obj,
534 #define PyObject_CheckBuffer(obj) \
535 (((obj)->ob_type->tp_as_buffer != NULL) && \
536 (PyType_HasFeature((obj)->ob_type, Py_TPFLAGS_HAVE_NEWBUFFER)) && \
537 ((obj)->ob_type->tp_as_buffer->bf_getbuffer != NULL))
542 PyAPI_FUNC(int) PyObject_GetBuffer(PyObject *obj, Py_buffer *view,
573 pointed to by buf into the buffer exported by obj. Return
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
abstract.h 476 PyAPI_FUNC(int) PyObject_AsCharBuffer(PyObject *obj,
492 PyAPI_FUNC(int) PyObject_CheckReadBuffer(PyObject *obj); variable
501 PyAPI_FUNC(int) PyObject_AsReadBuffer(PyObject *obj,
517 PyAPI_FUNC(int) PyObject_AsWriteBuffer(PyObject *obj,
534 #define PyObject_CheckBuffer(obj) \
535 (((obj)->ob_type->tp_as_buffer != NULL) && \
536 (PyType_HasFeature((obj)->ob_type, Py_TPFLAGS_HAVE_NEWBUFFER)) && \
537 ((obj)->ob_type->tp_as_buffer->bf_getbuffer != NULL))
542 PyAPI_FUNC(int) PyObject_GetBuffer(PyObject *obj, Py_buffer *view,
573 pointed to by buf into the buffer exported by obj. Return
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
rangeobject.c 43 rangeobject *obj; local
73 obj = PyObject_New(rangeobject, &PyRange_Type);
74 if (obj == NULL)
76 obj->start = ilow;
77 obj->len = (long)n;
78 obj->step = istep;
79 return (PyObject *) obj;
  /external/annotation-tools/annotation-file-utilities/tests/
CastInsert.java 77 Object obj = null; local
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
PopFramesDebuggee.java 37 Object obj = new Object(); local
38 synchronized (obj) {
40 obj.wait(timeToSleep);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerFactory.java 133 Object obj = cls.newInstance(); local
135 if (obj instanceof SerializationHandler)
147 if (obj instanceof ContentHandler)
160 sh.setContentHandler( (ContentHandler) obj);

Completed in 780 milliseconds

1 2 3 4 5 6 7 8 91011>>