Searched refs:obj (Results 201 - 225 of 2086) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DAlgorithmIdentifier.java21 ASN1TaggedObject obj,
24 return getInstance(ASN1Sequence.getInstance(obj, explicit));
28 Object obj)
30 if (obj== null || obj instanceof AlgorithmIdentifier)
32 return (AlgorithmIdentifier)obj;
36 if (obj instanceof ASN1ObjectIdentifier)
38 return new AlgorithmIdentifier((ASN1ObjectIdentifier)obj);
42 if (obj instanceof String)
44 return new AlgorithmIdentifier((String)obj);
20 getInstance( ASN1TaggedObject obj, boolean explicit) argument
27 getInstance( Object obj) argument
[all...]
/external/protobuf/python/
H A Dstubout.py42 def SmartSet(self, obj, attr_name, new_attr):
43 """Replace obj.attr_name with new_attr. This method is smart and works
49 classmethod of obj.
52 - If obj is an instance, then it is its class that will actually be
53 stubbed. Note that the method Set() does not do that: if obj is
57 probably be to manipulate obj.__dict__ instead of getattr() and
62 if (inspect.ismodule(obj) or
63 (not inspect.isclass(obj) and obj.__dict__.has_key(attr_name))):
64 orig_obj = obj
[all...]
/external/v8/test/mjsunit/harmony/
H A Dprivate.js226 function TestKeySet(obj) {
227 assertTrue(%HasFastProperties(obj))
230 obj[symbols[i]] = i
232 assertTrue(%HasFastProperties(obj) || i >= 30)
237 function TestKeyDefine(obj) {
240 Object.defineProperty(obj, symbols[i], {value: i, configurable: true})
245 function TestKeyGet(obj) {
246 var obj2 = Object.create(obj)
248 assertEquals(i|0, obj[symbols[i]])
256 assertTrue(symbols[i] in obj)
[all...]
/external/compiler-rt/test/tsan/
H A Dunaligned_race.cc66 access2(bool main, int sz1, int off2, bool rw, volatile char *obj) { argument
68 access3<off, 0>(main, sz1, rw, obj);
70 access3<off, 1>(main, sz1, rw, obj);
72 access3<off, 2>(main, sz1, rw, obj);
74 access3<off, 3>(main, sz1, rw, obj);
76 access3<off, 4>(main, sz1, rw, obj);
78 access3<off, 5>(main, sz1, rw, obj);
80 access3<off, 6>(main, sz1, rw, obj);
82 access3<off, 7>(main, sz1, rw, obj);
86 access1(bool main, int off, int sz1, int off2, bool rw, char *obj) { argument
106 volatile uint64_t *obj = objs[0]; local
[all...]
/external/valgrind/callgrind/
H A Dbb.c60 UInt bb_hash_idx(obj_node* obj, PtrdiffT offset, UInt size) argument
62 return (((Addr)obj) + offset) % size;
87 new_idx = bb_hash_idx(curr->obj, curr->offset, new_size);
119 static BB* new_bb(obj_node* obj, PtrdiffT offset, argument
135 bb->obj = obj;
144 bb->sect_kind = VG_(DebugInfo_sect_kind)(NULL, offset + obj->offset);
152 idx = bb_hash_idx(obj, offset, bbs.size);
177 BB* lookup_bb(obj_node* obj, PtrdiffT offset) argument
182 idx = bb_hash_idx(obj, offse
198 obj_node* obj; local
243 obj_node* obj; local
292 obj_node* obj = obj_of_address(addr); local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/util/
H A DASN1Dump.java45 * @param obj the ASN1Primitive to be dumped out.
50 ASN1Primitive obj,
54 if (obj instanceof ASN1Sequence)
56 Enumeration e = ((ASN1Sequence)obj).getObjects();
60 if (obj instanceof BERSequence)
64 else if (obj instanceof DERSequence)
95 else if (obj instanceof ASN1TaggedObject)
100 if (obj instanceof BERTaggedObject)
109 ASN1TaggedObject o = (ASN1TaggedObject)obj;
132 else if (obj instanceo
47 _dumpAsString( String indent, boolean verbose, ASN1Primitive obj, StringBuffer buf) argument
287 outputApplicationSpecific(String type, String indent, boolean verbose, ASN1Primitive obj, String nl) argument
319 dumpAsString( Object obj) argument
332 dumpAsString( Object obj, boolean verbose) argument
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DX509CRLSelectorTest.java44 X509CRLSelector obj = new X509CRLSelector();
46 obj.addIssuer((X500Principal) null);
58 X509CRLSelector obj = new X509CRLSelector();
60 obj.addIssuerName("234");
80 X509CRLSelector obj = new X509CRLSelector();
82 obj.addIssuerName(new byte[] { (byte) 2, (byte) 3, (byte) 4 });
94 X509CRLSelector obj = new X509CRLSelector();
96 obj.addIssuerName((byte[]) null);
/external/apache-http/src/org/apache/http/protocol/
H A DSyncBasicHttpContext.java58 public synchronized void setAttribute(final String id, final Object obj) { argument
59 super.setAttribute(id, obj);
/external/clang/test/Analysis/
H A Dstack-addr-ps.cpp120 ConvertsToIntptr obj; local
121 return obj; // expected-warning{{Address of stack memory associated with local variable 'obj' returned to caller}}
125 ConvertsToBool obj; local
126 return obj; // no-warning
130 ConvertsToPointer obj; local
131 return reinterpret_cast<intptr_t>(static_cast<const void *>(obj)); // expected-warning{{Address of stack memory associated with local variable 'obj' returned to caller}}
135 ConvertsToPointer obj; local
136 return obj; // n
[all...]
/external/icu/icu4c/source/test/intltest/
H A Duobjtest.h29 * @param obj The UObject to be tested
31 * @param factory String version of obj, for exanple "new UFoo(1,3,4)". NULL if object is abstract.
33 * @return Returns obj, suitable for deletion
35 UObject *testClass(UObject *obj,
39 UObject *testClassNoClassID(UObject *obj,
/external/libcxxabi/test/
H A Dcxa_thread_atexit_test.pass.cpp17 extern "C" int __cxa_thread_atexit_impl(void (*dtor)(void *), void *obj, argument
20 assert(obj == reinterpret_cast<void *>(2));
/external/llvm/test/MC/COFF/
H A Dinvalid-endef.s1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
H A Dinvalid-scl.s1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
H A Dinvalid-type.s1 # RUN: not llvm-mc -triple i686-windows -filetype obj -o /dev/null %s
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_tex_obj.h71 intel_texture_object(struct gl_texture_object *obj) argument
73 return (struct intel_texture_object *) obj;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_xformfb.h45 st_transform_feedback_draw_init(struct gl_transform_feedback_object *obj,
56 st_transform_feedback_draw_init(struct gl_transform_feedback_object *obj, argument
/external/v8/test/mjsunit/compiler/
H A Dinline-two.js67 var obj = {}
68 obj.foo = function() { return 42; }
70 o3.v = obj;
75 TestInlineX2({h: o3.h, v:obj});
92 var obj = {}
93 obj.g = function() { return 42; }
95 o3.v = obj;
101 TestInlineFG({h: o3.h, f: o3.f, v:obj});
/external/v8/test/mjsunit/
H A Dglobal-deleted-property-ic.js28 function LoadX(obj) { return obj.x; }
H A Dglobal-load-from-eval-in-with.js32 function test(obj, source) {
33 with (obj) {
/external/v8/test/mjsunit/regress/
H A Dregress-123919.js40 var obj = new g(max,val);
41 assertSame(val, obj.val);
H A Dregress-252797.js47 function callConstantFunctionOnPrototype(obj) {
48 obj.holderMethod();
/external/v8/test/webkit/fast/js/
H A DObject-getOwnPropertyNames.js96 function getSortedOwnPropertyNames(obj)
98 return Object.getOwnPropertyNames(obj).sort();
/external/vogar/bin/
H A Dvogar-android16 vogar_jar=${ANDROID_BUILD_TOP}/out/target/common/obj/JAVA_LIBRARIES/vogar.jar_intermediates/javalib.jar
/external/libnl/include/netlink/
H A Dlist.h27 static inline void __nl_list_add(struct nl_list_head *obj, argument
31 prev->next = obj;
32 obj->prev = prev;
33 next->prev = obj;
34 obj->next = next;
37 static inline void nl_list_add_tail(struct nl_list_head *obj, argument
40 __nl_list_add(obj, head->prev, head);
43 static inline void nl_list_add_head(struct nl_list_head *obj, argument
46 __nl_list_add(obj, head, head->next);
49 static inline void nl_list_del(struct nl_list_head *obj) argument
[all...]
/external/libxml2/python/
H A Dlibxml_wrap.h64 (((PyxmlNode_Object *)(v))->obj))
68 xmlNodePtr obj; member in struct:__anon9733
72 (((PyxmlXPathContext_Object *)(v))->obj))
76 xmlXPathContextPtr obj; member in struct:__anon9734
80 (((PyxmlXPathParserContext_Object *)(v))->obj))
84 xmlXPathParserContextPtr obj; member in struct:__anon9735
88 (((PyparserCtxt_Object *)(v))->obj))
92 xmlParserCtxtPtr obj; member in struct:__anon9736
96 (((PyValidCtxt_Object *)(v))->obj))
100 xmlValidCtxtPtr obj; member in struct:__anon9737
108 xmlCatalogPtr obj; member in struct:__anon9738
117 xmlRegexpPtr obj; member in struct:__anon9739
127 xmlTextReaderPtr obj; member in struct:__anon9740
135 xmlTextReaderLocatorPtr obj; member in struct:__anon9741
144 xmlErrorPtr obj; member in struct:__anon9742
152 xmlOutputBufferPtr obj; member in struct:__anon9743
160 xmlParserInputBufferPtr obj; member in struct:__anon9744
168 xmlURIPtr obj; member in struct:__anon9745
186 xmlRelaxNGPtr obj; member in struct:__anon9746
194 xmlRelaxNGParserCtxtPtr obj; member in struct:__anon9747
202 xmlRelaxNGValidCtxtPtr obj; member in struct:__anon9748
210 xmlSchemaPtr obj; member in struct:__anon9749
218 xmlSchemaParserCtxtPtr obj; member in struct:__anon9750
226 xmlSchemaValidCtxtPtr obj; member in struct:__anon9751
[all...]

Completed in 758 milliseconds

1234567891011>>