Home
last modified time | relevance | path

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

12345678910>>...53

/external/libnl/lib/
Dobject.c24 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 …]
/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 …]
Dcall-arg-zero-temp.cpp10 struct obj{ int a; float b; double d; }; argument
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-vdtors.cpp30 void build_vftable(C *obj) { delete obj; } in build_vftable()
55 void build_vftable(E *obj) { delete obj; } in build_vftable()
75 void build_vftable(F *obj) { delete obj; } in build_vftable()
94 void build_vftable(G *obj) { delete obj; } in build_vftable()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
DAbstractInterceptFieldCallback.java23 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 …]
DInterceptFieldCallback.java23 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/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 …]
/external/v8/test/webkit/
Dinstance-of-immediates.js28 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
DpreventExtensions.js28 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/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/v8/test/mjsunit/harmony/
Dprivate.js226 function TestKeySet(obj) { argument
237 function TestKeyDefine(obj) { argument
245 function TestKeyGet(obj) { argument
262 function TestKeyEnum(obj) { argument
269 function TestKeyNames(obj) { argument
279 function TestKeyDescriptor(obj) { argument
292 function TestKeyDelete(obj) { argument
305 var obj = objs[i] variable
/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/v8/test/mjsunit/es6/
Dsymbols.js275 function TestKeySet(obj) { argument
286 function TestKeyDefine(obj) { argument
294 function TestKeyGet(obj) { argument
303 function TestKeyHas(obj) { argument
311 function TestKeyEnum(obj) { argument
318 function TestKeyNames(obj) { argument
328 function TestGetOwnPropertySymbols(obj) { argument
337 function TestKeyDescriptor(obj) { argument
350 function TestKeyDelete(obj) { argument
363 var obj = objs[i] variable
/external/skia/include/core/
DSkRefCnt.h145 template <typename T> static inline T* SkRef(T* obj) { in SkRef()
153 template <typename T> static inline T* SkSafeRef(T* obj) { in SkSafeRef()
162 template <typename T> static inline void SkSafeUnref(T* obj) { in SkSafeUnref()
168 template<typename T> static inline void SkSafeSetNull(T*& obj) { in SkSafeSetNull()
182 explicit SkAutoTUnref(T* obj = NULL) : fObj(obj) {} in fObj() argument
187 T* reset(T* obj) { in reset()
206 T* obj = fObj; in detach() local
221 SkAutoUnref(SkRefCnt* obj) : SkAutoTUnref<SkRefCnt>(obj) {} in SkAutoUnref()
/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/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/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/v8/src/heap/
Dincremental-marking-inl.h14 bool IncrementalMarking::BaseRecordWrite(HeapObject* obj, Object** slot, in BaseRecordWrite()
44 void IncrementalMarking::RecordWrite(HeapObject* obj, Object** slot, in RecordWrite()
58 void IncrementalMarking::RecordWriteIntoCode(HeapObject* obj, RelocInfo* rinfo, in RecordWriteIntoCode()
66 void IncrementalMarking::RecordWrites(HeapObject* obj) { in RecordWrites()
81 void IncrementalMarking::BlackToGreyAndUnshift(HeapObject* obj, in BlackToGreyAndUnshift()
110 void IncrementalMarking::WhiteToGreyAndPush(HeapObject* obj, MarkBit mark_bit) { in WhiteToGreyAndPush()
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
DX509CRLSelectorTest.java44 X509CRLSelector obj = new X509CRLSelector(); in test_addIssuerLjavax_security_auth_x500_X500Principal() local
58 X509CRLSelector obj = new X509CRLSelector(); in test_addIssuerNameLjava_lang_String() local
80 X509CRLSelector obj = new X509CRLSelector(); in test_addIssuerName$B_3() local
94 X509CRLSelector obj = new X509CRLSelector(); in test_addIssuerName$B_4() local
/external/v8/src/
Dv8natives.js327 function ObjectKeys(obj) { argument
412 function ToPropertyDescriptor(obj) { argument
458 function ToCompletePropertyDescriptor(obj) { argument
625 function GetOwnPropertyJS(obj, v) { argument
653 function Delete(obj, p, should_throw) { argument
668 function DefineProxyProperty(obj, p, attributes, should_throw) { argument
687 function DefineObjectProperty(obj, p, desc, should_throw) { argument
852 function DefineArrayProperty(obj, p, desc, should_throw) { argument
966 function DefineOwnProperty(obj, p, desc, should_throw) { argument
982 function ObjectGetPrototypeOf(obj) { argument
[all …]
/external/v8/test/mjsunit/compiler/
Dinline-accessors.js30 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/
Dallocation-site-info.js47 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/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/deqp/framework/platform/android/
DtcuAndroidJNI.cpp40 static jfieldID getExecServiceField (JNIEnv* env, jobject obj) in getExecServiceField()
51 static tcu::Android::ExecService* getExecService (JNIEnv* env, jobject obj) in getExecService()
57 static void setExecService (JNIEnv* env, jobject obj, tcu::Android::ExecService* service) in setExecService()
70 …JNICALL Java_com_drawelements_deqp_execserver_ExecService_onCreateNative (JNIEnv* env, jobject obj) in Java_com_drawelements_deqp_execserver_ExecService_onCreateNative()
95 …NICALL Java_com_drawelements_deqp_execserver_ExecService_onDestroyNative (JNIEnv* env, jobject obj) in Java_com_drawelements_deqp_execserver_ExecService_onDestroyNative()

12345678910>>...53