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

1 23 4 5 6 7 8 91011>>

  /art/test/024-illegal-access/src/
CheckInstanceof.java 21 public static void main(Object obj) {
22 if (obj instanceof otherpkg.Package)
  /art/test/091-override-package-private-method/src/
OverridePackagePrivateMethodTest.java 18 public void test(Object obj) {
19 if (obj == null) {
  /external/autotest/client/common_lib/test_utils/
mock_demo_MUT.py 4 obj = E(val=7)
5 print obj.method1()
  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
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/skia/src/gpu/
GrPendingProgramElement.h 23 // Adds a pending execution on obj.
24 explicit GrPendingProgramElement(T* obj) : fObj(obj) {
25 if (obj) {
26 obj->addPendingExecution();
30 void reset(T* obj) {
31 if (obj) {
32 obj->addPendingExecution();
37 fObj = obj;
  /hardware/intel/common/libmix/mix_common/src/
mixdrmparams.h 24 * @obj: object to be type-casted.
26 #define MIX_DRMPARAMS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIX_TYPE_DRMPARAMS, MixDrmParams))
30 * @obj: an object.
34 #define MIX_IS_DRMPARAMS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIX_TYPE_DRMPARAMS))
52 * @obj: a #MixParams object.
56 #define MIX_DRMPARAMS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MIX_TYPE_DRMPARAMS, MixDrmParamsClass))
114 * @obj: object to unref
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_thread_atexit.cpp 18 int __cxa_thread_atexit(void (*dtor)(void *), void *obj,
21 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/src/
cxa_thread_atexit.cpp 17 _LIBCXXABI_FUNC_VIS int __cxa_thread_atexit(void (*dtor)(void *), void *obj,
20 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol);
  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 107 * @param obj An object whose field to conditionally set
111 * @throws ClassCastException if {@code obj} is not an instance
114 public abstract boolean compareAndSet(T obj, long expect, long update);
127 * @param obj An object whose field to conditionally set
131 * @throws ClassCastException if {@code obj} is not an instance
134 public abstract boolean weakCompareAndSet(T obj, long expect, long update);
141 * @param obj An object whose field to set
144 public abstract void set(T obj, long newValue);
150 * @param obj An object whose field to set
154 public abstract void lazySet(T obj, long newValue)
    [all...]
  /external/zlib/src/watcom/
watcom_f.mak 12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
13 gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
14 infback.obj inffast.obj inflate.obj inftrees.obj
    [all...]
  /external/libnl/lib/
object.c 36 static inline struct nl_object_ops *obj_ops(struct nl_object *obj)
38 if (!obj->ce_ops)
41 return obj->ce_ops;
107 * @arg obj object to inherite data from
110 struct nl_object *nl_object_clone(struct nl_object *obj)
117 if (!obj)
120 ops = obj_ops(obj);
129 new->ce_ops = obj->ce_ops;
130 new->ce_msgtype = obj->ce_msgtype;
131 new->ce_mask = obj->ce_mask
    [all...]
  /art/test/615-checker-arm64-store-zero/src/
Main.java 426 Main obj = new Main(); local
427 obj.array_byte = new byte[1];
428 obj.array_char = new char[1];
429 obj.array_short = new short[1];
430 obj.array_int = new int[1];
431 obj.array_long = new long[1];
432 obj.array_float = new float[1];
433 obj.array_double = new double[1];
435 obj.bar();
436 obj.store_zero_to_static_byte_field()
    [all...]
  /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(lo_bitmap->HasAddress(obj))) {
45 return lo_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(lo_bitmap->HasAddress(obj))) {
    [all...]
  /hardware/intel/common/libmix/mix_audio/src/
mixacpaac.h 23 * @obj: object to be type-casted.
27 #define MIX_AUDIOCONFIGPARAMSAAC(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIX_TYPE_AUDIOCONFIGPARAMSAAC, MixAudioConfigParamsAAC))
31 * @obj: an object.
35 #define MIX_IS_AUDIOCONFIGPARAMSAAC(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIX_TYPE_AUDIOCONFIGPARAMSAAC))
55 * @obj: a #MixAudioConfigParams object.
59 #define MIX_AUDIOCONFIGPARAMSAAC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MIX_TYPE_AUDIOCONFIGPARAMSAAC, MixAudioConfigParamsAACClass))
223 * @obj: object to unref
    [all...]
  /external/harfbuzz_ng/src/
hb-object-private.hh 118 static inline void hb_object_trace (const Type *obj, const char *function)
120 DEBUG_MSG (OBJECT, (void *) obj,
123 obj ? obj->header.ref_count.get_unsafe () : 0);
129 Type *obj = (Type *) calloc (1, sizeof (Type)); local
131 if (unlikely (!obj))
132 return obj;
134 hb_object_init (obj);
135 hb_object_trace (obj, HB_FUNC);
136 return obj;
    [all...]
  /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/064-field-access/src/
GetNonexistent.java 19 Object obj = Holder.mObject; local
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
Makefile 19 OBJECTS = GenFw.obj ElfConvert.obj Elf32Convert.obj Elf64Convert.obj
  /external/lzma/CPP/7zip/
Aes.mak 2 $O\Aes.obj
6 $O\AesOpt.obj
  /external/pdfium/core/fpdfapi/parser/
cpdf_reference.cpp 23 CPDF_Object* obj = SafeGetDirect(); local
24 return obj ? obj->GetString() : CFX_ByteString();
28 CPDF_Object* obj = SafeGetDirect(); local
29 return obj ? obj->GetNumber() : 0;
33 CPDF_Object* obj = SafeGetDirect(); local
34 return obj ? obj->GetInteger() : 0;
38 CPDF_Object* obj = SafeGetDirect() local
72 CPDF_Object* obj = GetDirect(); local
    [all...]
  /hardware/intel/common/libmix/mix_video/src/
mixvideoconfigparamsenc_h264.h 24 * @obj: object to be type-casted.
26 #define MIX_VIDEOCONFIGPARAMSENC_H264(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIX_TYPE_VIDEOCONFIGPARAMSENC_H264, MixVideoConfigParamsEncH264))
30 * @obj: an object.
34 #define MIX_IS_VIDEOCONFIGPARAMSENC_H264(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIX_TYPE_VIDEOCONFIGPARAMSENC_H264))
52 * @obj: a #MixParams object.
56 #define MIX_VIDEOCONFIGPARAMSENC_H264_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MIX_TYPE_VIDEOCONFIGPARAMSENC_H264, MixVideoConfigParamsEncH264Class))
126 * @obj: object to unref
    [all...]
mixbufferpool.c 31 MixParams *mix_bufferpool_dup(const MixParams * obj);
33 static void mix_bufferpool_finalize(MixParams * obj);
75 void mix_bufferpool_finalize(MixParams * obj) {
78 MixBufferPool *self = MIX_BUFFERPOOL(obj);
87 parent_class->finalize(obj);
98 * @obj: a #MixBufferPool object
104 mix_bufferpool_dup(const MixParams * obj) {
107 if (MIX_IS_BUFFERPOOL(obj)) {
109 MIX_LOCK(MIX_BUFFERPOOL(obj)->objectlock);
112 if (mix_bufferpool_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj))) {
    [all...]
mixsurfacepool.c 31 MixParams *mix_surfacepool_dup(const MixParams * obj);
33 static void mix_surfacepool_finalize(MixParams * obj);
76 void mix_surfacepool_finalize(MixParams * obj) {
79 MixSurfacePool *self = MIX_SURFACEPOOL(obj);
88 parent_class->finalize(obj);
99 * @obj: a #MixSurfacePool object
105 mix_surfacepool_dup(const MixParams * obj) {
108 if (MIX_IS_SURFACEPOOL(obj)) {
110 MIX_LOCK(MIX_SURFACEPOOL(obj)->objectlock);
113 if (mix_surfacepool_copy(MIX_PARAMS(duplicate), MIX_PARAMS(obj))) {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1TaggedObject.java 17 ASN1Encodable obj = null; field in class:ASN1TaggedObject
20 ASN1TaggedObject obj,
25 return (ASN1TaggedObject)obj.getObject();
32 Object obj)
34 if (obj == null || obj instanceof ASN1TaggedObject)
36 return (ASN1TaggedObject)obj;
38 else if (obj instanceof byte[])
42 return ASN1TaggedObject.getInstance(fromByteArray((byte[])obj));
50 throw new IllegalArgumentException("unknown object in getInstance: " + obj.getClass().getName())
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
descriptors.py 37 def __get__(self, obj, objtype=None):
38 if obj is None:
41 if self.instances.setdefault(obj, None) is None:
42 diff = getattr(obj, self.diff_function)
45 return self.instances[obj]
47 def __set__(self, obj, value):
48 self.instances[obj] = value

Completed in 1375 milliseconds

1 23 4 5 6 7 8 91011>>