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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
NoDataException.java 28 public class NoDataException extends MathIllegalStateException {
36 public NoDataException() {
44 public NoDataException(Localizable specific) {
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/
SmaliPositionManager.java 34 import com.intellij.debugger.NoDataException;
65 int codeIndex) throws NoDataException {
87 throw NoDataException.INSTANCE;
91 public SourcePosition getSourcePosition(@Nullable Location location) throws NoDataException {
93 throw NoDataException.INSTANCE;
101 public List<ReferenceType> getAllClasses(@NotNull SourcePosition classPosition) throws NoDataException {
103 throw NoDataException.INSTANCE;
125 @NotNull final SourcePosition position) throws NoDataException {
133 throw NoDataException.INSTANCE;
163 @NotNull final SourcePosition position) throws NoDataException {
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
AbstractUnivariateRealOptimizer.java 26 import org.apache.commons.math.exception.NoDataException;
87 * @throws NoDataException if no result has been computed
93 throw new NoDataException();
100 throw new NoDataException();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
MicrosphereInterpolatingFunction.java 26 import org.apache.commons.math.exception.NoDataException;
145 * @throws NoDataException if there are no data (xval null or zero length)
152 throws DimensionMismatchException, NoDataException {
154 throw new NoDataException();
SmoothingPolynomialBicubicSplineInterpolator.java 20 import org.apache.commons.math.exception.NoDataException;
79 throw new NoDataException();
BicubicSplineInterpolator.java 23 import org.apache.commons.math.exception.NoDataException;
42 throw new NoDataException();
TricubicSplineInterpolator.java 20 import org.apache.commons.math.exception.NoDataException;
41 throw new NoDataException();
BicubicSplineInterpolatingFunction.java 22 import org.apache.commons.math.exception.NoDataException;
90 * @throws NoDataException if any of the arrays has zero length.
103 throw new NoDataException();
TricubicSplineInterpolatingFunction.java 21 import org.apache.commons.math.exception.NoDataException;
139 * @throws NoDataException if any of the arrays has zero length.
161 throw new NoDataException();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunction.java 23 import org.apache.commons.math.exception.NoDataException;
62 * @throws NoDataException if c is empty
68 throw new NoDataException(LocalizedFormats.EMPTY_POLYNOMIALS_COEFFICIENTS_ARRAY);
121 * @throws NoDataException if coefficients is empty
127 throw new NoDataException(LocalizedFormats.EMPTY_POLYNOMIALS_COEFFICIENTS_ARRAY);
230 * @throws NoDataException if coefficients is empty
236 throw new NoDataException(LocalizedFormats.EMPTY_POLYNOMIALS_COEFFICIENTS_ARRAY);
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliCodeFragmentFactoryTest.java 41 import com.intellij.debugger.NoDataException;
108 public void testCompletion() throws NoDataException {
203 public void testRegisterType() throws NoDataException {
SmaliPositionManagerTest.java 35 import com.intellij.debugger.NoDataException;
106 public void testGetSourcePosition() throws NoDataException {
121 public void testGetAllClasses() throws NoDataException {

Completed in 348 milliseconds