HomeSort by relevance Sort by last modified time
    Searched full:instanceof (Results 26 - 50 of 3504) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 66 if((func instanceof FuncPosition) ||
67 (func instanceof FuncLast))
101 if((pred instanceof Variable) ||
102 (pred instanceof XNumber) ||
103 (pred instanceof Div) ||
104 (pred instanceof Plus) ||
105 (pred instanceof Minus) ||
106 (pred instanceof Mod) ||
107 (pred instanceof Quo) ||
108 (pred instanceof Mult) |
    [all...]
  /cts/tools/dasm/src/dasm/
DopInfo.java 126 if (format instanceof Form10x) return "";
127 if (format instanceof Form12x) return ARG_REG_REG;
128 if (format instanceof Form11n) return ARG_REG_LITERAL;
129 if (format instanceof Form11x) return ARG_REGISTER;
130 if (format instanceof Form10t || format instanceof Form20t)
132 if (format instanceof Form22x) return ARG_REG_REG;
133 if (format instanceof Form21t) return ARG_REG_ADDRESS;
134 if (format instanceof Form21s) return ARG_REG_LITERAL;
135 if (format instanceof Form21h) return ARG_REG_LITERAL
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERTaggedObject.java 52 if (out instanceof ASN1OutputStream || out instanceof BEROutputStream)
62 if (obj instanceof ASN1OctetString)
64 if (obj instanceof BERConstructedOctetString)
75 else if (obj instanceof ASN1Sequence)
79 else if (obj instanceof ASN1Set)
BERSequence.java 40 if (out instanceof ASN1OutputStream || out instanceof BEROutputStream)
ASN1Null.java 25 if (!(o instanceof ASN1Null))
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/
DirectoryString.java 23 if (o instanceof DirectoryString)
28 if (o instanceof DERT61String)
33 if (o instanceof DERPrintableString)
38 if (o instanceof DERUniversalString)
43 if (o instanceof DERUTF8String)
48 if (o instanceof DERBMPString)
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKKeyFactory.java 63 if (keySpec instanceof PKCS8EncodedKeySpec)
83 if (keySpec instanceof X509EncodedKeySpec)
112 else if (spec.isAssignableFrom(RSAPublicKeySpec.class) && key instanceof RSAPublicKey)
118 else if (spec.isAssignableFrom(RSAPrivateKeySpec.class) && key instanceof RSAPrivateKey)
124 else if (spec.isAssignableFrom(RSAPrivateCrtKeySpec.class) && key instanceof RSAPrivateCrtKey)
135 else if (spec.isAssignableFrom(DHPrivateKeySpec.class) && key instanceof DHPrivateKey)
141 else if (spec.isAssignableFrom(DHPublicKeySpec.class) && key instanceof DHPublicKey)
148 else if (spec.isAssignableFrom(DSAPublicKeySpec.class) && key instanceof DSAPublicKey)
154 else if (spec.isAssignableFrom(DSAPrivateKeySpec.class) && key instanceof DSAPrivateKey)
169 if (key instanceof RSAPublicKey
    [all...]
  /external/v8/test/mjsunit/
global-const-var-conflicts.js 34 try { eval("var a"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
36 try { eval("var a = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
40 try { eval("var b"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
42 try { eval("var b = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
46 try { eval("const c"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
48 try { eval("const c = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
52 try { eval("const d"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
54 try { eval("const d = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); }
  /external/webkit/LayoutTests/fast/js/resources/
js-constructors-use-correct-global.js 7 shouldBeTrue("new otherGlobal." + constructors[i] + "() instanceof otherGlobal." + constructors[i]);
10 shouldBeTrue("otherGlobal." + constructors[i] + "() instanceof otherGlobal." + constructors[i]);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidInstanceofTest.java 46 assertFalse("m_a should not be a ChildOfAFive", a instanceof ChildOfAFive);
53 assertFalse("m_one should not be a ChildOfAFive", one instanceof ChildOfAFive);
60 assertFalse("m_two should not be a ChildOfAFive", two instanceof ChildOfAFive);
67 assertFalse("m_three should not be a ChildOfAFive", three instanceof ChildOfAFive);
74 assertFalse("m_four should not be a ChildOfAFive", four instanceof ChildOfAFive);
81 assertTrue("m_five is suppose to be a ChildOfAFive", five instanceof ChildOfAFive);
88 assertTrue("m_five is suppose to be a InterfaceFour", five instanceof InterfaceFour);
95 assertFalse("m_five does not implement InterfaceFive", one instanceof InterfaceFive);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java 57 if (obj instanceof ASN1Sequence)
63 if (obj instanceof BERSequence)
67 else if (obj instanceof DERSequence)
90 else if (o instanceof DERObject)
100 else if (obj instanceof DERTaggedObject)
105 if (obj instanceof BERTaggedObject)
137 else if (obj instanceof BERSet)
156 else if (o instanceof DERObject)
166 else if (obj instanceof DERSet)
185 else if (o instanceof DERObject
    [all...]
  /dalvik/dx/tests/049-dex-instanceof/
info.txt 2 instanceof expressions get converted reasonably.
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
X962Parameters.java 19 if (obj == null || obj instanceof X962Parameters)
24 if (obj instanceof DERObject)
59 return (params instanceof DERObjectIdentifier);
64 return (params instanceof ASN1Null);
  /external/hamcrest/src/org/hamcrest/core/
Is.java 3 import static org.hamcrest.core.IsInstanceOf.instanceOf;
57 * This is a shortcut to the frequently used is(instanceOf(SomeClass.class)).
59 * eg. assertThat(cheese, is(instanceOf(Cheddar.class)))
64 return is(instanceOf(type));
  /external/jsr305/ri/src/main/java/javax/annotation/
Nonnegative.java 21 if (!(v instanceof Number))
25 if (value instanceof Long)
27 else if (value instanceof Double)
29 else if (value instanceof Float)
  /external/junit/src/org/junit/internal/
InexactComparisonCriteria.java 14 if (expected instanceof Double)
  /external/junit/src/org/junit/runners/model/
NoGenericTypeParametersValidator.java 24 if (type instanceof TypeVariable<?>) {
27 } else if (type instanceof ParameterizedType)
29 else if (type instanceof WildcardType)
31 else if (type instanceof GenericArrayType)
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/LexicalConventions/
keywords-001.js 22 if (x instanceof SyntaxError)
  /frameworks/base/opengl/java/android/opengl/
GLWrapperBase.java 34 if (gl instanceof GL10Ext) {
37 if (gl instanceof GL11) {
40 if (gl instanceof GL11Ext) {
43 if (gl instanceof GL11ExtensionPack) {
  /cts/tools/signature-tools/src/signature/io/html/
ExecutableMemberComparator.java 73 if (type instanceof IClassReference) {
76 if (type instanceof ITypeVariableReference) {
80 if (type instanceof IParameterizedType) {
83 if (type instanceof IArrayType) {
86 if (type instanceof IPrimitiveType) {
93 if (type instanceof IClassDefinition) {
96 if (type instanceof ITypeVariableDefinition) {
  /cts/tools/vm-tests-tf/src/dot/junit/
DxUtil.java 51 if ((t instanceof VerifyError ||
52 (isDalvik && t instanceof ClassNotFoundException) ||
53 (!isDalvik && !(t instanceof NoClassDefFoundError)
54 && t instanceof LinkageError))) {
62 if (t instanceof VerifyError || t instanceof java.lang.IncompatibleClassChangeError ||t instanceof ClassNotFoundException) {
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
Time.java 31 if (!(time instanceof DERUTCTime)
32 && !(time instanceof DERGeneralizedTime))
69 if (obj == null || obj instanceof Time)
73 else if (obj instanceof DERUTCTime)
77 else if (obj instanceof DERGeneralizedTime)
87 if (time instanceof DERUTCTime)
101 if (time instanceof DERUTCTime)
AttCertIssuer.java 20 if (obj instanceof AttCertIssuer)
24 else if (obj instanceof V2Form)
28 else if (obj instanceof GeneralNames)
32 else if (obj instanceof ASN1TaggedObject)
36 else if (obj instanceof ASN1Sequence)
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/instanceof/
regress-7635.js 25 * Description: instanceof tweaks
29 var SECTION = "instanceof"; // provide a document reference (ie, ECMA section)
57 theproto instanceof Foo
60 AddTestCase( "function Foo() {}; theproto = {}; Foo.prototype = theproto; theproto instanceof Foo",
62 theproto instanceof Foo );
66 AddTestCase( "var f = new Function(); f instanceof f", false, f instanceof f );
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
KeyFactory.java 37 if (key instanceof ECPublicKey)
41 else if (key instanceof ECPrivateKey)
62 else if (spec.isAssignableFrom(java.security.spec.ECPublicKeySpec.class) && key instanceof ECPublicKey)
76 else if (spec.isAssignableFrom(java.security.spec.ECPrivateKeySpec.class) && key instanceof ECPrivateKey)
99 if (keySpec instanceof PKCS8EncodedKeySpec)
113 else if (keySpec instanceof ECPrivateKeySpec)
117 else if (keySpec instanceof java.security.spec.ECPrivateKeySpec)
129 if (keySpec instanceof X509EncodedKeySpec)
143 else if (keySpec instanceof ECPublicKeySpec)
147 else if (keySpec instanceof java.security.spec.ECPublicKeySpec
    [all...]

Completed in 2503 milliseconds

12 3 4 5 6 7 8 91011>>