Home
last modified time | relevance | path

Searched defs:obj (Results 1 – 25 of 1639) sorted by relevance

12345678910>>...66

/external/libnl/lib/
Dobject.c36 static inline struct nl_object_ops *obj_ops(struct nl_object *obj) in obj_ops()
110 struct nl_object *nl_object_clone(struct nl_object *obj) in nl_object_clone()
170 void nl_object_free(struct nl_object *obj) in nl_object_free()
204 void nl_object_get(struct nl_object *obj) in nl_object_get()
215 void nl_object_put(struct nl_object *obj) in nl_object_put()
236 int nl_object_shared(struct nl_object *obj) in nl_object_shared()
252 void nl_object_mark(struct nl_object *obj) in nl_object_mark()
261 void nl_object_unmark(struct nl_object *obj) in nl_object_unmark()
271 int nl_object_is_marked(struct nl_object *obj) in nl_object_is_marked()
288 void nl_object_dump(struct nl_object *obj, struct nl_dump_params *params) in nl_object_dump()
[all …]
Dcache.c80 struct nl_object *obj; in nl_cache_nitems_filter() local
145 struct nl_object *nl_cache_get_next(struct nl_object *obj) in nl_cache_get_next()
158 struct nl_object *nl_cache_get_prev(struct nl_object *obj) in nl_cache_get_prev()
301 struct nl_object *obj; in nl_cache_subset() local
341 struct nl_object *obj; in nl_cache_clone() local
368 struct nl_object *obj, *tmp; in nl_cache_clear() local
434 static int __cache_add(struct nl_cache *cache, struct nl_object *obj) in __cache_add()
479 int nl_cache_add(struct nl_cache *cache, struct nl_object *obj) in nl_cache_add()
523 int nl_cache_move(struct nl_cache *cache, struct nl_object *obj) in nl_cache_move()
551 void nl_cache_remove(struct nl_object *obj) in nl_cache_remove()
[all …]
/external/v8/src/
Dobjects-body-descriptors-inl.h19 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()
80 void BodyDescriptorBase::IteratePointers(HeapObject* obj, int start_offset, in IteratePointers()
89 void BodyDescriptorBase::IteratePointers(Heap* heap, HeapObject* obj, in IteratePointers()
98 void BodyDescriptorBase::IteratePointer(HeapObject* obj, int offset, in IteratePointer()
105 void BodyDescriptorBase::IteratePointer(Heap* heap, HeapObject* obj, in IteratePointer()
119 static bool IsValidSlot(HeapObject* obj, int offset) { in IsValidSlot()
125 static inline void IterateBody(HeapObject* obj, int object_size, in IterateBody()
140 static inline void IterateBody(HeapObject* obj, int object_size) { in IterateBody()
[all …]
Dobjects-body-descriptors.h79 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/clang/test/CodeGenCXX/
Dmicrosoft-abi-vtables-single-inheritance.cpp23 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 …]
Dmicrosoft-abi-vtables-multiple-nonvirtual-inheritance-no-thunks.cpp34 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()
Dmicrosoft-abi-vtables-multiple-nonvirtual-inheritance-return-adjustment.cpp44 void build_vftable(X *obj) { obj->foo(); } in build_vftable()
90 void build_vftable(X *obj) { obj->foo(); } in build_vftable()
137 void build_vftable(X *obj) { obj->foo(); } in build_vftable()
201 void build_vftable(X *obj) { obj->foo(); } in build_vftable()
244 void build_vftable(X *obj) { obj->foo(); } in build_vftable()
296 void build_vftable(X *obj) { obj->foo(); } in build_vftable()
320 void build_vftable(C *obj) { obj->g(); } in build_vftable()
344 void build_vftable(C *obj) { obj->f(); } in build_vftable()
363 void build_vftable(D *obj) { obj->f(); } in build_vftable()
Dcall-arg-zero-temp.cpp10 struct obj{ int a; float b; double d; }; argument
Dmicrosoft-abi-vtables-virtual-inheritance.cpp31 void use(C *obj) { obj->f(); } in use()
55 void use(D *obj) { obj->h(); } in use()
103 void use(X *obj) { obj->h(); } in use()
181 void use(Y *obj) { obj->h(); } in use()
246 void use(X *obj) { obj->f(); } in use()
262 void use(Z *obj) { obj->f(); } in use()
284 void use(T *obj) { obj->bar(); } in use()
309 void use(Y *obj) { obj->h(); } in use()
421 void use(T *obj) { obj->f(); } in use()
438 void use(X *obj) { obj->f(); } in use()
[all …]
/external/mesa3d/src/mesa/main/
Dtransformfeedback.c55 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 …]
Darrayobj.c82 unbind_array_object_vbos(struct gl_context *ctx, struct gl_array_object *obj) in unbind_array_object_vbos()
100 struct gl_array_object *obj = CALLOC_STRUCT(gl_array_object); in _mesa_new_array_object() local
114 _mesa_delete_array_object( struct gl_context *ctx, struct gl_array_object *obj ) in _mesa_delete_array_object()
208 struct gl_array_object *obj, in _mesa_initialize_array_object()
259 save_array_object( struct gl_context *ctx, struct gl_array_object *obj ) in save_array_object()
273 remove_array_object( struct gl_context *ctx, struct gl_array_object *obj ) in remove_array_object()
450 struct gl_array_object *obj = lookup_arrayobj(ctx, ids[i]); in _mesa_DeleteVertexArraysAPPLE() local
502 struct gl_array_object *obj; in gen_vertex_arrays() local
550 struct gl_array_object * obj; in _mesa_IsVertexArrayAPPLE() local
/external/libxml2/python/
Dlibxml_wrap.h68 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/
Dthread_collision_warner.h106 #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/mesa3d/src/mesa/state_tracker/
Dst_cb_xformfb.c66 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/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
DTweenManager.java71 BaseTween<?> obj = objects.get(i); in containsTarget() local
83 BaseTween<?> obj = objects.get(i); in containsTarget() local
94 BaseTween<?> obj = objects.get(i); in killAll() local
105 BaseTween<?> obj = objects.get(i); in killTarget() local
117 BaseTween<?> obj = objects.get(i); in killTarget() local
157 BaseTween<?> obj = objects.get(i); in update() local
220 BaseTween<?> obj = objs.get(i); in getTweensCount() local
230 BaseTween<?> obj = objs.get(i); in getTimelinesCount() local
/external/fio/
Djson.h54 #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/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
DCompactConstructorExampleTest.java34 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/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_buffer_objects.c37 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/radeon/
Dradeon_buffer_objects.c37 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/libmojo/base/android/
Dscoped_java_ref.h55 jobject obj() const { return obj_; } in obj() function
70 JavaRef(JNIEnv* env, jobject obj) : obj_(obj) {} in JavaRef()
96 T obj() const { return static_cast<T>(JavaRef<jobject>::obj()); } in obj() function
101 JavaRef(JNIEnv* env, T obj) : JavaRef<jobject>(env, obj) {} in JavaRef()
116 JavaParamRef(JNIEnv* env, T obj) : JavaRef<T>(env, obj) {} in JavaParamRef()
164 ScopedJavaLocalRef(JNIEnv* env, T obj) : JavaRef<T>(env, obj), env_(env) {} in ScopedJavaLocalRef()
196 void Reset(JNIEnv* env, U obj) { in Reset()
235 ScopedJavaGlobalRef(JNIEnv* env, T obj) { this->Reset(env, obj); } in ScopedJavaGlobalRef()
267 void Reset(JNIEnv* env, U obj) { in Reset()
/external/javasqlite/src/main/native/
Dsqlite_jni.c163 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/libdrm/nouveau/
Dabi16.c39 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/v8/src/inspector/
Dinjected_script_externs.js14 InjectedScriptHostClass.prototype.internalConstructorName = function(obj) {} argument
21 InjectedScriptHostClass.prototype.formatAccessorsAsProperties = function(obj, func) {} argument
27 InjectedScriptHostClass.prototype.subtype = function(obj) {} argument
33 InjectedScriptHostClass.prototype.isTypedArray = function(obj) {} argument
39 InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {} argument
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_bufferobj.c34 get_bufferobj_map(struct gl_context *ctx, struct gl_buffer_object *obj, in get_bufferobj_map()
65 nouveau_bufferobj_del(struct gl_context *ctx, struct gl_buffer_object *obj) in nouveau_bufferobj_del()
77 struct gl_buffer_object *obj) in nouveau_bufferobj_data()
112 struct gl_buffer_object *obj) in nouveau_bufferobj_subdata()
120 struct gl_buffer_object *obj) in nouveau_bufferobj_get_subdata()
128 struct gl_buffer_object *obj) in nouveau_bufferobj_map_range()
155 nouveau_bufferobj_unmap(struct gl_context *ctx, struct gl_buffer_object *obj) in nouveau_bufferobj_unmap()
/external/harfbuzz_ng/src/
Dhb-object-private.hh118 static inline void hb_object_trace (const Type *obj, const char *function) in hb_object_trace()
129 Type *obj = (Type *) calloc (1, sizeof (Type)); in hb_object_create() local
139 static inline void hb_object_init (Type *obj) in hb_object_init()
145 static inline bool hb_object_is_inert (const Type *obj) in hb_object_is_inert()
150 static inline bool hb_object_is_valid (const Type *obj) in hb_object_is_valid()
155 static inline Type *hb_object_reference (Type *obj) in hb_object_reference()
165 static inline bool hb_object_destroy (Type *obj) in hb_object_destroy()
179 static inline bool hb_object_set_user_data (Type *obj, in hb_object_set_user_data()
192 static inline void *hb_object_get_user_data (Type *obj, in hb_object_get_user_data()

12345678910>>...66