/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
extension_set.cc | 80 int number, ExtensionInfo info) { 83 if (!InsertIfNotPresent(registry_, make_pair(containing_type, number), 87 << "\", field number " << number << "."; 92 const MessageLite* containing_type, int number) { 94 FindOrNull(*registry_, make_pair(containing_type, number)); 101 bool GeneratedExtensionFinder::Find(int number, ExtensionInfo* output) { 103 FindRegisteredExtension(containing_type_, number); 113 int number, FieldType type, 119 Register(containing_type, number, info) 879 int number; local [all...] |
/external/chromium_org/v8/src/ |
utils.cc | 65 uint32_t number = static_cast<uint32_t>(value); local 68 number = static_cast<uint32_t>(-value); 72 if (factor > number) break; 76 buffer_[position_ - i] = '0' + static_cast<char>(number % 10); 77 number /= 10;
|
fixed-dtoa.cc | 125 static void FillDigits32FixedLength(uint32_t number, int requested_length, 128 buffer[(*length) + i] = '0' + number % 10; 129 number /= 10; 135 static void FillDigits32(uint32_t number, Vector<char> buffer, int* length) { 138 while (number != 0) { 139 int digit = number % 10; 140 number /= 10; 158 static void FillDigits64FixedLength(uint64_t number, int requested_length, 161 // For efficiency cut the number into 3 uint32_t parts, and print those. 162 uint32_t part2 = static_cast<uint32_t>(number % kTen7) [all...] |
/external/elfutils/backends/ |
alpha_retval.c | 47 { .atom = DW_OP_regx, .number = 32 }, { .atom = DW_OP_piece, .number = 4 }, 48 { .atom = DW_OP_regx, .number = 33 }, { .atom = DW_OP_piece, .number = 4 }, 58 { .atom = DW_OP_breg0, .number = 0 }
|
/external/icu4c/i18n/ |
nfrs.h | 51 void format(int64_t number, UnicodeString& toAppendTo, int32_t pos) const; 52 void format(double number, UnicodeString& toAppendTo, int32_t pos) const; 59 NFRule * findNormalRule(int64_t number) const; 60 NFRule * findDoubleRule(double number) const; 61 NFRule * findFractionRuleSetRule(double number) const;
|
/packages/apps/Dialer/src/com/android/dialer/interactions/ |
UndemoteOutgoingCallReceiver.java | 31 * contacts if a phone call is made to a phone number belonging to that contact. 40 final String number = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER); local 41 if (TextUtils.isEmpty(number)) { 47 final long id = getContactIdFromPhoneNumber(context, number); 66 private long getContactIdFromPhoneNumber(Context context, String number) { 68 Uri.encode(number));
|
/packages/services/Telephony/src/com/android/phone/ |
CallController.java | 174 * (4) Here in CallController.placeCall() we read the phone number or SIP 209 String number = PhoneNumberUtils.getNumberFromIntent(intent, mApp); local 214 log("- number: " + number); 296 String number; local 312 number = PhoneUtils.getInitialNumber(intent); 313 if (VDBG) log("- actual number to dial: '" + number + "'"); 318 // or by number, i.e. for international, 323 phone = PhoneUtils.pickPhoneBasedOnNumber(mCM, scheme, number, sipPhoneUri) [all...] |
/external/icu4c/i18n/unicode/ |
numfmt.h | 29 * \brief C++ API: Abstract base class for all number formats. 52 * Abstract base class for all number formats. Provides interface for 53 * formatting and parsing a number. Also provides methods for 54 * determining which locales have number formats, and what their names 60 * decimal digits used, or whether the number format is even decimal. 62 * To format a number for the current Locale, use one of the static 96 * To format a number for a different Locale, specify it in the 111 * Use createInstance to get the normal number format for that country. 113 * to get the currency number format for that country. Use getPercent 120 * use createInstance(...kNumberStyle...) to get the normal number format [all...] |
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
phonenumbermatcher.cc | 80 bool ContainsOnlyValidXChars(const PhoneNumber& number, const string& candidate, 83 // always precede the national significant number or (2) an extension sign, 84 // in which case they always precede the extension number. We assume a 97 // national significant number. 100 number, candidate.substr(found, candidate.length() - found)) 108 if (normalized_extension != number.extension()) { 137 // formatting information based on the country code in the phone number, 138 // rather than the number itself, as we do not need to distinguish between 150 // we only accept the number if there is no formatting symbol at all in 151 // the number, except for extensions. This is only important fo 450 PhoneNumber number; local [all...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
toString-number.js | 24 description("Test the conversion performed by the function Number.prototype.toString."); 70 number = validNumberData[i][numberIndex]; 74 shouldBeEqualToString('Number(' + number + ').toString()', stringBase10); 75 shouldBeEqualToString('Number.prototype.toString.call(' + number + ')', stringBase10); 76 shouldBeEqualToString('Number.prototype.toString.call(new Number(' + number + '))', stringBase10); 77 // Passing the string to number should also lead to valid conversion [all...] |
/external/chromium_org/ash/system/chromeos/network/ |
tray_sms.cc | 40 const char kSmsNumberKey[] = "number"; 44 std::string* number, 46 if (!message->GetStringWithoutPathExpansion(kSmsNumberKey, number)) 93 const std::string& number, 99 UTF8ToUTF16(number))); 221 std::string number, text; local 222 if (!GetMessageFromDictionary(message, &number, &text)) { 228 number, text); 247 const std::string& number, 252 owner, SmsMessageView::VIEW_NOTIFICATION, message_index_, number, text) 324 std::string number, text; local 410 std::string number, text; local [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/ |
byte_reader.js | 10 * @param {number=} opt_offset // TODO(JSDOC). 11 * @param {number=} opt_length // TODO(JSDOC). 27 * @type {number} 33 * @type {number} 40 * @type {number} 46 * @type {number} 52 * @type {number} 61 * @param {number} pos // TODO(JSDOC). 62 * @param {number} size // TODO(JSDOC). 63 * @param {number} end // TODO(JSDOC) [all...] |
/external/oprofile/events/i386/nehalem/ |
unit_masks | 7 0x01 any Counts the number of store forwards 9 0x01 std Counts the number of loads blocked by a preceding store with unknown data 10 0x04 address_offset Counts the number of loads blocked by a preceding store address 14 0x01 load Counts the number of misaligned load references 15 0x02 store Counts the number of misaligned store references 16 0x03 any Counts the number of misaligned memory references 18 0x01 not_sta This event counts the number of load operations delayed caused by preceding stores whose addresses are known but whose data is unknown, and preceding stores that conflict with the load but which incompletely overlap the load 20 0x04 at_ret Counts number of loads delayed with at-Retirement block code 25 0x02 walk_completed Counts number of completed page walks due to load miss in the STLB 26 0x10 stlb_hit Number of cache load STLB hit [all...] |
/external/chromium_org/chrome/browser/resources/local_ntp/ |
instant_iframe_validation.js | 12 * Converts an RGB color number to a hex color string if valid. 13 * @param {number} color A 6-digit hex RGB color code as a number. 17 // Color must be a number, finite, with no fractional part, in the correct 30 * Validates a RGBA color component. It must be a number between 0 and 255. 31 * @param {number} component An RGBA component. 41 * @param {Array.<number>} rgbaColor Array of rgba color components.
|
/external/protobuf/src/google/protobuf/ |
extension_set.cc | 80 int number, ExtensionInfo info) { 83 if (!InsertIfNotPresent(registry_, make_pair(containing_type, number), 87 << "\", field number " << number << "."; 92 const MessageLite* containing_type, int number) { 94 FindOrNull(*registry_, make_pair(containing_type, number)); 101 bool GeneratedExtensionFinder::Find(int number, ExtensionInfo* output) { 103 FindRegisteredExtension(containing_type_, number); 113 int number, FieldType type, 119 Register(containing_type, number, info) 709 int number = WireFormatLite::GetTagFieldNumber(tag); local [all...] |
/external/chromium_org/remoting/webapp/ |
stats_accumulator.js | 26 * @type Object.<string, Array.<number>> 34 * @type {?number} 42 * @param {Object.<string, number>} newValues 62 * Gets the number of milliseconds since the first value was added to this 65 * @return {number} milliseconds since the first value 78 * @return {number} the mean of the values for that key 82 * @param {Array.<number>} values 83 * @return {number} 102 * @param {function(Array.<number>): number} ma [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
StringExtrasTest.cpp | 80 CString minStringData = String::number(min).latin1(); 85 CString maxStringData = String::number(max).latin1(); 98 const IntegerType number = static_cast<IntegerType>(i); local 99 CString numberStringData = String::number(number).latin1(); 100 snprintf(buffer.data(), bufferSize, PrintfFormatTrait<IntegerType>::format, number);
|
/external/chromium_org/webkit/browser/fileapi/ |
sandbox_database_test_helper.cc | 30 uint64 number = kuint64max; local 33 &number, &file_type)); 35 (picked_file_number == kuint64max || picked_file_number < number)) { 37 picked_file_number = number; 88 uint64 number = kuint64max; local 91 &number, &file_type));
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
DriverCall.java | 44 public String number; field in class:DriverCall 60 // index,isMT,state,mode,isMpty(,number,TOA)? 77 ret.number = PhoneNumberUtils.extractNetworkPortionAlt(p.nextString()); 79 if (ret.number.length() == 0) { 80 ret.number = null; 88 ret.number = PhoneNumberUtils.stringFromStringAndTOA( 89 ret.number, ret.TOA); 115 /*+ "number=" + number */ + ",cli=" + numberPresentation + ","
|
IccProvider.java | 47 "number", 57 private static final String STR_NUMBER = "number"; 132 String number = initialValues.getAsString("number"); local 134 boolean success = addIccRecordToEf(efType, tag, number, null, pin2); 199 String number = null; local 218 number = normalizeValue(val); 227 if (TextUtils.isEmpty(number)) { 235 boolean success = deleteIccRecordFromEf(efType, tag, number, emails, pin2); 267 String number = values.getAsString("number") local 401 String number = record.getNumber(); local [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DefaultCallLogInsertionHelper.java | 37 * It checks for legacy unknown numbers and updates number presentation. 39 * It uses {@link PhoneNumberOfflineGeocoder} to compute the geocoded location of a phone number. 65 // Insert the current country code, so we know the country the number belongs to. 70 getGeocodedLocationFor(values.getAsString(Calls.NUMBER), countryIso)); 72 final String number = values.getAsString(Calls.NUMBER); local 73 if (LEGACY_UNKNOWN_NUMBERS.contains(number)) { 75 values.put(Calls.NUMBER, ""); 90 private PhoneNumber parsePhoneNumber(String number, String countryIso) { 92 return getPhoneNumberUtil().parse(number, countryIso) [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
fixed-dtoa.cc | 124 static void FillDigits32FixedLength(uint32_t number, int requested_length, 127 buffer[(*length) + i] = '0' + number % 10; 128 number /= 10; 134 static void FillDigits32(uint32_t number, Vector<char> buffer, int* length) { 137 while (number != 0) { 138 int digit = number % 10; 139 number /= 10; 157 static void FillDigits64FixedLength(uint64_t number, int, 160 // For efficiency cut the number into 3 uint32_t parts, and print those. 161 uint32_t part2 = static_cast<uint32_t>(number % kTen7) [all...] |
/external/elfutils/libdw/ |
dwarf_getlocation.c | 93 Dwarf_Word number; member in struct:loclist 143 newloc->number = 0; 163 newloc->number = read_4ubyte_unaligned_inc (dbg, data); 170 newloc->number = read_8ubyte_unaligned_inc (dbg, data); 216 newloc->number = *data++; 223 newloc->number = *((int8_t *) data); 231 newloc->number = read_2ubyte_unaligned_inc (dbg, data); 241 newloc->number = read_2sbyte_unaligned_inc (dbg, data); 248 newloc->number = read_4ubyte_unaligned_inc (dbg, data); 256 newloc->number = read_4sbyte_unaligned_inc (dbg, data) [all...] |
/external/v8/src/ |
fixed-dtoa.cc | 125 static void FillDigits32FixedLength(uint32_t number, int requested_length, 128 buffer[(*length) + i] = '0' + number % 10; 129 number /= 10; 135 static void FillDigits32(uint32_t number, Vector<char> buffer, int* length) { 138 while (number != 0) { 139 int digit = number % 10; 140 number /= 10; 158 static void FillDigits64FixedLength(uint64_t number, int requested_length, 161 // For efficiency cut the number into 3 uint32_t parts, and print those. 162 uint32_t part2 = static_cast<uint32_t>(number % kTen7) [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
rbnf.h | 15 * \brief C++ API: Rule Based Number Format 61 * The RuleBasedNumberFormat class formats numbers according to a set of rules. This number formatter is 66 * other complicated formatting tasks, such as formatting a number of seconds as hours, 102 * isolate the number's ones digit, format it using this same set of rules, and place the 104 * the number being formatted is an even multiple of 10 (the hyphen is a literal hyphen; 24 107 * <p>For even larger numbers, we can actually look up several parts of the number in the 118 * can change this). To fill in the substitutions, the formatter divides the number being 183 * <p>This is called a <em>negative-number rule,</em> and is identified by "-x" 185 * >> token here means "find the number's absolute value, format it with these 194 * negative-number rule first and then through this rule). Here, the << token refers t [all...] |