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

1 2 3 4 5 6 7 8 91011

  /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
9 * where an ALWAYS value is required.
15 ALWAYS,
  /libcore/ojluni/src/main/java/java/time/format/
SignStyle.java 86 * Style to always output the sign, where zero will output '+'.
92 ALWAYS,
108 * Style to always output the sign if the value exceeds the pad width.
109 * A negative value will always output the '-' sign.
130 case 1: // ALWAYS
  /external/jsr305/ri/src/main/java/javax/annotation/
Nonnull.java 15 When when() default When.ALWAYS;
23 return When.ALWAYS;
Detainted.java 12 @Untainted(when = When.ALWAYS)
PropertyKey.java 14 When when() default When.ALWAYS;
Untainted.java 14 When when() default When.ALWAYS;
Nonnegative.java 16 When when() default When.ALWAYS;
37 return When.ALWAYS;
RegEx.java 23 When when() default When.ALWAYS;
36 return When.ALWAYS;
Syntax.java 43 When when() default When.ALWAYS;
CheckReturnValue.java 16 When when() default When.ALWAYS;
MatchesPattern.java 25 return When.ALWAYS;
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestNumberParser.java 273 // always
274 {"0", 1, 2, SignStyle.ALWAYS, 0, null},
275 {"5", 1, 2, SignStyle.ALWAYS, 0, null},
276 {"50", 1, 2, SignStyle.ALWAYS, 0, null},
277 {"500", 1, 2, SignStyle.ALWAYS, 0, null},
278 {"-0", 1, 2, SignStyle.ALWAYS, 0, null},
279 {"-5", 1, 2, SignStyle.ALWAYS, 2, -5},
280 {"-50", 1, 2, SignStyle.ALWAYS, 3, -50},
281 {"-500", 1, 2, SignStyle.ALWAYS, 3, -50},
282 {"-AAA", 1, 2, SignStyle.ALWAYS, 1, null}
    [all...]
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/
SlashedClassName.java 14 When when() default When.ALWAYS;
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/util/
OptionHelperTest.java 43 importance = Importance.ALWAYS)
47 importance = Importance.ALWAYS)
52 importance = Importance.ALWAYS)
56 importance = Importance.ALWAYS)
60 importance = Importance.ALWAYS)
  /external/proguard/src/proguard/optimize/evaluation/
TracedBranchUnit.java 44 if (conditional == Value.ALWAYS)
46 // Always branch.
  /libcore/ojluni/src/test/java/time/tck/java/time/format/
TCKSignStyle.java 93 {LocalDate.of(0, 10, 2), SignStyle.ALWAYS, null, "+00"},
94 {LocalDate.of(2001, 10, 2), SignStyle.ALWAYS, null, "+2001"},
95 {LocalDate.of(-2001, 10, 2), SignStyle.ALWAYS, null, "-2001"},
110 {LocalDate.of(20001, 10, 2), SignStyle.ALWAYS, DateTimeException.class, ""},
  /tools/loganalysis/src/com/android/loganalysis/util/config/
Option.java 41 /** the option should always be treated as important */
42 ALWAYS;
  /tools/tradefederation/core/src/com/android/tradefed/config/
Option.java 40 /** the option should always be treated as important */
41 ALWAYS;
  /tools/tradefederation/core/src/com/android/tradefed/command/
CommandOptions.java 33 importance = Importance.ALWAYS)
37 importance = Importance.ALWAYS)
50 importance = Importance.ALWAYS
57 importance = Importance.ALWAYS)
79 importance = Importance.ALWAYS)
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 38 #if !defined(OPERATOR) && !defined(ALWAYS)
39 #error "neither OPERATOR nor ALWAYS is defined!"
90 #ifdef ALWAYS
147 #undef ALWAYS
  /tools/tradefederation/core/prod-tests/src/com/android/media/tests/
VideoMultimeterRunner.java 40 importance = Importance.ALWAYS, mandatory = true)
45 importance = Importance.ALWAYS)
50 importance = Importance.ALWAYS)
  /art/tools/dexfuzz/src/dexfuzz/
Log.java 33 ALWAYS
60 public static void always(String msg) { method in class:Log
  /external/jsr305/sampleUses/src/main/java/
CreditCardNumber.java 23 return When.ALWAYS;
FixedLengthString.java 22 return When.ALWAYS;
  /external/proguard/src/proguard/evaluation/value/
IdentifiedArrayReferenceValue.java 108 return this.equals(other) ? ALWAYS :

Completed in 770 milliseconds

1 2 3 4 5 6 7 8 91011