/external/v8/src/ |
D | objects-body-descriptors-inl.h | 19 bool BodyDescriptorBase::IsValidSlotImpl(HeapObject* obj, int offset) { in IsValidSlotImpl() 33 void BodyDescriptorBase::IterateBodyImpl(HeapObject* obj, int start_offset, in IterateBodyImpl() 56 void BodyDescriptorBase::IterateBodyImpl(Heap* heap, HeapObject* obj, in IterateBodyImpl() 79 void BodyDescriptorBase::IteratePointers(HeapObject* obj, int start_offset, in IteratePointers() 87 void BodyDescriptorBase::IteratePointers(Heap* heap, HeapObject* obj, in IteratePointers() 96 void BodyDescriptorBase::IteratePointer(HeapObject* obj, int offset, in IteratePointer() 103 void BodyDescriptorBase::IteratePointer(Heap* heap, HeapObject* obj, in IteratePointer() 117 static bool IsValidSlot(HeapObject* obj, int offset) { in IsValidSlot() 123 static inline void IterateBody(HeapObject* obj, int object_size, in IterateBody() 138 static inline void IterateBody(HeapObject* obj, int object_size) { in IterateBody() [all …]
|
D | objects-body-descriptors.h | 79 static bool IsValidSlot(HeapObject* obj, int offset) { in IsValidSlot() 84 static inline void IterateBody(HeapObject* obj, ObjectVisitor* v) { in IterateBody() 89 static inline void IterateBody(HeapObject* obj, int object_size, in IterateBody() 95 static inline void IterateBody(HeapObject* obj) { in IterateBody() 101 static inline void IterateBody(HeapObject* obj, int object_size) { in IterateBody() 115 static bool IsValidSlot(HeapObject* obj, int offset) { in IsValidSlot() 121 static inline void IterateBody(HeapObject* obj, int object_size, in IterateBody() 127 static inline void IterateBody(HeapObject* obj, int object_size) { in IterateBody()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
D | AbstractInterceptFieldCallback.java | 23 public int writeInt(Object obj, String name, int oldValue, int newValue) { return newValue; } in writeInt() 24 … public char writeChar(Object obj, String name, char oldValue, char newValue) { return newValue; } in writeChar() 25 … public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; } in writeByte() 26 …public boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue) { return … in writeBoolean() 27 …public short writeShort(Object obj, String name, short oldValue, short newValue) { return newValue… in writeShort() 28 …public float writeFloat(Object obj, String name, float oldValue, float newValue) { return newValue… in writeFloat() 29 …public double writeDouble(Object obj, String name, double oldValue, double newValue) { return newV… in writeDouble() 30 … public long writeLong(Object obj, String name, long oldValue, long newValue) { return newValue; } in writeLong() 31 …public Object writeObject(Object obj, String name, Object oldValue, Object newValue) { return newV… in writeObject() 33 public int readInt(Object obj, String name, int oldValue) { return oldValue; } in readInt() [all …]
|
D | InterceptFieldCallback.java | 23 int writeInt(Object obj, String name, int oldValue, int newValue); in writeInt() 24 char writeChar(Object obj, String name, char oldValue, char newValue); in writeChar() 25 byte writeByte(Object obj, String name, byte oldValue, byte newValue); in writeByte() 26 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue); in writeBoolean() 27 short writeShort(Object obj, String name, short oldValue, short newValue); in writeShort() 28 float writeFloat(Object obj, String name, float oldValue, float newValue); in writeFloat() 29 double writeDouble(Object obj, String name, double oldValue, double newValue); in writeDouble() 30 long writeLong(Object obj, String name, long oldValue, long newValue); in writeLong() 31 Object writeObject(Object obj, String name, Object oldValue, Object newValue); in writeObject() 33 int readInt(Object obj, String name, int oldValue); in readInt() [all …]
|
/external/libnl/lib/ |
D | object.c | 24 static inline struct nl_object_ops *obj_ops(struct nl_object *obj) in obj_ops() 94 struct nl_object *nl_object_clone(struct nl_object *obj) in nl_object_clone() 133 void nl_object_free(struct nl_object *obj) in nl_object_free() 162 void nl_object_get(struct nl_object *obj) in nl_object_get() 173 void nl_object_put(struct nl_object *obj) in nl_object_put() 194 int nl_object_shared(struct nl_object *obj) in nl_object_shared() 210 void nl_object_mark(struct nl_object *obj) in nl_object_mark() 219 void nl_object_unmark(struct nl_object *obj) in nl_object_unmark() 229 int nl_object_is_marked(struct nl_object *obj) in nl_object_is_marked() 246 void nl_object_dump(struct nl_object *obj, struct nl_dump_params *params) in nl_object_dump() [all …]
|
D | cache.c | 71 struct nl_object *obj; in nl_cache_nitems_filter() local 138 struct nl_object *nl_cache_get_next(struct nl_object *obj) in nl_cache_get_next() 151 struct nl_object *nl_cache_get_prev(struct nl_object *obj) in nl_cache_get_prev() 239 struct nl_object *obj; in nl_cache_subset() local 268 struct nl_object *obj, *tmp; in nl_cache_clear() local 301 static int __cache_add(struct nl_cache *cache, struct nl_object *obj) in __cache_add() 324 int nl_cache_add(struct nl_cache *cache, struct nl_object *obj) in nl_cache_add() 353 int nl_cache_move(struct nl_cache *cache, struct nl_object *obj) in nl_cache_move() 378 void nl_cache_remove(struct nl_object *obj) in nl_cache_remove() 408 struct nl_object *obj; in nl_cache_search() local [all …]
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-abi-vtables-single-inheritance.cpp | 23 void use(A *obj) { obj->f(); } in use() 43 void use(B *obj) { obj->f(); } in use() 58 void use(C *obj) { obj->f(); } in use() 73 void use(D *obj) { obj->f(); } in use() 93 void use(E *obj) { obj->i(); } in use() 111 void use(F *obj) { obj->i(); } in use() 132 void use(G *obj) { obj->j(); } in use() 152 void use(I *obj) { obj->f(); } in use() 171 void use(J *obj) { obj->foo(42); } in use() 190 void use(K *obj) { obj->foo(42.0f); } in use() [all …]
|
D | microsoft-abi-vtables-multiple-nonvirtual-inheritance-no-thunks.cpp | 34 void build_vftable(X *obj) { obj->f(); } in build_vftable() 64 void build_vftable(X *obj) { obj->g(); } in build_vftable() 93 void build_vftable(X *obj) { obj->i(); } in build_vftable() 116 void build_vftable(X *obj) { obj->f(); } in build_vftable() 151 void build_vftable(X *obj) { obj->f(); } in build_vftable() 184 void build_vftable(X *obj) { obj->g(); } in build_vftable() 219 void build_vftable(X *obj) { obj->g(); } in build_vftable() 250 void build_vftable(X *obj) { obj->h(); } in build_vftable() 301 void build_vftable(test9::X *obj) { obj->z(); } in build_vftable()
|
/external/mesa3d/src/mesa/main/ |
D | transformfeedback.c | 55 struct gl_transform_feedback_object *obj) in reference_transform_feedback_object() 141 struct gl_transform_feedback_object *obj = in delete_cb() local 212 struct gl_transform_feedback_object *obj; in new_transform_feedback() local 224 struct gl_transform_feedback_object *obj) in delete_transform_feedback() 242 struct gl_transform_feedback_object *obj) in begin_transform_feedback() 250 struct gl_transform_feedback_object *obj) in end_transform_feedback() 258 struct gl_transform_feedback_object *obj) in pause_transform_feedback() 266 struct gl_transform_feedback_object *obj) in resume_transform_feedback() 315 struct gl_transform_feedback_object *obj; in _mesa_BeginTransformFeedback() local 374 struct gl_transform_feedback_object *obj; in _mesa_EndTransformFeedback() local [all …]
|
/external/libxml2/python/ |
D | libxml_wrap.h | 68 xmlNodePtr obj; member 76 xmlXPathContextPtr obj; member 84 xmlXPathParserContextPtr obj; member 92 xmlParserCtxtPtr obj; member 100 xmlValidCtxtPtr obj; member 108 xmlCatalogPtr obj; member 117 xmlRegexpPtr obj; member 127 xmlTextReaderPtr obj; member 135 xmlTextReaderLocatorPtr obj; member 144 xmlErrorPtr obj; member [all …]
|
/external/libchrome/base/threading/ |
D | thread_collision_warner.h | 106 #define DFAKE_MUTEX(obj) \ argument 110 #define DFAKE_SCOPED_LOCK(obj) \ argument 114 #define DFAKE_SCOPED_RECURSIVE_LOCK(obj) \ argument 117 #define DFAKE_SCOPED_LOCK_THREAD_LOCKED(obj) \ argument 122 #define DFAKE_MUTEX(obj) typedef void InternalFakeMutexType##obj argument 123 #define DFAKE_SCOPED_LOCK(obj) ((void)0) argument 124 #define DFAKE_SCOPED_RECURSIVE_LOCK(obj) ((void)0) argument 125 #define DFAKE_SCOPED_LOCK_THREAD_LOCKED(obj) ((void)0) argument
|
/external/v8/test/webkit/ |
D | instance-of-immediates.js | 28 var obj = new Constructor(); variable 40 testSet("1", { "1":shouldThrow, "{}":shouldThrow, "obj":shouldThrow }); property 44 testSet("{}", { "1":shouldThrow, "{}":shouldThrow, "obj":shouldThrow }); property 48 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldBeFalse, "obj":shouldBeTrue }); property 53 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldThrow, "obj":shouldThrow }); property 58 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldBeFalse, "obj":shouldBeFalse }); property 63 testSet("Constructor", { "1":shouldBeFalse, "{}":shouldThrow, "obj":shouldThrow }); property
|
D | preventExtensions.js | 28 function obj() function 34 function test(obj) argument 52 function seal(obj) argument 58 function freeze(obj) argument 64 function preventExtensions(obj) argument 111 var obj = new Constructor(); variable
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_xformfb.c | 66 st_transform_feedback_object(struct gl_transform_feedback_object *obj) in st_transform_feedback_object() 74 struct st_transform_feedback_object *obj; in st_new_transform_feedback() local 88 struct gl_transform_feedback_object *obj) in st_delete_transform_feedback() 112 struct gl_transform_feedback_object *obj) in st_begin_transform_feedback() 158 struct gl_transform_feedback_object *obj) in st_pause_transform_feedback() 167 struct gl_transform_feedback_object *obj) in st_resume_transform_feedback() 179 st_transform_feedback_get_draw_target(struct gl_transform_feedback_object *obj) in st_transform_feedback_get_draw_target() 198 struct gl_transform_feedback_object *obj) in st_end_transform_feedback() 212 st_transform_feedback_draw_init(struct gl_transform_feedback_object *obj, in st_transform_feedback_draw_init()
|
/external/v8/test/mjsunit/harmony/ |
D | private.js | 221 function TestKeySet(obj) { argument 232 function TestKeyDefine(obj) { argument 240 function TestKeyGet(obj) { argument 258 function TestKeyEnum(obj) { argument 265 function TestKeyNames(obj) { argument 275 function TestKeyDescriptor(obj) { argument 288 function TestKeyDelete(obj) { argument 301 var obj = objs[i] variable
|
/external/fio/ |
D | json.h | 54 #define json_object_add_value_int(obj, name, val) \ argument 56 #define json_object_add_value_float(obj, name, val) \ argument 58 #define json_object_add_value_string(obj, name, val) \ argument 60 #define json_object_add_value_object(obj, name, val) \ argument 62 #define json_object_add_value_array(obj, name, val) \ argument 65 #define json_array_add_value_int(obj, val) \ argument 67 #define json_array_add_value_float(obj, val) \ argument 69 #define json_array_add_value_string(obj, val) \ argument 71 #define json_array_add_value_object(obj, val) \ argument 73 #define json_array_add_value_array(obj, val) \ argument [all …]
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_buffer_objects.c | 37 get_radeon_buffer_object(struct gl_buffer_object *obj) in get_radeon_buffer_object() 47 struct radeon_buffer_object *obj = CALLOC_STRUCT(radeon_buffer_object); in radeonNewBufferObject() local 61 struct gl_buffer_object *obj) in radeonDeleteBufferObject() 90 struct gl_buffer_object *obj) in radeonBufferData() 136 struct gl_buffer_object *obj) in radeonBufferSubData() 160 struct gl_buffer_object *obj) in radeonGetBufferSubData() 177 GLbitfield access, struct gl_buffer_object *obj) in radeonMapBufferRange() 208 struct gl_buffer_object *obj) in radeonUnmapBuffer()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_buffer_objects.c | 37 get_radeon_buffer_object(struct gl_buffer_object *obj) in get_radeon_buffer_object() 47 struct radeon_buffer_object *obj = CALLOC_STRUCT(radeon_buffer_object); in radeonNewBufferObject() local 61 struct gl_buffer_object *obj) in radeonDeleteBufferObject() 90 struct gl_buffer_object *obj) in radeonBufferData() 136 struct gl_buffer_object *obj) in radeonBufferSubData() 160 struct gl_buffer_object *obj) in radeonGetBufferSubData() 177 GLbitfield access, struct gl_buffer_object *obj) in radeonMapBufferRange() 208 struct gl_buffer_object *obj) in radeonUnmapBuffer()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
D | CompactConstructorExampleTest.java | 34 Object obj = yaml.load(doc); in load() local 40 Object obj = load("example1.yaml"); in test1() local 45 Object obj = load("example2.yaml"); in test2() local 50 Container obj = (Container) load("example3.yaml"); in test3() local 58 Object obj = load("example4.yaml"); in test4() local 69 Object obj = load("example5.yaml"); in test5() local 80 Object obj = load("example6.yaml"); in test6() local 91 Object obj = load("example7.yaml"); in test7() local
|
/external/javasqlite/src/main/native/ |
D | sqlite_jni.c | 163 seterr(JNIEnv *env, jobject obj, int err) in seterr() 174 setvmerr(JNIEnv *env, jobject obj, int err) in setvmerr() 185 setstmterr(JNIEnv *env, jobject obj, int err) in setstmterr() 210 gethandle(JNIEnv *env, jobject obj) in gethandle() 220 gethvm(JNIEnv *env, jobject obj) in gethvm() 230 gethstmt(JNIEnv *env, jobject obj) in gethstmt() 242 gethbl(JNIEnv *env, jobject obj) in gethbl() 253 gethbk(JNIEnv *env, jobject obj) in gethbk() 263 delglobrefp(JNIEnv *env, jobject *obj) in delglobrefp() 272 globrefpop(JNIEnv *env, jobject *obj) in globrefpop() [all …]
|
/external/v8/test/mjsunit/compiler/ |
D | inline-accessors.js | 30 var accessorCallCount, setterArgument, setterValue, obj, forceDeopt; variable 35 function TestInlinedGetter(context, obj, expected) { argument 55 function value_context_for_getter(obj) { argument 59 function test_context_for_getter(obj) { argument 67 function effect_context_for_getter(obj) { argument 72 function TryGetter(context, getter, obj, expected, expectException) { argument 85 function TestGetterInAllContexts(getter, obj, expected, expectException) { argument 192 function TestInlinedSetter(context, obj, value, expected) { argument 216 function value_context_for_setter(obj, value) { argument 220 function test_context_for_setter(obj, value) { argument [all …]
|
/external/v8/test/mjsunit/ |
D | allocation-site-info.js | 47 function getKind(obj) { argument 54 function isHoley(obj) { argument 59 function assertKind(expected, obj, name_opt) { argument 63 function assertHoley(obj, name_opt) { argument 67 function assertNotHoley(obj, name_opt) { argument 79 obj = new Array(); variable 83 obj = new Array(0); variable 87 obj = new Array(2); variable 91 obj = new Array(1,2,3); variable 95 obj = new Array(1, "hi", 2, undefined); variable
|
/external/libdrm/nouveau/ |
D | abi16.c | 39 abi16_chan_nv04(struct nouveau_object *obj) in abi16_chan_nv04() 63 abi16_chan_nvc0(struct nouveau_object *obj) in abi16_chan_nvc0() 84 abi16_chan_nve0(struct nouveau_object *obj) in abi16_chan_nve0() 110 abi16_engobj(struct nouveau_object *obj) in abi16_engobj() 151 abi16_ntfy(struct nouveau_object *obj) in abi16_ntfy() 173 abi16_sclass(struct nouveau_object *obj, struct nouveau_sclass **psclass) in abi16_sclass() 222 abi16_delete(struct nouveau_object *obj) in abi16_delete() 240 abi16_object(struct nouveau_object *obj, int (**func)(struct nouveau_object *)) in abi16_object()
|
/external/pdfium/core/include/fpdfapi/ |
D | fpdf_objects.h | 154 inline CPDF_Boolean* ToBoolean(CPDF_Object* obj) { in ToBoolean() 157 inline const CPDF_Boolean* ToBoolean(const CPDF_Object* obj) { in ToBoolean() 203 inline CPDF_Number* ToNumber(CPDF_Object* obj) { in ToNumber() 206 inline const CPDF_Number* ToNumber(const CPDF_Object* obj) { in ToNumber() 233 inline CPDF_String* ToString(CPDF_Object* obj) { in ToString() 236 inline const CPDF_String* ToString(const CPDF_Object* obj) { in ToString() 259 inline CPDF_Name* ToName(CPDF_Object* obj) { in ToName() 262 inline const CPDF_Name* ToName(const CPDF_Object* obj) { in ToName() 318 void AddReference(CPDF_IndirectObjectHolder* pDoc, CPDF_Object* obj) { in AddReference() 334 inline CPDF_Array* ToArray(CPDF_Object* obj) { in ToArray() [all …]
|
/external/v8/test/mjsunit/es6/ |
D | symbols.js | 270 function TestKeySet(obj) { argument 281 function TestKeyDefine(obj) { argument 289 function TestKeyGet(obj) { argument 298 function TestKeyHas(obj) { argument 306 function TestKeyEnum(obj) { argument 313 function TestKeyNames(obj) { argument 323 function TestGetOwnPropertySymbols(obj) { argument 332 function TestKeyDescriptor(obj) { argument 345 function TestKeyDelete(obj) { argument 358 var obj = objs[i] variable
|