Searched refs:obj (Results 226 - 250 of 2086) sorted by relevance

1234567891011>>

/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DGuardedObjectTest.java37 Object obj = null;
38 GuardedObject go = new GuardedObject(obj, null);
41 obj = "ewte rtw3456";
42 go = new GuardedObject(obj, null);
43 assertEquals(obj, go.getObject());
/external/apache-http/src/org/apache/http/client/utils/
H A DCloneUtils.java45 public static Object clone(final Object obj) throws CloneNotSupportedException { argument
46 if (obj == null) {
49 if (obj instanceof Cloneable) {
50 Class<?> clazz = obj.getClass ();
58 return m.invoke(obj, (Object []) null);
/external/apache-http/src/org/apache/http/protocol/
H A DDefaultedHttpContext.java64 Object obj = this.local.getAttribute(id);
65 if (obj == null) {
68 return obj;
76 public void setAttribute(final String id, final Object obj) { argument
77 this.local.setAttribute(id, obj);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributes.java49 * @param obj the object we want converted.
52 public static Attributes getInstance(Object obj) argument
54 if (obj instanceof Attributes)
56 return (Attributes)obj;
58 else if (obj != null)
60 return new Attributes(ASN1Set.getInstance(obj));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DEncryptionScheme.java28 public static EncryptionScheme getInstance(Object obj) argument
30 if (obj instanceof EncryptionScheme)
32 return (EncryptionScheme)obj;
34 else if (obj != null)
36 return new EncryptionScheme(ASN1Sequence.getInstance(obj));
H A DKeyDerivationFunc.java28 public static KeyDerivationFunc getInstance(Object obj) argument
30 if (obj instanceof KeyDerivationFunc)
32 return (KeyDerivationFunc)obj;
34 else if (obj != null)
36 return new KeyDerivationFunc(ASN1Sequence.getInstance(obj));
H A DPBES2Parameters.java20 Object obj)
22 if (obj instanceof PBES2Parameters)
24 return (PBES2Parameters)obj;
26 if (obj != null)
28 return new PBES2Parameters(ASN1Sequence.getInstance(obj));
41 ASN1Sequence obj)
43 Enumeration e = obj.getObjects();
19 getInstance( Object obj) argument
40 PBES2Parameters( ASN1Sequence obj) argument
H A DRSAPublicKey.java21 ASN1TaggedObject obj,
24 return getInstance(ASN1Sequence.getInstance(obj, explicit));
28 Object obj)
30 if (obj instanceof RSAPublicKey)
32 return (RSAPublicKey)obj;
35 if (obj != null)
37 return new RSAPublicKey(ASN1Sequence.getInstance(obj));
20 getInstance( ASN1TaggedObject obj, boolean explicit) argument
27 getInstance( Object obj) argument
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DNativeObject.java143 NativeObject obj = (NativeObject) super.clone();
144 obj.handleRef = new Object();
145 obj.id = -1;
146 obj.updateNeeded = true;
147 return obj;
/external/v8/test/mjsunit/es7/
H A Dobject-observe-debug-event.js42 var obj = {};
43 Object.observe(obj, function(changes) {
47 obj.foo = 1;
48 obj.zoo = 2;
49 obj.foo = 3;
/external/valgrind/drd/tests/
H A Dbar_bad_xml.stderr.exp41 <obj>...</obj>
49 <obj>...</obj>
68 <obj>...</obj>
76 <obj>...</obj>
89 <obj>...</obj>
[all...]
H A Dthread_name_xml.stderr.exp42 <obj>...</obj>
50 <obj>...</obj>
58 <obj>...</obj>
78 <obj>...</obj>
86 <obj>...</obj>
[all...]
/external/valgrind/memcheck/tests/
H A Dclient-msg-as-xml.stderr.exp38 <obj>...</obj>
46 <obj>...</obj>
54 <obj>...</obj>
62 <obj>...</obj>
70 <obj>...</obj>
[all...]
H A Dlong_namespace_xml.stderr.exp39 <obj>...</obj>
47 <obj>...</obj>
58 <obj>...</obj>
66 <obj>...</obj>
74 <obj>...</obj>
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Integer.java19 * @param obj an ASN1Integer or an object that can be converted into one.
24 Object obj)
26 if (obj == null || obj instanceof ASN1Integer)
28 return (ASN1Integer)obj;
31 if (obj instanceof byte[])
35 return (ASN1Integer)fromByteArray((byte[])obj);
43 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
49 * @param obj the tagged object holding the object we want
57 ASN1TaggedObject obj,
23 getInstance( Object obj) argument
56 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
H A DASN1Boolean.java36 * @param obj an ASN1Boolean or an object that can be converted into one.
41 Object obj)
43 if (obj == null || obj instanceof ASN1Boolean)
45 return (ASN1Boolean)obj;
48 if (obj instanceof byte[])
50 byte[] enc = (byte[])obj;
61 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
98 * @param obj the tagged object holding the object we want
106 ASN1TaggedObject obj,
40 getInstance( Object obj) argument
105 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
H A DASN1Enumerated.java19 * @param obj an ASN1Enumerated or an object that can be converted into one.
24 Object obj)
26 if (obj == null || obj instanceof ASN1Enumerated)
28 return (ASN1Enumerated)obj;
31 if (obj instanceof byte[])
35 return (ASN1Enumerated)fromByteArray((byte[])obj);
43 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
49 * @param obj the tagged object holding the object we want
57 ASN1TaggedObject obj,
23 getInstance( Object obj) argument
56 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
H A DDERBMPString.java19 * @param obj the object we want converted.
24 Object obj)
26 if (obj == null || obj instanceof DERBMPString)
28 return (DERBMPString)obj;
31 if (obj instanceof byte[])
35 return (DERBMPString)fromByteArray((byte[])obj);
43 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
49 * @param obj the tagged object holding the object we want
57 ASN1TaggedObject obj,
23 getInstance( Object obj) argument
56 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DDistributionPointName.java31 ASN1TaggedObject obj,
34 return getInstance(ASN1TaggedObject.getInstance(obj, true));
38 Object obj)
40 if (obj == null || obj instanceof DistributionPointName)
42 return (DistributionPointName)obj;
44 else if (obj instanceof ASN1TaggedObject)
46 return new DistributionPointName((ASN1TaggedObject)obj);
49 throw new IllegalArgumentException("unknown object in factory: " + obj.getClass().getName());
87 ASN1TaggedObject obj)
30 getInstance( ASN1TaggedObject obj, boolean explicit) argument
37 getInstance( Object obj) argument
86 DistributionPointName( ASN1TaggedObject obj) argument
[all...]
/external/clang/test/SemaCXX/
H A Dtypo-correction-delayed.cpp16 D obj; local
17 something(obj.fixbin, // expected-error {{did you mean 'fizbin'?}}
18 obj.toobat); // expected-error {{did you mean 'toobad'?}}
19 something(obj.toobat, // expected-error {{did you mean 'foobar'?}}
20 obj.fixbin); // expected-error {{did you mean 'roxbin'?}}
21 something(obj.fixbin, // expected-error {{did you mean 'fizbin'?}}
22 obj.fixbin); // expected-error {{did you mean 'roxbin'?}}
23 something(obj.toobat, // expected-error {{did you mean 'foobar'?}}
24 obj.toobat); // expected-error {{did you mean 'toobad'?}}
26 something(obj
[all...]
/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);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DDHValidationParms.java17 public static DHValidationParms getInstance(ASN1TaggedObject obj, boolean explicit) argument
19 return getInstance(ASN1Sequence.getInstance(obj, explicit));
22 public static DHValidationParms getInstance(Object obj) argument
24 if (obj instanceof DHValidationParms)
26 return (DHValidationParms)obj;
28 else if (obj != null)
30 return new DHValidationParms(ASN1Sequence.getInstance(obj));
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstInteger.java65 CstInteger obj = cache[idx];
67 if ((obj != null) && (obj.getValue() == value)) {
68 return obj;
71 obj = new CstInteger(value);
72 cache[idx] = obj;
73 return obj;
/external/opencv/cxcore/src/
H A Dcximage.cpp75 icvRetrieveImage( void* obj )
83 if( CV_IS_IMAGE(obj) )
84 img = (IplImage*)obj;
85 else if( CV_IS_MAT(obj) )
87 CvMat* m = (CvMat*)obj;
95 else if( obj )
97 cvRelease( &obj );
149 void* obj = 0; local
156 obj = cvReadByName( fs, mapnode, imgname );
159 obj
169 void* obj = 0; local
302 void* obj = 0; local
322 void* obj = 0; local
[all...]

Completed in 669 milliseconds

1234567891011>>