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

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/
s_expression.h 38 #define SX_AS_NUMBER(x) SX_AS_(number, x)
159 s_pattern(s_number *&s) : p_number(&s), type(NUMBER) { }
174 enum { EXPR, LIST, SYMBOL, NUMBER, INT, STRING } type;
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactDeltaTests.java 77 phone.put(Phone.NUMBER, TEST_PHONE_NUMBER_1);
109 phone.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
125 child.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
149 before.put(Phone.NUMBER, TEST_PHONE_NUMBER_1);
180 // Insert a new phone number
183 phone.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
220 // Insert a new phone number
223 phone.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
262 // Update existing phone number
264 child.put(Phone.NUMBER, TEST_PHONE_NUMBER_2)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhoneLookupWithStarPrefix.java 34 * Returns a cursor with a subset of the rows passed into this function. If {@param number}
35 * starts with a "*" then only rows from {@param cursor} that have a number equal to
36 * {@param number} will be returned. If {@param number} doesn't start with a "*", then
42 * @param number unnormalized phone number.
45 * PhoneLookup.NUMBER.
49 public static Cursor removeNonStarMatchesFromCursor(String number, Cursor cursor) {
55 if (TextUtils.isEmpty(number)) {
60 final String queryPhoneNumberNormalized = normalizeNumberWithStar(number);
    [all...]
  /external/ipsec-tools/src/racoon/
cfparse.y 238 %token NUMBER SWITCH BOOLEAN
244 %type <num> NUMBER BOOLEAN SWITCH keylength
301 | USER NUMBER { lcconf->uid = $2; } EOS
313 | GROUP NUMBER { lcconf->gid = $2; } EOS
411 * in the configuration file plus the number
430 | PAD_MAXLEN NUMBER { lcconf->pad_maxsize = $2; } EOS
463 | ADMINSOCK QUOTEDSTRING QUOTEDSTRING QUOTEDSTRING NUMBER
527 : LDAP_PVER NUMBER
549 | LDAP_PORT NUMBER
850 | CFG_POOL_SIZE NUMBER
    [all...]
prsa_par.y 143 %token ADDR4 ADDR6 ADDRANY SLASH NUMBER BASE64
146 %type <num> NUMBER
282 | SLASH NUMBER { $$ = $2; }
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 157 * <h3>Number Handling</h3>
185 * long as the longest token that can be reported as a number.
370 * consuming it. If the next token is a number, this method will return its
378 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
422 * Returns the {@link JsonToken#NUMBER double} value of the next token,
430 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
440 * Returns the {@link JsonToken#NUMBER long} value of the next token,
447 * as a number, or exactly represented as a long.
451 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
471 * Returns the {@link JsonToken#NUMBER int} value of the next token
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_PhoneLookup.java 104 .appendPath("no-such-phone-number").build();
119 expected.put(PhoneLookup.NUMBER, "1111222333444");
134 expected.put(PhoneLookup.NUMBER, "2111222333444");
145 .appendPath("no-such-phone-number").build();
160 expected.put(PhoneLookup.NUMBER, "1111222333444");
175 expected.put(PhoneLookup.NUMBER, "2111222333444");
VoicemailContractTest.java 64 Voicemails._ID, Voicemails.NUMBER, Voicemails.DATE, Voicemails.DURATION,
90 value.put(Voicemails.NUMBER, insertCallsNumber);
102 Voicemails.NUMBER + " = ?",
119 value.put(Voicemails.NUMBER, updateCallsNumber);
192 value.put(Voicemails.NUMBER, insertCallsNumber);
278 value.put(Voicemails.NUMBER, "0123456789");
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessorSdk3_4.java 69 new String[]{Phones.NUMBER}, null, null, Phones.ISPRIMARY + " DESC");
ContactAccessorSdk5.java 36 * one and the phone number from the other.
74 // Load the phone number (if any).
76 new String[]{Phone.NUMBER},
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
PhoneDataItem.java 40 return getContentValues().getAsString(Phone.NUMBER);
44 * Returns the normalized phone number in E164 format.
68 * Returns the formatted phone number (if already computed using {@link
69 * #computeFormattedPhoneNumber}). Otherwise this method returns the unformatted phone number.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 11 NUMBER = 2
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 11 NUMBER = 2
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogGroupBuilder.java 34 * to and from the same number into a single row on the call log.
46 * The primary group for a call log groups the calls together based on the number which was
121 // The number of the first entry in the group.
122 String firstNumber = cursor.getString(CallLogQuery.NUMBER);
137 // The number of the current row in the cursor.
138 final String currentNumber = cursor.getString(CallLogQuery.NUMBER);
158 // Should only group with calls from the same number.
  /external/bison/examples/calc++/
calc++-parser.hh 101 NUMBER = 260
190 /// For a state, default reduction number.
201 /// - if negative, reduce the rule which number is the opposite.
229 /// For each rule, its source line number.
231 /// For each scanner token number, its symbol number.
243 /// Convert a scanner token number \a t to a symbol number.
  /frameworks/base/core/java/android/util/
JsonReader.java 163 * <h3>Number Handling</h3>
193 * long as the longest token that can be reported as a number.
399 * consuming it. If the next token is a number, this method will return its
407 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
451 * Returns the {@link JsonToken#NUMBER double} value of the next token,
459 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
469 * Returns the {@link JsonToken#NUMBER long} value of the next token,
476 * as a number, or exactly represented as a long.
480 if (token != JsonToken.STRING && token != JsonToken.NUMBER) {
500 * Returns the {@link JsonToken#NUMBER int} value of the next token
    [all...]
  /frameworks/opt/chips/src/com/android/ex/chips/
Queries.java 33 Phone.NUMBER, // 1
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactTileLoaderFactory.java 66 * and status data and the addition of phone number and label.
75 Phone.NUMBER, // ..........................................5
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascripttokenizer.py 56 # Number patterns based on:
65 NUMBER = re.compile(r"""
258 Matcher(NUMBER, Type.NUMBER),
357 line_number: The line number of the token.
  /external/chromium_org/components/autofill/core/browser/android/java/src/org/chromium/components/browser/autofill/
PersonalAutofillPopulator.java 54 private static final int NUMBER = 0;
59 ContactsContract.CommonDataKinds.Phone.NUMBER,
220 mPhoneNumbers[i] = phoneCursor.getString(phoneProfileQuery.NUMBER);
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascripttokenizer.py 56 # Number patterns based on:
65 NUMBER = re.compile(r"""
258 Matcher(NUMBER, Type.NUMBER),
357 line_number: The line number of the token.
  /external/e2fsprogs/intl/
plural.y 145 %token <num> NUMBER
194 | NUMBER
268 result = NUMBER;
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceContact.java 53 * Id for a phone number which doesn't belong to any other ids stored above.
126 // Table is sorted by number of times contacted and name. If we cannot fit all contacts
130 Phone.NUMBER + " NOT NULL", null,
300 * @return String of last number dialed.
305 new String[] { CallLog.Calls.NUMBER },
309 String number = null; local
312 int column = cursor.getColumnIndexOrThrow(CallLog.Calls.NUMBER);
313 number = cursor.getString(column);
317 if (false) Log.d(TAG, "redialNumber " + number);
319 return number;
    [all...]
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
CodeGenerator.java 31 import static com.android.notificationstudio.model.EditableItem.NUMBER;
67 if (NUMBER.hasValue())
68 sb.append(INDENT + ".setNumber(" + NUMBER.getValueInt() + ")");
NotificationGenerator.java 31 import static com.android.notificationstudio.model.EditableItem.NUMBER;
71 if (NUMBER.hasValue())
72 builder.setNumber(NUMBER.getValueInt());

Completed in 1429 milliseconds

1 23 4 5 6 7 8 91011>>