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

  /external/jsr305/ri/src/main/java/javax/annotation/meta/
When.java 7 * In particular, an issues should be reported if an ALWAYS or MAYBE value is
8 * used where a NEVER value is required, or if a NEVER or MAYBE value is used
19 MAYBE,
  /external/jsr305/ri/src/main/java/javax/annotation/
CheckForNull.java 12 @Nonnull(when = When.MAYBE)
CheckForSigned.java 20 @Nonnegative(when = When.MAYBE)
Tainted.java 12 @Untainted(when = When.MAYBE)
  /external/proguard/src/proguard/evaluation/value/
UnknownIntegerValue.java 183 return MAYBE;
188 return MAYBE;
193 return MAYBE;
IdentifiedReferenceValue.java 56 return this.equals(other) ? ALWAYS : MAYBE;
Value.java 31 public static final int MAYBE = 0;
ReferenceValue.java 85 mayBeNull ? MAYBE :
118 mayBeNull ? MAYBE :
155 return MAYBE;
175 return MAYBE;
183 MAYBE;
234 // If this type is null, the generalization is the other type, maybe null.
240 // If the other type is null, the generalization is this type, maybe null.
248 // If the two types are equal, the generalization remains the same, maybe null.
414 * @return <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
418 return this.type == null && other.type == null ? ALWAYS : MAYBE;
    [all...]
SpecificIntegerValue.java 319 return this.equals(other) ? ALWAYS : MAYBE;
324 return this.equals(other) ? NEVER : MAYBE;
329 return this.equals(other) ? ALWAYS : MAYBE;
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
Test.java 24 public void foo5(@SlashedClassName(when=When.MAYBE) String foo) {
  /external/proguard/lib/
proguard.jar 

Completed in 164 milliseconds