/external/jsr305/ri/src/main/java/javax/annotation/ |
ParametersAreNullableByDefault.java | 16 * annotation of the corresponding parameter in the superclass applies) 17 * <li> there is a default parameter annotation applied to a more tightly nested 27 @TypeQualifierDefault(ElementType.PARAMETER)
|
/external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/ |
ParametersAreSlashedByDefault.java | 10 @TypeQualifierDefault(ElementType.PARAMETER)
|
/frameworks/base/core/java/android/annotation/ |
SuppressLint.java | 22 import static java.lang.annotation.ElementType.PARAMETER; 30 @Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
|
/libcore/luni/src/main/java/java/lang/ |
FindBugsSuppressWarnings.java | 23 import static java.lang.annotation.ElementType.PARAMETER; 36 @Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
|
SuppressWarnings.java | 36 ElementType.PARAMETER, ElementType.CONSTRUCTOR,
|
/sdk/annotations/src/android/annotation/ |
SuppressLint.java | 22 import static java.lang.annotation.ElementType.PARAMETER; 30 @Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
|
/frameworks/support/annotations/src/android/support/annotation/ |
IntDef.java | 25 import static java.lang.annotation.ElementType.PARAMETER;
|
StringDef.java | 24 import static java.lang.annotation.ElementType.PARAMETER;
|
/external/chromium_org/v8/src/ |
variables.h | 35 // A slot in the parameter section on the stack. index() is the 36 // parameter index, counting left-to-right. The receiver is index -1; 37 // the first parameter is index 0. 38 PARAMETER, 94 bool IsParameter() const { return location_ == PARAMETER; }
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
MediaType.java | 31 private static final Pattern PARAMETER = Pattern.compile( 57 Matcher parameter = PARAMETER.matcher(string); local 58 for (int s = typeSubtype.end(); s < string.length(); s = parameter.end()) { 59 parameter.region(s, string.length()); 60 if (!parameter.lookingAt()) return null; // This is not a well-formed media type. 62 String name = parameter.group(1); 65 charset = parameter.group(2) != null 66 ? parameter.group(2) // Value is a token. 67 : parameter.group(3); // Value is a quoted string [all...] |
/external/eigen/lapack/ |
dlapy2.f | 79 PARAMETER ( ZERO = 0.0D0 ) 81 PARAMETER ( ONE = 1.0D0 )
|
slapy2.f | 79 PARAMETER ( ZERO = 0.0E0 ) 81 PARAMETER ( ONE = 1.0E0 )
|
dlapy3.f | 84 PARAMETER ( ZERO = 0.0D0 )
|
slapy3.f | 84 PARAMETER ( ZERO = 0.0E0 )
|
ilaclc.f | 97 PARAMETER ( ZERO = (0.0E+0, 0.0E+0) )
|
ilaclr.f | 97 PARAMETER ( ZERO = (0.0E+0, 0.0E+0) )
|
iladlc.f | 97 PARAMETER ( ZERO = 0.0D+0 )
|
iladlr.f | 97 PARAMETER ( ZERO = 0.0D+0 )
|
ilaslc.f | 97 PARAMETER ( ZERO = 0.0D+0 )
|
ilaslr.f | 97 PARAMETER ( ZERO = 0.0E+0 )
|
ilazlc.f | 97 PARAMETER ( ZERO = (0.0D+0, 0.0D+0) )
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/ |
ElementTypeTest.java | 44 assertSame(ElementType.PARAMETER, ElementType.valueOf("PARAMETER"));
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
ConstructorTest.java | 36 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER}) 41 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER}) 46 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER}) 51 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER}) 285 assertEquals("Incorrect parameter returned", 0, types.length); 298 assertTrue("Incorrect parameter returned", types[0].equals(parms[0])); 311 assertEquals("Incorrect parameter returned", 0, types.length); 322 assertTrue("Incorrect parameter returned", types[0].equals(parms[0])); 333 assertEquals("Wrong number of parameter types returned", 2, 336 assertEquals("Wrong number of parameter types returned", "T" [all...] |
/external/eigen/blas/testing/ |
cblat2.f | 69 PARAMETER ( NIN = 5 ) 71 PARAMETER ( NSUBS = 17 ) 73 PARAMETER ( ZERO = ( 0.0, 0.0 ), ONE = ( 1.0, 0.0 ) ) 75 PARAMETER ( RZERO = 0.0, RHALF = 0.5, RONE = 1.0 ) 77 PARAMETER ( NMAX = 65, INCMAX = 2 ) 79 PARAMETER ( NINMAX = 7, NIDMAX = 9, NKBMAX = 7, 150 * Read and check the parameter values for the tests. 372 $ 'OLLOWING PARAMETER VALUES WILL BE USED:' ) 413 PARAMETER ( ZERO = ( 0.0, 0.0 ), HALF = ( 0.5, 0.0 ) ) 415 PARAMETER ( RZERO = 0.0 [all...] |
zblat2.f | 69 PARAMETER ( NIN = 5 ) 71 PARAMETER ( NSUBS = 17 ) 73 PARAMETER ( ZERO = ( 0.0D0, 0.0D0 ), 76 PARAMETER ( RZERO = 0.0D0, RHALF = 0.5D0, RONE = 1.0D0 ) 78 PARAMETER ( NMAX = 65, INCMAX = 2 ) 80 PARAMETER ( NINMAX = 7, NIDMAX = 9, NKBMAX = 7, 151 * Read and check the parameter values for the tests. 373 $ 'OLLOWING PARAMETER VALUES WILL BE USED:' ) 414 PARAMETER ( ZERO = ( 0.0D0, 0.0D0 ), 417 PARAMETER ( RZERO = 0.0D0 [all...] |