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

1 2 3

  /libcore/luni/src/main/java/java/sql/
Types.java 129 * The type code that identifies the SQL type {@code NUMERIC}.
131 public static final int NUMERIC = 2;
  /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'
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
adm_writer_unittest.py 116 VALUEON NUMERIC 1
117 VALUEOFF NUMERIC 0
133 VALUEON NUMERIC 1
134 VALUEOFF NUMERIC 0
257 PART !!IntPolicy_Part NUMERIC
274 PART !!IntPolicy_Part NUMERIC
345 NAME !!ProxyServerDisabled_DropDown VALUE NUMERIC 0
346 NAME !!ProxyServerAutoDetect_DropDown VALUE NUMERIC 1
367 NAME !!ProxyServerDisabled_DropDown VALUE NUMERIC 0
368 NAME !!ProxyServerAutoDetect_DropDown VALUE NUMERIC
    [all...]
  /external/icu/icu4c/source/i18n/
collationsettings.h 36 * Options bit 1: Numeric collation.
39 * Treat digit sequences as numbers with CE sequences in numeric order,
42 static const int32_t NUMERIC = 2;
190 return (options & NUMERIC) != 0;
collationfastlatin.cpp 81 if((settings.options & CollationSettings::NUMERIC) != 0) {
124 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings::NUMERIC) != 0) {
155 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings::NUMERIC) != 0) {
465 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings::NUMERIC) != 0) {
502 if(c <= 0x39 && c >= 0x30 && (options & CollationSettings::NUMERIC) != 0) {
    [all...]
rulebasedcollator.cpp 420 option = CollationSettings::NUMERIC;
480 ownedSettings->setFlag(CollationSettings::NUMERIC, value, defaultSettings.options, errorCode);
565 UBool numeric = settings->isNumeric(); local
568 UTF16CollationIterator ci(data, numeric, varTop, varTop, varTop + len);
572 FCDUTF16CollationIterator ci(data, numeric, varTop, varTop, varTop + len);
998 UBool numeric = settings->isNumeric(); local
1117 UBool numeric = settings->isNumeric(); local
1214 UBool numeric = settings->isNumeric(); local
1331 UBool numeric = settings->isNumeric(); local
1433 UBool numeric = settings->isNumeric(); local
1491 UBool numeric = settings->isNumeric(); local
    [all...]
  /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 */
atchannel.c 254 case NUMERIC:
819 err = at_send_command_full (command, NUMERIC, NULL,
933 * Assumes AT+CMEE=1 (numeric) mode
  /frameworks/base/core/java/com/android/internal/widget/
PasswordEntryKeyboardHelper.java 57 private static final int NUMERIC = 0;
118 mNumericKeyboard = new PasswordEntryKeyboard(mContext, mLayouts[NUMERIC], width, height);
138 mNumericKeyboard = new PasswordEntryKeyboard(mContext, mLayouts[NUMERIC]);
169 mKeyboardView.setPreviewEnabled(false); // never show popup for numeric keypad
  /external/chromium_org/chrome/browser/history/android/
sqlite_cursor.h 39 NUMERIC = 2,
sqlite_cursor.cc 27 return SQLiteCursor::NUMERIC;
  /cts/tests/tests/widget/src/android/widget/cts/
DialerFilterTest.java 111 if (keymap.getKeyboardType() == KeyCharacterMap.NUMERIC) {
112 // "adg" in case of 12-key(NUMERIC) keyboard
130 if (keymap.getKeyboardType() == KeyCharacterMap.NUMERIC) {
131 // "adg" in case of 12-key(NUMERIC) keyboard
AutoCompleteTextViewTest.java 104 if (keymap.getKeyboardType() == KeyCharacterMap.NUMERIC) {
380 // "tes" in case of 12-key(NUMERIC) keyboard
405 // "that" in case of 12-key(NUMERIC) keyboard
427 // "test" in case of 12-key(NUMERIC) keyboard
496 // "numeric" in case of 12-key(NUMERIC) keyboard
501 return "numeric".equals(filter.getResult());
  /cts/tests/tests/text/src/android/text/method/cts/
PasswordTransformationMethodTest.java 124 if (keymap.getKeyboardType() == KeyCharacterMap.NUMERIC) {
125 // "HELLO" in case of 12-key(NUMERIC) keyboard
TextKeyListenerTest.java 178 * NUMERIC key board, text will be "g", else text will be "".
202 } else if (KeyCharacterMap.NUMERIC == keyType) {
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
BaseInputConnectionTest.java 231 if (keymap.getKeyboardType() == KeyCharacterMap.NUMERIC) {
232 // 'Q' in case of 12-key(NUMERIC) keyboard
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/database/
SQLiteCursor.java 155 case Types.NUMERIC:
  /external/chromium_org/third_party/sqlite/src/test/
collate5.test 34 # Mimic the SQLite 2 collation type NUMERIC.
35 db collate numeric numeric_collate
239 CREATE TABLE collate5t_cn(a COLLATE NUMERIC);
269 CREATE TABLE collate5t1(a COLLATE NOCASE, b COLLATE NUMERIC);
collate4.test 554 # Mimic the SQLite 2 collation type NUMERIC.
555 db collate numeric numeric_collate
563 # use indices constructed with built-in collation type numeric.
602 # Test that the index with collation type NUMERIC is not used.
605 CREATE INDEX collate4i1 ON collate4t1(a COLLATE NUMERIC);
626 CREATE TABLE collate4t1(a COLLATE TEXT, b COLLATE NUMERIC);
  /frameworks/base/core/java/android/text/method/
TextKeyListener.java 192 } else if (kind == KeyCharacterMap.NUMERIC) {
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 39 * might be a {@link #NUMERIC} or {@link #SPECIAL_FUNCTION} keyboard, or there
57 * A numeric (12-key) keyboard.
59 * A numeric keyboard supports text entry using a multi-tap approach.
66 public static final int NUMERIC = 1;
409 * The character value is returned, not the numeric value.
412 * This method is intended to to support dial pads and other numeric or
425 * @return The associated numeric or symbolic character, or 0 if none.
634 * Returns {@link #NUMERIC}, {@link #PREDICTIVE}, {@link #ALPHA}, {@link #FULL}
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 184 * build-time operator numeric property
214 map.put(Telephony.Carriers.NUMERIC, operatorNumeric);
361 // Sets operator numeric property by retrieving from build-time system property
408 * @return operator numeric.
414 operatorNumeric = SystemProperties.get("ro.cdma.home.operator.numeric");
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 114 Telephony.Carriers.NUMERIC, // 11
265 String numeric = local
268 if (numeric != null && numeric.length() > 4) {
270 String mcc = numeric.substring(0, 3);
272 String mnc = numeric.substring(3);
389 String numeric = local
391 mMvnoMatchData.setText(numeric + "x");
565 values.put(Telephony.Carriers.NUMERIC, mcc + mnc);

Completed in 613 milliseconds

1 2 3