/packages/services/Telephony/tests/src/com/android/phone/tests/ |
CallDialTest.java | 60 mNumber = (EditText) findViewById(R.id.number); 113 // Get a phone number or SIP address from the EditText widget 114 String number = mNumber.getText().toString(); local 115 log("==> number: '" + number + "'"); 117 // Based on the number, fire off a CALL or DIAL intent: 120 // - if it's just a number, prepend tel: automatically 124 if (!TextUtils.isEmpty(number)) { 125 if (number.contains(":")) { 126 uri = Uri.parse(number); 154 String number = mNumber.getText().toString(); local 161 phone.call(getPackageName(), number); local 172 String number = mNumber.getText().toString(); local [all...] |
/external/elfutils/backends/ |
ia64_retval.c | 40 { .atom = DW_OP_reg8 }, { .atom = DW_OP_piece, .number = 8 }, 41 { .atom = DW_OP_reg9 }, { .atom = DW_OP_piece, .number = 8 }, 42 { .atom = DW_OP_reg10 }, { .atom = DW_OP_piece, .number = 8 }, 43 { .atom = DW_OP_reg11 }, { .atom = DW_OP_piece, .number = 8 }, 52 { .atom = DW_OP_regx, .number = 128 + 8 }, \ 53 { .atom = DW_OP_piece, .number = size }, \ 54 { .atom = DW_OP_regx, .number = 128 + 9 }, \ 55 { .atom = DW_OP_piece, .number = size }, \ 56 { .atom = DW_OP_regx, .number = 128 + 10 }, \ 57 { .atom = DW_OP_piece, .number = size }, [all...] |
ppc64_retval.c | 47 { .atom = DW_OP_regx, .number = 33 }, { .atom = DW_OP_piece, .number = 8 }, 48 { .atom = DW_OP_regx, .number = 34 }, { .atom = DW_OP_piece, .number = 8 }, 49 { .atom = DW_OP_regx, .number = 35 }, { .atom = DW_OP_piece, .number = 8 }, 50 { .atom = DW_OP_regx, .number = 36 }, { .atom = DW_OP_piece, .number = 8 }, 61 { .atom = DW_OP_breg3, .number = 0 }
|
x86_64_retval.c | 40 { .atom = DW_OP_reg0 }, { .atom = DW_OP_piece, .number = 8 }, 41 { .atom = DW_OP_reg1 }, { .atom = DW_OP_piece, .number = 8 }, 49 { .atom = DW_OP_regx, .number = 33 }, 50 { .atom = DW_OP_piece, .number = 10 }, 51 { .atom = DW_OP_regx, .number = 34 }, 52 { .atom = DW_OP_piece, .number = 10 }, 60 { .atom = DW_OP_reg17 }, { .atom = DW_OP_piece, .number = 16 }, 61 { .atom = DW_OP_reg18 }, { .atom = DW_OP_piece, .number = 16 }, 71 { .atom = DW_OP_breg0, .number = 0 }
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
ContactInfoHelper.java | 40 * Utility class to look up the contact information for a given number. 55 * Returns the contact information for the given number. 57 * If the number does not match any contact, returns a contact info containing only the number 58 * and the formatted number. 62 * @param number the number to look up 63 * @param countryIso the country associated with this number 65 public ContactInfo lookupNumber(String number, String countryIso) { 69 if (PhoneNumberUtils.isUriNumber(number)) { [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
tsnmfmt.cpp | 79 name = "Number test"; 274 Formattable number[DEPTH]; local 287 number[i].setDouble(aNumber); 289 fFormat->parse(string[i-1], number[i], status); 291 number[i].setDouble(1234.5); // "parse failed" value 298 if (number[i].getType() == Formattable::kLong) 299 number[i].setDouble(number[i].getLong()); 300 else if (number[i].getType() == Formattable::kInt64) 301 number[i].setDouble((double)number[i].getInt64()) [all...] |
/external/icu4c/i18n/unicode/ |
compactdecimalformat.h | 44 * fixed number of digits are set (with setMaximumIntegerDigits or 111 * Format a double or long number using base-10 representation. 113 * @param number The value to be formatted. 121 virtual UnicodeString& format(double number, 126 * Format a double or long number using base-10 representation. 129 * @param number The value to be formatted. 139 virtual UnicodeString& format(double number, 145 * Format an int64 number using base-10 representation. 147 * @param number The value to be formatted. 155 virtual UnicodeString& format(int64_t number, [all...] |
/external/icu4c/test/intltest/ |
tsnmfmt.cpp | 80 name = "Number test"; 285 Formattable number[DEPTH]; local 298 number[i].setDouble(aNumber); 300 fFormat->parse(string[i-1], number[i], status); 302 number[i].setDouble(1234.5); // "parse failed" value 309 if (number[i].getType() == Formattable::kLong) 310 number[i].setDouble(number[i].getLong()); 311 else if (number[i].getType() == Formattable::kInt64) 312 number[i].setDouble((double)number[i].getInt64()) [all...] |
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/ |
PhoneNumberOfflineGeocoder.java | 33 * An offline geocoder which provides geographical information related to a phone number. 113 * Gets a {@link PhoneNumberOfflineGeocoder} instance to carry out international phone number 130 * number is from. 132 private String getCountryNameForNumber(PhoneNumber number, Locale language) { 133 String regionCode = phoneUtil.getRegionCodeForNumber(number); 147 * Returns a text description for the given phone number, in the language provided. The 148 * description might consist of the name of the country where the phone number is from, or the 149 * name of the geographical area the phone number is from if more detailed information is 152 * <p>This method assumes the validity of the number passed in has already been checked, and that 153 * the number is suitable for geocoding. We consider fixed-line and mobile numbers possibl [all...] |
/packages/apps/Mms/src/com/android/mms/data/ |
RecipientIdCache.java | 45 public String number; field in class:RecipientIdCache.Entry 47 public Entry(long id, String number) { 49 this.number = number; 88 String number = c.getString(1); local 89 sInstance.mCache.put(id, number); 116 String number = sInstance.mCache.get(longId); local 118 if (number == null) { 125 number = sInstance.mCache.get(longId); 128 if (TextUtils.isEmpty(number)) { 226 String number = c.getString(1); local 252 String number = c.getString(0); local [all...] |
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
phonenumberutil.cc | 83 // number when dialed from a mobile phone in Colombia. 102 // any extension component of the number, after the main national number is 175 // Returns true when one national number is the suffix of the other or both are 205 VLOG(4) << "Number type unknown - doesn't match general national number" 211 VLOG(4) << "Number is a premium number."; 216 VLOG(4) << "Number is a toll-free number." [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
choicfmt.h | 46 * the real number line <code>-Inf</code> to <code>+Inf</code> into two 70 * <p>The pattern consists of a number or <em>range specifiers</em> 75 * \htmlonly<blockquote><em>Number Separator String</em></blockquote>\endhtmlonly 77 * <p><em>Number</em> is a floating point number that can be parsed by a 94 * indicates that the lower limit given by <em>Number</em> is 96 * This means that the limit value <em>Number</em> belongs to this 101 * <em>Number</em> is exclusive. This means that the value 102 * <em>Number</em> belongs to the prior range.</li> Another way of 133 * <p>During formatting, a number is converted to [all...] |
/packages/services/Telephony/src/com/android/phone/ |
OutgoingCallBroadcaster.java | 51 * contains the phone number being dialed. Applications can use this intent to (1) see which numbers 52 * are being dialed, (2) redirect a call (change the number being dialed), or (3) prevent a call 61 * Calls where no number is present (like for a CDMA "empty flash" or a nonexistent voicemail 62 * number) are exempt from being broadcast. 139 * a modified phone number and optional provider info (uri + package name + remote views.) 173 String number; local 184 // is used as the actual number to call. (If null, no call will be 187 number = getResultData(); 188 if (VDBG) Log.v(TAG, "- got number from resultData: '" + number + "'") 443 String number = PhoneNumberUtils.getNumberFromIntent(intent, this); local [all...] |
CallLogger.java | 57 final String number = c.getAddress(); local 67 ", number set to: " + PhoneUtils.toLogSafePhoneNumber(number)); 78 && phone.isOtaSpNumber(number); 109 public void logCall(CallerInfo ci, String number, int presentation, int callType, long start, 111 final boolean isEmergencyNumber = PhoneNumberUtils.isLocalEmergencyNumber(number, 127 log("sending Calllog entry: " + ci + ", " + PhoneUtils.toLogSafePhoneNumber(number) 131 CallLogAsync.AddCallArgs args = new CallLogAsync.AddCallArgs(mApplication, ci, number, 158 * Retrieve the phone number from the caller info or the connection. 160 * For incoming call the number is in the Connection object. Fo 172 String number = null; local [all...] |
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
PhoneNumberUtil.java | 61 // The minimum and maximum length of the national significant number. 95 // The prefix that needs to be inserted in front of a Colombian landline number when dialed from 110 // characters in this map must not be removed from a number when dialling, otherwise the call 121 // includes digits, ASCII letters and number grouping symbols such as "-" and " ". 234 // Regular expression of acceptable characters that may start a phone number for the purposes of 237 // does not contain alpha characters, although they may be used later in the number. It also does 239 // information value when parsing a number. 243 // Regular expression of characters typically used to start a second phone number for the purposes 244 // of parsing. This allows us to strip off parts of the number that are actually the start of 245 // another number, such as for: (530) 583-6985 x302/x2303 -> the second extension here makes thi [all...] |
/external/chromium_org/rlz/lib/ |
string_utils.cc | 51 int number = 0; local 61 return number; 63 number = (number << 4) | digit; 66 return number;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
BorderImageLengthBox.h | 52 BorderImageLengthBox(double number) 53 : m_left(number) 54 , m_right(number) 55 , m_top(number) 56 , m_bottom(number)
|
BorderImageLength.h | 44 BorderImageLength(double number) 46 , m_number(number) 64 double number() const { ASSERT(isNumber()); return m_number; } function in class:WebCore::BorderImageLength
|
/external/icu4c/common/ |
ucmndata.c | 13 * ICU Common Data Files are a grouping of a number of individual 225 int32_t number, count=(int32_t)toc->count; local 230 for(number=0; number<count; ++number) { 231 fprintf(stderr, "\tx%d: %s\n", number, &base[toc->entry[number].nameOffset]); 234 number=offsetTOCPrefixBinarySearch(tocEntryName, base, toc->entry, count); 235 if(number>=0) { 237 const UDataOffsetTOCEntry *entry=toc->entry+number; 275 int32_t number, count=(int32_t)toc->count; local [all...] |
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/ |
PhoneNumberMatchTest.java | 31 * corresponding phone number. Range and number correctness are tested by 35 PhoneNumber number = new PhoneNumber(); local 36 PhoneNumberMatch match1 = new PhoneNumberMatch(10, "1 800 234 45 67", number); 37 PhoneNumberMatch match2 = new PhoneNumberMatch(10, "1 800 234 45 67", number); 43 assertEquals(match1.number(), match2.number()); 49 * Tests the value type semantics for matches with a null number.
|
/external/v8/src/ |
utils.cc | 64 uint32_t number = static_cast<uint32_t>(value); local 67 number = static_cast<uint32_t>(-value); 71 if (factor > number) break; 75 buffer_[position_ - i] = '0' + static_cast<char>(number % 10); 76 number /= 10;
|
/cts/tools/dasm/src/java_cup/ |
parse_action_row.java | 13 /** Simple constructor. Note: this should not be used until the number of 19 if (_size <= 0 ) _size = terminal.number(); 33 /** Number of columns (terminals) in every row. */ 36 /** Number of columns (terminals) in every row. */ 76 reduction_count = new int[production.number()]; 79 for (i = 0; i < production.number(); i++)
|
/external/chromium_org/chrome/installer/test/ |
pe_image_resources.h | 27 explicit EntryId(WORD number) : number_(number) { } 32 WORD number() const { return number_; } function in class:upgrade_test::EntryId
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGNumberList.cpp | 34 float number = 0; local 35 if (!parseNumber(ptr, end, number)) 37 append(number);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
ContentLengthParser.java | 58 String number = this.lexer.number(); local 59 contentLength.setContentLength(Integer.parseInt(number)); 81 * Issue number: 88 * CVS: Issue number: 90 * CVS: then enter the issue number(s) here. 121 * Issue number: 129 * CVS: Issue number: 131 * CVS: then enter the issue number(s) here.
|