OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RSIllegalArgumentException
(Results
1 - 25
of
53
) sorted by null
1
2
3
/frameworks/base/graphics/java/android/renderscript/
RSIllegalArgumentException.java
24
public class
RSIllegalArgumentException
extends RSRuntimeException {
25
public
RSIllegalArgumentException
(String string) {
ScriptIntrinsic3DLUT.java
52
throw new
RSIllegalArgumentException
("Element must be compatible with uchar4.");
69
throw new
RSIllegalArgumentException
("LUT must be 3d.");
73
throw new
RSIllegalArgumentException
("LUT element type must match.");
ScriptIntrinsicHistogram.java
53
throw new
RSIllegalArgumentException
("Unsuported element type.");
77
throw new
RSIllegalArgumentException
(
82
throw new
RSIllegalArgumentException
("Output type must be U32 or I32.");
101
throw new
RSIllegalArgumentException
("Coefficient may not be negative.");
104
throw new
RSIllegalArgumentException
("Sum of coefficients must be 1.0 or less.");
132
throw new
RSIllegalArgumentException
("Output type must be U32 or I32.");
139
throw new
RSIllegalArgumentException
("Output must be 1D, 256 elements.");
156
throw new
RSIllegalArgumentException
("Output vector size must be one.");
160
throw new
RSIllegalArgumentException
("Output type must be U32 or I32.");
BaseObj.java
67
throw new
RSIllegalArgumentException
("Invalid object.");
84
throw new
RSIllegalArgumentException
(
88
throw new
RSIllegalArgumentException
(
92
throw new
RSIllegalArgumentException
(
ScriptIntrinsicBlur.java
50
throw new
RSIllegalArgumentException
("Unsuported element type.");
78
throw new
RSIllegalArgumentException
("Radius out of range (0 < r <= 25).");
ScriptIntrinsicLUT.java
64
throw new
RSIllegalArgumentException
("Index out of range (0-255).");
67
throw new
RSIllegalArgumentException
("Value out of range (0-255).");
Allocation.java
257
throw new
RSIllegalArgumentException
("Unknown usage specified.");
266
throw new
RSIllegalArgumentException
("Invalid usage combination.");
298
throw new
RSIllegalArgumentException
(
307
throw new
RSIllegalArgumentException
(
316
throw new
RSIllegalArgumentException
(
324
throw new
RSIllegalArgumentException
(
341
throw new
RSIllegalArgumentException
(
389
throw new
RSIllegalArgumentException
("Source must be exactly one usage type.");
406
throw new
RSIllegalArgumentException
(
430
throw new
RSIllegalArgumentException
(
[
all
...]
Type.java
253
throw new
RSIllegalArgumentException
("Values of less than 1 for Dimension X are not valid.");
261
throw new
RSIllegalArgumentException
("Values of less than 1 for Dimension Y are not valid.");
269
throw new
RSIllegalArgumentException
("Values of less than 1 for Dimension Z are not valid.");
299
throw new
RSIllegalArgumentException
(
ProgramVertex.java
112
throw new
RSIllegalArgumentException
("Max input count exceeded.");
115
throw new
RSIllegalArgumentException
("Complex elements not allowed.");
AllocationAdapter.java
102
throw new
RSIllegalArgumentException
("Attempting to set negative lod (" + lod + ").");
111
throw new
RSIllegalArgumentException
("Attempting to set lod (" + lod + ") out of range.");
167
throw new
RSIllegalArgumentException
("Cannot set null face.");
RenderScriptGL.java
97
throw new
RSIllegalArgumentException
("Minimum value provided out of range.");
100
throw new
RSIllegalArgumentException
("preferred must be >= Minimum.");
162
throw new
RSIllegalArgumentException
("Quality out of 0-1 range.");
Element.java
229
throw new
RSIllegalArgumentException
("Element contains no sub-elements");
232
throw new
RSIllegalArgumentException
("Illegal sub-element index");
245
throw new
RSIllegalArgumentException
("Element contains no sub-elements");
248
throw new
RSIllegalArgumentException
("Illegal sub-element index");
262
throw new
RSIllegalArgumentException
("Element contains no sub-elements");
265
throw new
RSIllegalArgumentException
("Illegal sub-element index");
278
throw new
RSIllegalArgumentException
("Element contains no sub-elements");
281
throw new
RSIllegalArgumentException
("Illegal sub-element index");
875
throw new
RSIllegalArgumentException
("Vector size out of range 2-4.");
898
throw new
RSIllegalArgumentException
("Cannot create vector of "
[
all
...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RSIllegalArgumentException.java
24
public class
RSIllegalArgumentException
extends RSRuntimeException {
25
public
RSIllegalArgumentException
(String string) {
ExceptionThunker.java
23
if (e instanceof android.renderscript.
RSIllegalArgumentException
) {
24
return new android.support.v8.renderscript.
RSIllegalArgumentException
(e.getMessage());
ScriptIntrinsic3DLUT.java
57
throw new
RSIllegalArgumentException
("Element must be compatible with uchar4.");
76
throw new
RSIllegalArgumentException
("LUT must be 3d.");
80
throw new
RSIllegalArgumentException
("LUT element type must match.");
Allocation.java
225
throw new
RSIllegalArgumentException
("Unknown usage specified.");
234
throw new
RSIllegalArgumentException
("Invalid usage combination.");
268
throw new
RSIllegalArgumentException
(
277
throw new
RSIllegalArgumentException
(
286
throw new
RSIllegalArgumentException
(
294
throw new
RSIllegalArgumentException
(
306
throw new
RSIllegalArgumentException
(
331
throw new
RSIllegalArgumentException
("Source must be exactly one usage type.");
346
throw new
RSIllegalArgumentException
(
368
throw new
RSIllegalArgumentException
(
[
all
...]
ScriptIntrinsicBlur.java
54
throw new
RSIllegalArgumentException
("Unsuported element type.");
82
throw new
RSIllegalArgumentException
("Radius out of range (0 < r <= 25).");
Type.java
229
throw new
RSIllegalArgumentException
("Values of less than 1 for Dimension X are not valid.");
237
throw new
RSIllegalArgumentException
("Values of less than 1 for Dimension Y are not valid.");
245
throw new
RSIllegalArgumentException
("Values of less than 1 for Dimension Z are not valid.");
275
throw new
RSIllegalArgumentException
("Only NV21 and YV12 are supported..");
ScriptIntrinsicLUT.java
70
throw new
RSIllegalArgumentException
("Index out of range (0-255).");
73
throw new
RSIllegalArgumentException
("Value out of range (0-255).");
/cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
SurfaceConfigTest.java
20
import android.renderscript.
RSIllegalArgumentException
;
33
fail("should throw
RSIllegalArgumentException
.");
34
} catch (
RSIllegalArgumentException
e) {
39
fail("should throw
RSIllegalArgumentException
.");
40
} catch (
RSIllegalArgumentException
e) {
45
fail("should throw
RSIllegalArgumentException
.");
46
} catch (
RSIllegalArgumentException
e) {
58
fail("should throw
RSIllegalArgumentException
.");
59
} catch (
RSIllegalArgumentException
e) {
64
fail("should throw
RSIllegalArgumentException
.")
[
all
...]
BaseObjTest.java
22
import android.renderscript.
RSIllegalArgumentException
;
35
} catch (
RSIllegalArgumentException
e) {
45
} catch (
RSIllegalArgumentException
e) {
56
} catch (
RSIllegalArgumentException
e) {
FontTest.java
25
import android.renderscript.
RSIllegalArgumentException
;
39
} catch (
RSIllegalArgumentException
e) {
48
} catch (
RSIllegalArgumentException
e) {
58
} catch (
RSIllegalArgumentException
e) {
/cts/tests/tests/renderscript/src/android/renderscript/cts/
ExceptionTest.java
19
import android.renderscript.
RSIllegalArgumentException
;
29
throw new
RSIllegalArgumentException
("IAE");
30
} catch (
RSIllegalArgumentException
e) {
BaseObjTest.java
22
import android.renderscript.
RSIllegalArgumentException
;
37
} catch (
RSIllegalArgumentException
e) {
47
} catch (
RSIllegalArgumentException
e) {
53
} catch (
RSIllegalArgumentException
e) {
FieldPackerTest.java
38
import android.renderscript.
RSIllegalArgumentException
;
144
fail("should throw
RSIllegalArgumentException
.");
145
} catch (
RSIllegalArgumentException
e) {
153
fail("should throw
RSIllegalArgumentException
.");
154
} catch (
RSIllegalArgumentException
e) {
164
fail("should throw
RSIllegalArgumentException
.");
165
} catch (
RSIllegalArgumentException
e) {
Completed in 1811 milliseconds
1
2
3