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

1 2 3 4 5

  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417Compaction.h 11 enum Compaction { AUTO, TEXT, BYTES, NUMERIC };
  /libcore/ojluni/src/main/java/java/sql/
Types.java 96 * <code>NUMERIC</code>.
98 public final static int NUMERIC = 2;
  /external/python/cpython2/Lib/lib-tk/
Tkconstants.py 46 NUMERIC='numeric'
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Tkconstants.py 46 NUMERIC='numeric'
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkconstants.py 46 NUMERIC='numeric'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 46 NUMERIC='numeric'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkconstants.py 46 NUMERIC='numeric'
  /packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
TelephonyProviderTest.java 172 contentValues.put(Carriers.NUMERIC, insertNumeric);
182 contentValues2.put(Carriers.NUMERIC, insertNumeric2);
198 final String selection = Carriers.NUMERIC + "=?";
234 contentValues.put(Carriers.NUMERIC, insertNumeric);
246 final String selection = Carriers.NUMERIC + "=?";
266 final String selectionToDelete = Carriers.NUMERIC + "=?";
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 51 assertEquals(NUMERIC, 2);
  /hardware/ril/reference-ril/
atchannel.h 48 NUMERIC, /* a single intermediate response starting with a 0-9 */
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateTimePatternGenerator.java 759 * so as to only preserve the difference between string and numeric form. So
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateTimePatternGenerator.java 769 * so as to only preserve the difference between string and numeric form. So
    [all...]
  /external/icu/icu4c/source/i18n/
collationsettings.h 40 * Options bit 1: Numeric collation.
43 * Treat digit sequences as numbers with CE sequences in numeric order,
46 static const int32_t NUMERIC = 2;
211 return (options & NUMERIC) != 0;
collationfastlatin.cpp 99 if(digitsAreReordered || (settings.options & CollationSettings::NUMERIC) != 0) {
141 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings::NUMERIC) != 0) {
172 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings::NUMERIC) != 0) {
481 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings::NUMERIC) != 0) {
518 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings::NUMERIC) != 0) {
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterTest.java 385 * Tests for numeric characters
391 errln("Numeric value of 0x00BC expected to be -2");
398 errln("Numeric value of " + (char)i + " expected to be " +
406 errln("Numeric value of " + (char)i + " expected to be " +
415 errln("Numeric value of " + (char)i + " expected to be " +
427 errln("Numeric value of \\u" +
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterTest.java 384 * Tests for numeric characters
390 errln("Numeric value of 0x00BC expected to be -2");
397 errln("Numeric value of " + (char)i + " expected to be " +
405 errln("Numeric value of " + (char)i + " expected to be " +
414 errln("Numeric value of " + (char)i + " expected to be " +
426 errln("Numeric value of \\u" +
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
ApnDatabase.java 65 Telephony.Carriers.NUMERIC + " TEXT," +
96 Telephony.Carriers.NUMERIC, // 6
256 row.put(Telephony.Carriers.NUMERIC,
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
MeasureUnitTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
MeasureUnitTest.java     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationSettings.java 32 * Options bit 1: Numeric collation.
35 * Treat digit sequences as numbers with CE sequences in numeric order,
38 public static final int NUMERIC = 2;
439 return (options & NUMERIC) != 0;
CollationFastLatin.java 61 // (If we supported numeric collation, then digits would have to have long primaries
281 if(digitsAreReordered || (settings.options & CollationSettings.NUMERIC) != 0) {
318 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings.NUMERIC) != 0) {
354 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings.NUMERIC) != 0) {
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationSettings.java 30 * Options bit 1: Numeric collation.
33 * Treat digit sequences as numbers with CE sequences in numeric order,
36 public static final int NUMERIC = 2;
437 return (options & NUMERIC) != 0;
CollationFastLatin.java 57 // (If we supported numeric collation, then digits would have to have long primaries
277 if(digitsAreReordered || (settings.options & CollationSettings.NUMERIC) != 0) {
314 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings.NUMERIC) != 0) {
350 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings.NUMERIC) != 0) {
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 43 import static android.provider.Telephony.Carriers.NUMERIC;
200 CARRIERS_UNIQUE_FIELDS.add(NUMERIC);
224 NUMERIC + " TEXT DEFAULT ''," +
1272 String numeric = mcc + mnc; local
2239 String numeric = initialValues.getAsString(NUMERIC); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
ApnEditorActivity.java 153 Telephony.Carriers.NUMERIC, // 5
262 String numeric = PhoneUtils.get(mSubId).getSimOperatorNumeric(); local
264 if (numeric != null && numeric.length() > 4) {
266 String mcc = numeric.substring(0, 3);
268 String mnc = numeric.substring(3);
381 values.put(Telephony.Carriers.NUMERIC, mcc + mnc);

Completed in 4102 milliseconds

1 2 3 4 5