HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 401 - 425 of 8232) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/libcore/icu/
CollationKeyICU.java 43 public boolean equals(Object object) {
44 if (object == this) {
47 if (!(object instanceof CollationKey)) {
50 return compareTo((CollationKey) object) == 0;
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh31.cpp 18 catch (Foo& object) {
p7912.cpp 20 catch (Foo object) {
  /ndk/tests/device/test-stlport_static-exception/jni/
eh31.cpp 18 catch (Foo& object) {
p7912.cpp 20 catch (Foo object) {
  /packages/apps/Camera2/src/com/android/camera/async/
RefCountBase.java 23 * Wraps an object with reference counting. When the reference count goes to 0
24 * for the first time, the object is closed.
27 private final Object mLock;
32 public RefCountBase(T object) {
33 this(object, 1);
36 public RefCountBase(T object, int initialReferenceCount) {
39 mLock = new Object();
40 mObject = object;
48 "addRef on an object which has been closed.");
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
RangeArray.java 25 mData = (T[]) new Object[max - min + 1];
38 public void put(int i, T object) {
39 mData[i - mOffset] = object;
46 public int indexOf(T object) {
48 if (mData[i] == object) return i + mOffset;
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ObjectBrowser.py 7 # object browser
10 # - for classes/modules, add "open source" to object browser
21 def __init__(self, labeltext, object, setfunction=None):
23 self.object = object
28 return myrepr.repr(self.object)
41 self.object = value
43 return not not dir(self.object)
45 keys = dir(self.object)
49 value = getattr(self.object, key
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
pydoc_mod.py 14 class B(object):
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ObjectBrowser.py 7 # object browser
10 # - for classes/modules, add "open source" to object browser
21 def __init__(self, labeltext, object, setfunction=None):
23 self.object = object
28 return myrepr.repr(self.object)
41 self.object = value
43 return not not dir(self.object)
45 keys = dir(self.object)
49 value = getattr(self.object, key
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
pydoc_mod.py 14 class B(object):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 7 # object browser
10 # - for classes/modules, add "open source" to object browser
21 def __init__(self, labeltext, object, setfunction=None):
23 self.object = object
28 return myrepr.repr(self.object)
41 self.object = value
43 return not not dir(self.object)
45 keys = dir(self.object)
49 value = getattr(self.object, key
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
pydoc_mod.py 14 class B(object):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 7 # object browser
10 # - for classes/modules, add "open source" to object browser
21 def __init__(self, labeltext, object, setfunction=None):
23 self.object = object
28 return myrepr.repr(self.object)
41 self.object = value
43 return not not dir(self.object)
45 keys = dir(self.object)
49 value = getattr(self.object, key
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
pydoc_mod.py 14 class B(object):
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/symver/
symver2.s 3 .type foo1,object
symver3.s 3 .type foo1,object
symver4.s 3 .type foo1,object
symver5.s 3 .type foo1,object
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
tls128.s 4 .type tls128, @object
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
pr16322.s 4 .type p1, %object
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
tlsg.s 4 .type a,@object
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68k/
tls-def-1.s 5 .type x, @object
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
got-vers-1b.s 5 .type foo2,%object
gp-hidden-ver.s 3 .type foo, @object

Completed in 1616 milliseconds

<<11121314151617181920>>