HomeSort by relevance Sort by last modified time
    Searched refs:When (Results 1 - 25 of 825) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jsr305/ri/src/main/java/javax/annotation/meta/
When.java 13 public enum When {
  /external/jsr305/ri/src/main/java/javax/annotation/
Nonnull.java 9 import javax.annotation.meta.When;
15 When when() default When.ALWAYS;
19 public When forConstantValue(Nonnull qualifierqualifierArgument,
22 return When.NEVER;
23 return When.ALWAYS;
PropertyKey.java 8 import javax.annotation.meta.When;
14 When when() default When.ALWAYS;
Untainted.java 8 import javax.annotation.meta.When;
14 When when() default When.ALWAYS;
Nonnegative.java 9 import javax.annotation.meta.When;
16 When when() default When.ALWAYS;
20 public When forConstantValue(Nonnegative annotation, Object v) {
22 return When.NEVER;
35 return When.NEVER;
37 return When.ALWAYS;
RegEx.java 11 import javax.annotation.meta.When;
23 When when() default When.ALWAYS;
27 public When forConstantValue(RegEx annotation, Object value) {
29 return When.NEVER;
34 return When.NEVER;
36 return When.ALWAYS;
Syntax.java 8 import javax.annotation.meta.When;
43 When when() default When.ALWAYS;
CheckForNull.java 8 import javax.annotation.meta.When;
12 @Nonnull(when = When.MAYBE)
CheckForSigned.java 8 import javax.annotation.meta.When;
20 @Nonnegative(when = When.MAYBE)
Detainted.java 8 import javax.annotation.meta.When;
12 @Untainted(when = When.ALWAYS)
Nullable.java 8 import javax.annotation.meta.When;
12 @Nonnull(when = When.UNKNOWN)
Signed.java 8 import javax.annotation.meta.When;
14 @Nonnegative(when = When.UNKNOWN)
Tainted.java 8 import javax.annotation.meta.When;
12 @Untainted(when = When.MAYBE)
CheckReturnValue.java 9 import javax.annotation.meta.When;
16 When when() default When.ALWAYS;
MatchesPattern.java 10 import javax.annotation.meta.When;
22 public When forConstantValue(MatchesPattern annotation, Object value) {
25 return When.ALWAYS;
26 return When.NEVER;
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/
SlashedClassName.java 8 import javax.annotation.meta.When;
14 When when() default When.ALWAYS;
DottedClassName.java 8 import javax.annotation.meta.When;
11 @SlashedClassName(when=When.NEVER)
  /external/jsr305/sampleUses/src/main/java/
CreditCardNumber.java 9 import javax.annotation.meta.When;
18 public When forConstantValue(CreditCardNumber annotation, Object v) {
20 return When.NEVER;
23 return When.ALWAYS;
24 return When.NEVER;
FixedLengthString.java 7 import javax.annotation.meta.When;
17 public When forConstantValue(FixedLengthString annotation, Object v) {
19 return When.NEVER;
22 return When.ALWAYS;
23 return When.NEVER;
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
ApkPreconditionCheck.java 27 mWhen = When.BEFORE;
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
PrettyPrintingSteps.java 31 import org.jbehave.core.annotations.When;
59 @When("the {class|compilation unit} is parsed by the Java parser")
64 @When("the expression is parsed by the Java parser")
69 @When("the block is parsed by the Java parser")
74 @When("the statement is parsed by the Java parser")
79 @When("the import is parsed by the Java parser")
84 @When("the annotation is parsed by the Java parser")
89 @When("the annotation body declaration is parsed by the Java parser")
94 @When("the class body declaration is parsed by the Java parser")
99 @When("the interface body declaration is parsed by the Java parser"
    [all...]
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
TestDefaults.java 3 import javax.annotation.meta.When;
16 public void foo3(@SlashedClassName(when=When.UNKNOWN) String c) {
Test.java 3 import javax.annotation.meta.When;
24 public void foo5(@SlashedClassName(when=When.MAYBE) String foo) {
27 public void foo6(@SlashedClassName(when=When.UNKNOWN) String foo) {
  /build/kati/testcase/
semicolon.mk 0 # When a line only has semicolons after variables are expanded, they
  /external/curl/docs/cmdline-opts/
show-error.d 3 Help: Show error even when -s is used
5 When used with --silent, it makes curl show an error message if it fails.

Completed in 1226 milliseconds

1 2 3 4 5 6 7 8 91011>>