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

1 2

  /external/guava/guava-tests/test/com/google/common/base/
AsciiTest.java 37 private static final String LOWER = "abcdefghijklmnopqrstuvwxyz";
41 assertEquals(LOWER, Ascii.toLowerCase(UPPER));
42 assertSame(LOWER, Ascii.toLowerCase(LOWER));
48 assertEquals(UPPER, Ascii.toUpperCase(LOWER));
65 for (char c : LOWER.toCharArray()) {
127 assertTrue(Ascii.equalsIgnoreCase(LOWER, UPPER));
128 assertTrue(Ascii.equalsIgnoreCase(UPPER, LOWER));
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
CollationKey.java 105 * Lower bound
108 public static final int LOWER = 0;
377 * between upper and lower bounds. For example, if bounds are produced
378 * for a sortkey of string "smith", strings between upper and lower
396 * @param boundType Mode of bound required. It can be BoundMode.LOWER, which
397 * produces a lower inclusive bound, BoundMode.UPPER, that
461 case BoundMode.LOWER: // = 0
462 // Lower bound just gets terminated. No extra bytes
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewWordLimitsTest.java 134 final String LOWER = "njlj";
141 verifyWordLimits(LOWER, 1, 0, 4);
263 // Valid selection - Letter, Lower
  /libcore/luni/src/main/java/java/util/
TreeMap.java 205 LOWER,
223 case LOWER:
232 return LOWER;
286 case LOWER:
306 * nearest nodes, one lower and one higher.
311 case LOWER:
327 } else { // comparison > 0, nearest.key is lower
329 case LOWER:
636 return immutableCopy(find(key, LOWER));
640 Entry<K, V> entry = find(key, LOWER);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCaseProps.java 210 if(getTypeFromProps(props)==LOWER) {
226 if(getTypeFromProps(props)==LOWER) {
460 /** @return NONE, LOWER, UPPER, TITLE */
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 272 macro won't warn if the VALUE is unsigned and the LOWER bound is
273 zero, as it would e.g. with "VALUE >= 0 && ...". Note the LOWER
274 bound *is* evaluated twice, and LOWER must not be greater than
277 #define IN_RANGE(VALUE, LOWER, UPPER) \
278 ((unsigned HOST_WIDE_INT) (VALUE) - (unsigned HOST_WIDE_INT) (LOWER) \
279 <= (unsigned HOST_WIDE_INT) (UPPER) - (unsigned HOST_WIDE_INT) (LOWER))
672 between 2.95 and 3.0. Let's use 3.0 as the lower bound for now. */
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_exif.c 35 #define LOWER(a) ((a) & 0xFFFF)
  /external/v8/src/compiler/
simplified-lowering.cc 42 // 2.) LOWER: perform lowering for all {Simplified} nodes by replacing some
48 LOWER
96 phase_ = LOWER;
146 bool lower() { return phase_ == LOWER; } function in class:v8::internal::compiler::RepresentationSelector
274 if (!lower()) {
321 if (lower()) {
410 // For now, we assume that all JS operators were too complex to lower
413 // TODO(turbofan): it might be possible to lower some JSOperators here,
426 if (lower()) {
    [all...]
  /device/lge/hammerhead/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_exif.c 37 #define LOWER(a) ((a) & 0xFFFF)
  /device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_exif.c 37 #define LOWER(a) ((a) & 0xFFFF)
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_exif.c 37 #define LOWER(a) ((a) & 0xFFFF)
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationAPITest.java 1163 CollationKey lower local
1186 CollationKey lower = key.getBound(CollationKey.BoundMode.LOWER, local
    [all...]
  /external/eigen/blas/
level2_impl.h 88 func[TR | (UP << 2) | (NUNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|0, false,RowMajor>::run);
89 func[ADJ | (UP << 2) | (NUNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|0, Conj, RowMajor>::run);
91 func[NOTR | (LO << 2) | (NUNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|0, false,ColMajor>::run);
96 func[TR | (UP << 2) | (UNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|UnitDiag,false,RowMajor>::run);
97 func[ADJ | (UP << 2) | (UNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|UnitDiag,Conj, RowMajor>::run);
99 func[NOTR | (LO << 2) | (UNIT << 3)] = (internal::triangular_solve_vector<Scalar,Scalar,int,OnTheLeft, Lower|UnitDiag,false,ColMajor>::run);
143 func[TR | (UP << 2) | (NUNIT << 3)] = (internal::triangular_matrix_vector_product<int,Lower|0, Scalar,false,Scalar,false,RowMajor>::run);
144 func[ADJ | (UP << 2) | (NUNIT << 3)] = (internal::triangular_matrix_vector_product<int,Lower|0, Scalar,Conj, Scalar,false,RowMajor>::run);
146 func[NOTR | (LO << 2) | (NUNIT << 3)] = (internal::triangular_matrix_vector_product<int,Lower|0, Scalar,false,Scalar,false,ColMajor>::run);
151 func[TR | (UP << 2) | (UNIT << 3)] = (internal::triangular_matrix_vector_product<int,Lower|UnitDiag,Scalar,false,Scalar,false,RowMajor>::run)
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicBLAS.java 207 @IntDef({UPPER, LOWER})
230 public static final int LOWER = 122;
265 if (Uplo != UPPER && Uplo != LOWER) {
596 * @param Uplo Specifies whether the matrix is an upper or lower triangular matrix.
615 * @param Uplo Specifies whether the matrix is an upper or lower triangular matrix.
634 * @param Uplo Specifies whether the matrix is an upper or lower triangular matrix.
653 * @param Uplo Specifies whether the matrix is an upper or lower triangular matrix.
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicBLAS.java 214 @IntDef({UPPER, LOWER})
237 public static final int LOWER = 122;
272 if (Uplo != UPPER && Uplo != LOWER) {
683 * @param Uplo Specifies whether the matrix is an upper or lower triangular matrix.
710 * @param Uplo Specifies whether the matrix is an upper or lower triangular matrix.
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicBLAS.java 50 ScriptIntrinsicBLAS.LOWER,
191 Uplo != ScriptIntrinsicBLAS.LOWER) {
    [all...]
  /external/cblas/testing/
c_cblat2.f     [all...]
c_cblat3.f     [all...]
c_dblat2.f     [all...]
c_dblat3.f     [all...]
c_sblat2.f     [all...]
c_sblat3.f     [all...]
c_zblat2.f     [all...]
c_zblat3.f     [all...]
  /external/eigen/blas/testing/
cblat2.f     [all...]

Completed in 1690 milliseconds

1 2