HomeSort by relevance Sort by last modified time
    Searched refs:otherParam (Results 1 - 2 of 2) sorted by null

  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
Script.java 160 ScriptParameter<J, K> otherParam = (ScriptParameter<J,K>) other;
162 return mScriptClass.equals(otherParam.mScriptClass) &&
163 mValueClass.equals(otherParam.mValueClass);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
ResolvedReferenceType.java 412 ResolvedType otherParam = other.typeParametersValues().get(i);
413 if (!thisParam.equals(otherParam)) {
416 if (thisParamAsWildcard.isSuper() && otherParam.isAssignableBy(thisParamAsWildcard.getBoundedType())) {
418 } else if (thisParamAsWildcard.isExtends() && thisParamAsWildcard.getBoundedType().isAssignableBy(otherParam)) {
426 if (thisParam instanceof ResolvedTypeVariable && otherParam instanceof ResolvedTypeVariable) {
428 List<ResolvedType> otherBounds = otherParam.asTypeVariable().asTypeParameter().getBounds().stream().map(bound -> bound.getType()).collect(Collectors.toList());

Completed in 125 milliseconds