HomeSort by relevance Sort by last modified time
    Searched refs:obj (Results 51 - 75 of 5202) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/runtime/gc/accounting/
heap_bitmap-inl.h 38 inline bool HeapBitmap::Test(const mirror::Object* obj) {
39 ContinuousSpaceBitmap* bitmap = GetContinuousSpaceBitmap(obj);
41 return bitmap->Test(obj);
44 if (LIKELY(bitmap->HasAddress(obj))) {
45 return bitmap->Test(obj);
48 LOG(FATAL) << "Invalid object " << obj;
52 inline void HeapBitmap::Clear(const mirror::Object* obj) {
53 ContinuousSpaceBitmap* bitmap = GetContinuousSpaceBitmap(obj);
55 bitmap->Clear(obj);
59 if (LIKELY(bitmap->HasAddress(obj))) {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
AttCertIssuer.java 15 ASN1Encodable obj; field in class:AttCertIssuer
19 Object obj)
21 if (obj == null || obj instanceof AttCertIssuer)
23 return (AttCertIssuer)obj;
25 else if (obj instanceof V2Form)
27 return new AttCertIssuer(V2Form.getInstance(obj));
29 else if (obj instanceof GeneralNames)
31 return new AttCertIssuer((GeneralNames)obj);
33 else if (obj instanceof ASN1TaggedObject
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 68 * @param obj An object whose field to conditionally set
72 * @throws ClassCastException if {@code obj} is not an instance
75 public abstract boolean compareAndSet(T obj, long expect, long update);
88 * @param obj An object whose field to conditionally set
92 * @throws ClassCastException if {@code obj} is not an instance
95 public abstract boolean weakCompareAndSet(T obj, long expect, long update);
102 * @param obj An object whose field to set
105 public abstract void set(T obj, long newValue);
111 * @param obj An object whose field to set
115 public abstract void lazySet(T obj, long newValue)
    [all...]
  /external/chromium_org/content/browser/android/
interstitial_page_delegate_android.cc 20 jobject obj,
22 : weak_java_obj_(env, obj),
29 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local
30 if (obj.obj())
31 Java_InterstitialPageDelegateAndroid_onNativeDestroyed(env, obj.obj());
34 void InterstitialPageDelegateAndroid::Proceed(JNIEnv* env, jobject obj) {
40 jobject obj) {
51 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env) local
58 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local
66 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local
    [all...]
  /external/libnl/lib/
object.c 24 static inline struct nl_object_ops *obj_ops(struct nl_object *obj)
26 if (!obj->ce_ops)
29 return obj->ce_ops;
91 * @arg obj object to inherite data from
94 struct nl_object *nl_object_clone(struct nl_object *obj)
97 struct nl_object_ops *ops = obj_ops(obj);
109 new->ce_ops = obj->ce_ops;
110 new->ce_msgtype = obj->ce_msgtype;
111 new->ce_mask = obj->ce_mask;
114 memcpy((void *)new + doff, (void *)obj + doff, size)
    [all...]
  /external/zlib/src/contrib/delphi/
zlibd32.mak 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.ob
    [all...]
  /external/zlib/src/contrib/pascal/
zlibd32.mak 21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.ob
    [all...]
  /external/lzma/C/Util/Lzma/
makefile 7 $O\LzmaUtil.obj \
10 $O\Alloc.obj \
11 $O\LzFind.obj \
12 $O\LzFindMt.obj \
13 $O\LzmaDec.obj \
14 $O\LzmaEnc.obj \
15 $O\7zFile.obj \
16 $O\7zStream.obj \
17 $O\Threads.obj \
  /external/chromium_org/chromeos/ime/
composition_text.cc 15 void CompositionText::CopyFrom(const CompositionText& obj) {
16 text_ = obj.text();
17 underline_attributes_ = obj.underline_attributes();
18 selection_start_ = obj.selection_start();
19 selection_end_ = obj.selection_end();
  /external/clang/test/CodeGenCXX/
call-arg-zero-temp.cpp 10 struct obj{ int a; float b; double d; }; struct
12 void foo(obj o) {
17 obj o = obj();
18 foo(obj());
microsoft-abi-vtables-single-inheritance.cpp 23 void use(A *obj) { obj->f(); }
43 void use(B *obj) { obj->f(); }
58 void use(C *obj) { obj->f(); }
73 void use(D *obj) { obj->f(); }
93 void use(E *obj) { obj->i();
    [all...]
  /frameworks/rs/driver/
rsdElement.cpp 34 rs_element *obj)
36 obj->p = element;
38 obj->r = NULL;
39 obj->v1 = NULL;
40 obj->v2 = NULL;
  /external/fio/
json.h 51 void json_free_object(struct json_object *obj);
53 int json_object_add_value_type(struct json_object *obj, const char *name, int type, ...);
54 #define json_object_add_value_int(obj, name, val) \
55 json_object_add_value_type((obj), name, JSON_TYPE_INTEGER, (val))
56 #define json_object_add_value_float(obj, name, val) \
57 json_object_add_value_type((obj), name, JSON_TYPE_FLOAT, (val))
58 #define json_object_add_value_string(obj, name, val) \
59 json_object_add_value_type((obj), name, JSON_TYPE_STRING, (val))
60 #define json_object_add_value_object(obj, name, val) \
61 json_object_add_value_type((obj), name, JSON_TYPE_OBJECT, (val)
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
ConfigurationAckMessage.java 30 public boolean equals(Object obj) {
31 if (this == obj) {
35 if (!(obj instanceof ConfigurationAckMessage)) {
  /external/stlport/test/eh/
intel.mak 26 Dep_stl = TestClass.obj main.obj nc_alloc.obj \
27 random_number.obj test_algo.obj test_algobase.obj test_bit_vector.obj test_deque.obj \
28 test_hash_map.obj test_hash_set.obj test_list.obj test_map.obj test_rope.obj test_set.obj
    [all...]
  /external/libcxx/test/atomics/atomics.types.generic/
address.pass.cpp 78 A obj(T(0));
79 assert(obj == T(0));
80 std::atomic_init(&obj, T(1));
81 assert(obj == T(1));
82 std::atomic_init(&obj, T(2));
83 assert(obj == T(2));
84 bool b0 = obj.is_lock_free();
85 obj.store(T(0));
86 assert(obj == T(0));
87 obj.store(T(1), std::memory_order_release)
    [all...]
integral.pass.cpp 95 A obj(T(0));
96 assert(obj == T(0));
97 std::atomic_init(&obj, T(1));
98 assert(obj == T(1));
99 std::atomic_init(&obj, T(2));
100 assert(obj == T(2));
101 bool b0 = obj.is_lock_free();
102 obj.store(T(0));
103 assert(obj == T(0));
104 obj.store(T(1), std::memory_order_release)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/
address.pass.cpp 78 A obj(T(0));
79 assert(obj == T(0));
80 std::atomic_init(&obj, T(1));
81 assert(obj == T(1));
82 std::atomic_init(&obj, T(2));
83 assert(obj == T(2));
84 bool b0 = obj.is_lock_free();
85 obj.store(T(0));
86 assert(obj == T(0));
87 obj.store(T(1), std::memory_order_release)
    [all...]
integral.pass.cpp 95 A obj(T(0));
96 assert(obj == T(0));
97 std::atomic_init(&obj, T(1));
98 assert(obj == T(1));
99 std::atomic_init(&obj, T(2));
100 assert(obj == T(2));
101 bool b0 = obj.is_lock_free();
102 obj.store(T(0));
103 assert(obj == T(0));
104 obj.store(T(1), std::memory_order_release)
    [all...]
  /art/test/132-daemon-locks-shutdown/src/
Main.java 35 private Object obj; field in class:Main.Wait
37 public Wait(Object obj) {
38 this.obj = obj;
43 synchronized(obj) {
45 obj.wait(1);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROutputStream.java 16 Object obj)
19 if (obj == null)
23 else if (obj instanceof ASN1Primitive)
25 ((ASN1Primitive)obj).encode(this);
27 else if (obj instanceof ASN1Encodable)
29 ((ASN1Encodable)obj).toASN1Primitive().encode(this);
  /external/chromium_org/components/keyed_service/content/
refcounted_browser_context_keyed_service.cc 11 const RefcountedBrowserContextKeyedService* obj) {
12 if (obj->requires_destruction_on_thread_ &&
13 !content::BrowserThread::CurrentlyOn(obj->thread_id_)) {
14 content::BrowserThread::DeleteSoon(obj->thread_id_, FROM_HERE, obj);
16 delete obj;
  /art/test/024-illegal-access/src/
CheckInstanceof.java 21 public static void main(Object obj) {
22 if (obj instanceof otherpkg.Package)
  /external/chromium_org/tools/telemetry/telemetry/core/
camel_case.py 8 def ToUnderscore(obj):
14 if isinstance(obj, basestring):
15 return re.sub('(?!^)([A-Z]+)', r'_\1', obj).lower()
17 elif isinstance(obj, list):
18 return [ToUnderscore(item) for item in obj]
20 elif isinstance(obj, dict):
22 for k, v in obj.iteritems():
30 return obj
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
InterceptFieldCallback.java 23 int writeInt(Object obj, String name, int oldValue, int newValue);
24 char writeChar(Object obj, String name, char oldValue, char newValue);
25 byte writeByte(Object obj, String name, byte oldValue, byte newValue);
26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue);
27 short writeShort(Object obj, String name, short oldValue, short newValue);
28 float writeFloat(Object obj, String name, float oldValue, float newValue);
29 double writeDouble(Object obj, String name, double oldValue, double newValue);
30 long writeLong(Object obj, String name, long oldValue, long newValue);
31 Object writeObject(Object obj, String name, Object oldValue, Object newValue);
33 int readInt(Object obj, String name, int oldValue)
    [all...]

Completed in 7200 milliseconds

1 23 4 5 6 7 8 91011>>