HomeSort by relevance Sort by last modified time
    Searched defs:other (Results 1 - 25 of 259) sorted by null

1 2 3 4 5 6 7 8 91011

  /dalvik/tests/075-verification-error/src/other/
InaccessibleClass.java 17 package other; package
InaccessibleMethod.java 17 package other; package
Mutant.java 17 package other; package
  /dalvik/tests/075-verification-error/src2/other/
InaccessibleClass.java 17 package other; package
InaccessibleMethod.java 17 package other; package
Mutant.java 17 package other; package
  /dalvik/tests/064-field-access/src/other/
OtherPackage.java 3 package other; package
  /external/icu4c/samples/case/
case.cpp 18 UnicodeString other = s; local
19 u_fprintf(out, "\"%S\"", other.getTerminatedBuffer());
  /external/proguard/src/proguard/
MemberSpecification.java 96 MemberSpecification other = (MemberSpecification)object; local
98 (this.requiredSetAccessFlags == other.requiredSetAccessFlags ) &&
99 (this.requiredUnsetAccessFlags == other.requiredUnsetAccessFlags ) &&
100 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotationType)) &&
101 (this.name == null ? other.name == null : this.name.equals(other.name) ) &&
102 (this.descriptor == null ? other.descriptor == null : this.descriptor.equals(other.descriptor) );
KeepClassSpecification.java 105 KeepClassSpecification other = (KeepClassSpecification)object; local
107 this.markClasses == other.markClasses &&
108 this.markConditionally == other.markConditionally &&
109 this.allowShrinking == other.allowShrinking &&
110 this.allowOptimization == other.allowOptimization &&
111 this.allowObfuscation == other.allowObfuscation &&
112 super.equals(other);
  /cts/tools/signature-tools/src/signature/model/impl/
SigArrayType.java 54 IArrayType other = (IArrayType) that; local
55 return thiz.getComponentType().equals(other.getComponentType());
  /cts/tools/vm-tests/src/util/build/
DexBuildStep.java 67 DexBuildStep other = (DexBuildStep) obj; local
69 return inputFile.equals(other.inputFile)
70 && outputFile.equals(other.outputFile);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DEREnumerated.java 93 DEREnumerated other = (DEREnumerated)o; local
95 return Arrays.areEqual(this.bytes, other.bytes);
DERInteger.java 114 DERInteger other = (DERInteger)o; local
116 return Arrays.areEqual(bytes, other.bytes);
DERUnknownTag.java 68 DERUnknownTag other = (DERUnknownTag)o; local
70 return isConstructed == other.isConstructed
71 && tag == other.tag
72 && Arrays.areEqual(data, other.data);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509Extension.java 62 X509Extension other = (X509Extension)o; local
64 return other.getValue().equals(this.getValue())
65 && (other.isCritical() == this.isCritical());
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
DHPrivateKeyParameters.java 37 DHPrivateKeyParameters other = (DHPrivateKeyParameters)obj; local
39 return other.getX().equals(this.x) && super.equals(obj);
DHPublicKeyParameters.java 37 DHPublicKeyParameters other = (DHPublicKeyParameters)obj; local
39 return other.getY().equals(y) && super.equals(obj);
DHValidationParameters.java 36 DHValidationParameters other = (DHValidationParameters)o; local
38 if (other.counter != this.counter)
43 return Arrays.areEqual(this.seed, other.seed);
DSAValidationParameters.java 41 DSAValidationParameters other = (DSAValidationParameters)o; local
43 if (other.counter != this.counter)
48 return Arrays.areEqual(this.seed, other.seed);
  /external/proguard/src/proguard/classfile/attribute/preverification/
LessZeroFrame.java 86 LessZeroFrame other = (LessZeroFrame)object; local
88 return this.u2offsetDelta == other.u2offsetDelta &&
89 this.choppedVariablesCount != other.choppedVariablesCount;
  /external/skia/tests/
PathTest.cpp 14 SkPath other; local
15 other.swap(p2);
16 REPORTER_ASSERT(reporter, other.isConvex());
17 REPORTER_ASSERT(reporter, other.getBounds() == bounds);
  /external/v8/test/cctest/
test-platform-linux.cc 56 pthread_t other; local
58 int thread_created = pthread_create(&other,
64 pthread_join(other, NULL);
test-platform-nullos.cc 56 pthread_t other; local
58 int thread_created = pthread_create(&other,
64 pthread_join(other, NULL);
  /frameworks/base/core/java/android/content/
PeriodicSync.java 77 final PeriodicSync other = (PeriodicSync) o; local
79 return account.equals(other.account)
80 && authority.equals(other.authority)
81 && period == other.period
82 && SyncStorageEngine.equals(extras, other.extras);

Completed in 486 milliseconds

1 2 3 4 5 6 7 8 91011