Searched defs:obj (Results 301 - 325 of 1383) sorted by relevance

<<11121314151617181920>>

/external/libnl/src/
H A Dnl-route-get.c22 static void parse_cb(struct nl_object *obj, void *arg) argument
24 //struct rtnl_route *route = (struct rtnl_route *) obj;
30 nl_object_dump(obj, &params);
/external/libnl/tests/
H A Dtest-cache-mngr.c6 static void change_cb(struct nl_cache *cache, struct nl_object *obj, argument
21 nl_object_dump(obj, &dp);
/external/llvm/test/MC/ELF/
H A Dtype.s1 // RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -t | FileCheck %s
15 obj: label
16 .global obj
17 .type obj,@object
18 .type obj,@notype
170 // CHECK-NEXT: Name: obj
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp159 MyIter obj; local
160 S3.foreach<MyIter>(obj);
162 ASSERT_EQ(6, obj.counter);
170 S.foreach<MyIter>(obj);
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_array.c101 int fields, int type, struct gl_buffer_object *obj,
112 if (obj) {
113 if (nouveau_bufferobj_hw(obj)) {
115 to_nouveau_bufferobj(obj);
131 nouveau_bufferobj_sys(obj), ptr);
100 nouveau_init_array(struct nouveau_array *a, int attr, int stride, int fields, int type, struct gl_buffer_object *obj, const void *ptr, GLboolean map, struct gl_context *ctx) argument
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_syncobj.c57 struct gl_sync_object *obj)
60 struct st_sync_object *so = (struct st_sync_object*)obj;
66 static void st_fence_sync(struct gl_context *ctx, struct gl_sync_object *obj, argument
70 struct st_sync_object *so = (struct st_sync_object*)obj;
78 static void st_check_sync(struct gl_context *ctx, struct gl_sync_object *obj) argument
81 struct st_sync_object *so = (struct st_sync_object*)obj;
90 struct gl_sync_object *obj,
94 struct st_sync_object *so = (struct st_sync_object*)obj;
107 struct gl_sync_object *obj,
56 st_delete_sync_object(struct gl_context *ctx, struct gl_sync_object *obj) argument
89 st_client_wait_sync(struct gl_context *ctx, struct gl_sync_object *obj, GLbitfield flags, GLuint64 timeout) argument
106 st_server_wait_sync(struct gl_context *ctx, struct gl_sync_object *obj, GLbitfield flags, GLuint64 timeout) argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
H A DProtectionSpecificHeader.java29 public boolean equals(Object obj) { argument
30 if (obj instanceof ProtectionSpecificHeader) {
31 if (this.getClass().equals(obj.getClass())) {
32 return data.equals(((ProtectionSpecificHeader) obj).data);
/external/openssl/crypto/x509/
H A Dx509_v3.c77 ASN1_OBJECT *obj; local
79 obj=OBJ_nid2obj(nid);
80 if (obj == NULL) return(-2);
81 return(X509v3_get_ext_by_OBJ(x,obj,lastpos));
84 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *sk, ASN1_OBJECT *obj,
98 if (OBJ_cmp(ex->object,obj) == 0)
186 ASN1_OBJECT *obj; local
189 obj=OBJ_nid2obj(nid);
190 if (obj == NULL)
195 ret=X509_EXTENSION_create_by_OBJ(ex,obj,cri
200 X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex, ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) argument
231 X509_EXTENSION_set_object(X509_EXTENSION *ex, ASN1_OBJECT *obj) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSignature.java33 public boolean equals(Object obj) { argument
34 if (this == obj) {
37 if (!(obj instanceof Signature)) {
40 ShadowSignature otherShadow = shadowOf((Signature) obj);
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeDoc.h137 static void reset(PublicObjectEntry* obj) { argument
138 obj->fObj = NULL;
139 obj->fResolvedReference = NULL;
140 obj->fOffset = -1;
141 obj->fIsReferenceResolved = false;
/external/skia/src/core/
H A DSkPictureFlat.cpp55 SkRefCnt* SkTypefacePlayback::set(int index, SkRefCnt* obj) { argument
57 SkRefCnt_SafeAssign(fArray[index], obj);
58 return obj;
/external/skia/src/views/
H A DSkViewPriv.cpp37 SkView::Artist* SkView::setArtist(Artist* obj) argument
39 if (obj == NULL)
48 SkRefCnt_SafeAssign(rec->fArtist, obj);
50 this->addTagList(new Artist_SkTagList(obj));
52 return obj;
83 SkView::Layout* SkView::setLayout(Layout* obj, bool invokeLayoutNow) argument
85 if (obj == NULL)
94 SkRefCnt_SafeAssign(rec->fLayout, obj);
96 this->addTagList(new Layout_SkTagList(obj));
102 return obj;
[all...]
/external/skia/tests/
H A DColorFilterTest.cpp18 static SkColorFilter* reincarnate_colorfilter(SkFlattenable* obj) { argument
20 wb.writeFlattenable(obj);
/external/smack/asmack-master/static-src/custom/com/kenai/jbosh/
H A DQName.java182 * @param obj the reference object with which to compare
187 public final boolean equals(Object obj) { argument
189 if (obj == this) {
193 if (!(obj instanceof QName)) {
197 if ((namespaceURI == ((QName) obj).namespaceURI)
198 && (localPart == ((QName) obj).localPart)) {
/external/smack/src/com/kenai/jbosh/
H A DQName.java182 * @param obj the reference object with which to compare
187 public final boolean equals(Object obj) { argument
189 if (obj == this) {
193 if (!(obj instanceof QName)) {
197 if ((namespaceURI == ((QName) obj).namespaceURI)
198 && (localPart == ((QName) obj).localPart)) {
/external/smack/src/org/jivesoftware/smackx/bookmark/
H A DBookmarkedURL.java89 public boolean equals(Object obj) { argument
90 if(!(obj instanceof BookmarkedURL)) {
93 BookmarkedURL url = (BookmarkedURL)obj;
/external/smack/src/org/jivesoftware/smackx/muc/
H A DOccupant.java105 public boolean equals(Object obj) { argument
106 if(!(obj instanceof Occupant)) {
109 Occupant occupant = (Occupant)obj;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCSharp3Target.java118 public String toString(Object obj, String formatName, Locale locale) argument
120 String value = (String)obj;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntSet.java70 boolean equals(Object obj); argument
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
H A DCountModifierDebuggee.java50 private void countAndCall(TestClass obj) { argument
52 obj.eventTestMethod();
55 private static void catchException(TestClass obj) { argument
58 obj.throwException();
72 TestClass obj = new TestClass();
84 countAndCall(obj);
89 catchException(obj);
H A DThreadOnlyModifierDebuggee.java39 private final TestClass obj; field in class:ThreadOnlyModifierDebuggee.TestThread
41 public TestThread(TestClass obj) { argument
42 this.obj = obj;
47 obj.eventTestMethod();
80 TestClass obj = new TestClass();
86 threads[i] = new Thread(new TestThread(obj));
/external/apache-http/src/org/apache/http/
H A DHttpHost.java195 public boolean equals(final Object obj) { argument
196 if (obj == null) return false;
197 if (this == obj) return true;
198 if (obj instanceof HttpHost) {
199 HttpHost that = (HttpHost) obj;
H A DProtocolVersion.java173 * @param obj the object to compare with
178 public final boolean equals(Object obj) { argument
179 if (this == obj) {
182 if (!(obj instanceof ProtocolVersion)) {
185 ProtocolVersion that = (ProtocolVersion) obj;
/external/apache-http/src/org/apache/http/conn/scheme/
H A DPlainSocketFactory.java172 * @param obj the object to compare with
177 public boolean equals(Object obj) { argument
178 return (obj == this);
H A DScheme.java194 * @param obj the object to compare with
199 public final boolean equals(Object obj) { argument
200 if (obj == null) return false;
201 if (this == obj) return true;
202 if (!(obj instanceof Scheme)) return false;
204 Scheme s = (Scheme) obj;

Completed in 2374 milliseconds

<<11121314151617181920>>