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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
SimpleExpression.g3 64 | NUMBER
76 NUMBER
FastSimpleExpression.g3 67 | NUMBER
79 NUMBER
  /frameworks/base/core/java/android/util/
JsonToken.java 61 * A JSON number represented in this API by a Java {@code double}, {@code
64 NUMBER,
  /cts/libs/json/src/com/android/json/stream/
JsonToken.java 61 * A JSON number represented in this API by a Java {@code double}, {@code
64 NUMBER,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 11 NUMBER '1' (1, 0) (1, 1)
13 NUMBER '1' (1, 4) (1, 5)
126 NUMBER '0xff' (1, 0) (1, 4)
128 NUMBER '255' (1, 8) (1, 11)
130 NUMBER '0b10' (1, 0) (1, 4)
132 NUMBER '255' (1, 8) (1, 11)
134 NUMBER '0o123' (1, 0) (1, 5)
136 NUMBER '0123' (1, 9) (1, 13)
138 NUMBER '01234567' (1, 0) (1, 8)
141 NUMBER '0x15' (1, 12) (1, 16
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 11 NUMBER '1' (1, 0) (1, 1)
13 NUMBER '1' (1, 4) (1, 5)
126 NUMBER '0xff' (1, 0) (1, 4)
128 NUMBER '255' (1, 8) (1, 11)
130 NUMBER '0b10' (1, 0) (1, 4)
132 NUMBER '255' (1, 8) (1, 11)
134 NUMBER '0o123' (1, 0) (1, 5)
136 NUMBER '0123' (1, 9) (1, 13)
138 NUMBER '01234567' (1, 0) (1, 8)
141 NUMBER '0x15' (1, 12) (1, 16
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_mb_offset.h 26 #if (NUMBER==3)
28 #elif (NUMBER==2)
30 #elif (NUMBER==1)
40 ref -= NUMBER; /* bic ref, ref, #3 */
45 #if (NUMBER==3)
47 #elif (NUMBER==2)
49 #elif (NUMBER==1)
113 #if (NUMBER==3)
115 #elif (NUMBER==2)
117 #elif (NUMBER==1
    [all...]
sad_inline.h 64 #define NUMBER 3
69 #undef NUMBER
70 #define NUMBER 2
75 #undef NUMBER
76 #define NUMBER 1
234 #define NUMBER 3
240 #undef NUMBER
241 #define NUMBER 2
248 #undef NUMBER
249 #define NUMBER
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_mb_offset.h 23 #if (NUMBER==3)
25 #elif (NUMBER==2)
27 #elif (NUMBER==1)
37 ref -= NUMBER; /* bic ref, ref, #3 */
42 #if (NUMBER==3)
44 #elif (NUMBER==2)
46 #elif (NUMBER==1)
110 #if (NUMBER==3)
112 #elif (NUMBER==2)
114 #elif (NUMBER==1
    [all...]
sad_inline.h 61 #define NUMBER 3
66 #undef NUMBER
67 #define NUMBER 2
72 #undef NUMBER
73 #define NUMBER 1
231 #define NUMBER 3
237 #undef NUMBER
238 #define NUMBER 2
245 #undef NUMBER
246 #define NUMBER
    [all...]
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathConstants.java 40 * <p>The XPath 1.0 number data type.</p>
44 public static final QName NUMBER = new QName("http://www.w3.org/1999/XSL/Transform", "NUMBER");
  /external/ipsec-tools/src/racoon/
prsa_par.h 61 NUMBER = 277,
85 #define NUMBER 277
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogQuery.java 27 Calls.NUMBER, // 1
52 public static final int NUMBER = 1;
PhoneQuery.java 22 * The query to look up the {@link ContactInfo} for a given number in the Call Log.
30 PhoneLookup.NUMBER,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
bsd.h 88 PREFIX is the class of label and NUM is the number within the class.
91 #define ASM_GENERATE_INTERNAL_LABEL(BUF,PREFIX,NUMBER) \
92 sprintf ((BUF), "*%s%ld", (PREFIX), (long)(NUMBER))
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
ValuesDeltaTests.java 45 after.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
63 before.put(Phone.NUMBER, TEST_PHONE_NUMBER_1);
75 before.put(Phone.NUMBER, TEST_PHONE_NUMBER_1);
78 values.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
  /external/chromium_org/v8/src/
ic.cc 739 if (type->Is(HeapType::Number()))
755 return T::Number(region);
    [all...]
  /external/libnl/lib/route/
pktloc_syntax.y 33 %token <i> ERROR NUMBER LAYER
58 NAME NAME layer NUMBER mask
106 | NUMBER
  /external/elfutils/0.153/libcpu/
i386_lex.l 44 NUMBER [0-9]+
63 {NUMBER} { i386_lval.num = strtoul (yytext, NULL, 10);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List3.java 49 Phone.NUMBER
79 Phone.NUMBER
  /development/tools/emulator/test-apps/SmokeTests/src/com/android/emulator/smoketests/sms/
SmsTest.java 41 public final static String NUMBER = "5551212";
49 * Verify that an SMS has been received with the correct number and body
56 String number = c.getString(c.getColumnIndexOrThrow("address")); local
61 assertEquals(NUMBER, number);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForPhoneNumber.java 32 * Handler for phone number data rows.
47 if (values.containsKey(Phone.NUMBER)) {
48 final String number = values.getAsString(Phone.NUMBER); local
50 updatePhoneLookup(db, rawContactId, dataId, number, normalizedNumber);
68 if (values.containsKey(Phone.NUMBER)) {
72 values.getAsString(Phone.NUMBER),
84 // No NUMBER? Also ignore NORMALIZED_NUMBER
85 if (!values.containsKey(Phone.NUMBER)) {
90 // NUMBER is given. Try to extract NORMALIZED_NUMBER from it, unless it is also give
91 final String number = values.getAsString(Phone.NUMBER); local
161 String number = builder.getString(Phone.NUMBER); local
    [all...]
DefaultCallLogInsertionHelper.java 39 * It checks for legacy unknown numbers and updates number presentation.
41 * It uses {@link PhoneNumberOfflineGeocoder} to compute the geocoded location of a phone number.
67 // Insert the current country code, so we know the country the number belongs to.
72 getGeocodedLocationFor(values.getAsString(Calls.NUMBER), countryIso));
74 final String number = values.getAsString(Calls.NUMBER); local
75 if (LEGACY_UNKNOWN_NUMBERS.contains(number)) {
77 values.put(Calls.NUMBER, "");
80 // Check for a normalized number; if not present attempt to determine one now.
82 !TextUtils.isEmpty(number)) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
VoiceMailConstants.java 45 static final int NUMBER = 1;
65 return data[NUMBER];
104 data[NUMBER] = parser.getAttributeValue(null, "vmnumber");
  /packages/apps/Mms/src/com/android/mms/ui/
NumberPickerDialog.java 34 private static final String NUMBER = "number";
43 * @param number The number that was set.
45 void onNumberSet(int number);
54 * @param number The initial number.
58 int number,
62 this(context, AlertDialog.THEME_HOLO_LIGHT, callBack, number, rangeMin, rangeMax, title);
69 * @param number The initial number
120 int number = savedInstanceState.getInt(NUMBER); local
    [all...]

Completed in 484 milliseconds

1 2 3 4 5 6 7 8 91011>>