HomeSort by relevance Sort by last modified time
    Searched refs:number (Results 176 - 200 of 2794) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
phonenumber_offline_geocoder.cc 122 const PhoneNumber& number, const Locale& language) const {
124 phone_util_->GetRegionCodeForNumber(number, &region_code);
144 const PhoneNumber& number, const Locale& language) const {
146 number, language.getLanguage(), "", language.getCountry());
149 : GetCountryNameForNumber(number, language);
153 const PhoneNumber& number, const Locale& language,
155 // If the user region matches the number's region, then we just show the
157 // show the region(country) name for the number.
159 phone_util_->GetRegionCodeForNumber(number, &region_code);
161 return GetDescriptionForValidNumber(number, language)
    [all...]
  /external/icu4c/test/letest/
xmlreader.cpp 46 char number[16]; local
57 len = numbers.extract(start, end - start, number, ARRAY_SIZE(number), US_INV);
58 number[len] = '\0';
61 sscanf(number, "%x", &array[count++]);
75 len = numbers.extract(start, end - start, number, ARRAY_SIZE(number), US_INV);
76 number[len] = '\0';
77 sscanf(number, "%x", &array[count]);
92 char number[32] local
    [all...]
  /external/lzma/CPP/Common/
StdOutStream.h 26 CStdOutStream & operator<<(int number);
27 CStdOutStream & operator<<(UInt64 number);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SuppServiceNotification.java 35 /** TS 27.007 7.17 "number" (MT only) */
36 public String number; field in class:SuppServiceNotification
68 + PhoneNumberUtils.stringFromStringAndTOA(number, type) + "\" ";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
timeit.py 5 This module avoids a number of common traps for measuring execution
15 -n/--number N: how many times to execute 'statement' (default: see below)
30 If -n is not given, a suitable number of loops is calculated by trying
178 def timeit(self, number=default_number):
179 """Time 'number' executions of the main statement.
183 a number of times, as a float measured in seconds. The
184 argument is the number of times through the loop, defaulting
189 it = itertools.repeat(None, number)
191 it = [None] * number
201 def repeat(self, repeat=default_repeat, number=default_number)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
timeit.py 5 This module avoids a number of common traps for measuring execution
15 -n/--number N: how many times to execute 'statement' (default: see below)
30 If -n is not given, a suitable number of loops is calculated by trying
178 def timeit(self, number=default_number):
179 """Time 'number' executions of the main statement.
183 a number of times, as a float measured in seconds. The
184 argument is the number of times through the loop, defaulting
189 it = itertools.repeat(None, number)
191 it = [None] * number
201 def repeat(self, repeat=default_repeat, number=default_number)
    [all...]
  /external/chromium_org/v8/src/
dateparser-inl.h 72 // Any unrecognized word before the first number is ignored.
74 // An unsigned number followed by ':' is a time value, and is
75 // added to the TimeComposer. A number followed by '::' adds a second
76 // zero as well. A number followed by '.' is also a time and must be
78 // Any other number is a date component and is added to DayComposer.
84 // after a number has been read (before the first number, any garbage
93 // garbage string after a number has been read.
105 int n = token.number();
150 // Garbage words are illegal if a number has been read
    [all...]
  /external/v8/src/
dateparser-inl.h 71 // Any unrecognized word before the first number is ignored.
73 // An unsigned number followed by ':' is a time value, and is
74 // added to the TimeComposer. A number followed by '::' adds a second
75 // zero as well. A number followed by '.' is also a time and must be
77 // Any other number is a date component and is added to DayComposer.
83 // after a number has been read (before the first number, any garbage
92 // garbage string after a number has been read.
104 int n = token.number();
149 // Garbage words are illegal if a number has been read
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
unknown_field_set.h 95 // Computes (an estimate of) the total number of bytes currently used for
103 // Returns the number of fields present in the UnknownFieldSet.
115 void AddVarint(int number, uint64 value);
116 void AddFixed32(int number, uint32 value);
117 void AddFixed64(int number, uint64 value);
118 void AddLengthDelimited(int number, const string& value);
119 string* AddLengthDelimited(int number);
120 UnknownFieldSet* AddGroup(int number);
129 // Delete all fields with a specific field number. The order of left fields
132 void DeleteByNumber(int number);
252 inline int UnknownField::number() const { return number_; } function in class:google::protobuf::UnknownField
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/util/
FastInteger.java 12 * @see java.lang.Number
28 * Constant for the number of bits needed to represent an {@code int} in
45 * The returned string is a concatenation of a minus sign if the number is
103 int number;
107 if (positive_value < (number = decimalScale[i])) {
115 number = (decimalScale[i] << 3);
116 if (positive_value >= number) {
117 positive_value -= number;
120 number = (decimalScale[i] << 2);
121 if (positive_value >= number) {
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatcher.java 47 * The phone number pattern used by {@link #find}, similar to
55 * <li>Number of digits is limited.
67 * The string "211-227 (2003)" is not a telephone number.
87 * Pattern to check that brackets match. Opening brackets should be closed within a phone number.
94 * Matches white-space, which may indicate the end of a phone number and the start of something
96 * characters that are not typically used to start a phone number.
101 * Punctuation that may be at the start of a phone number - brackets and plus signs.
113 /* Limit on the number of pairs of brackets in a phone number. */
118 * closing bracket first. We limit the sets of brackets in a phone number to four
418 PhoneNumber number = phoneUtil.parseAndKeepRawInput(candidate, preferredRegion); local
    [all...]
  /external/chromium/chrome/browser/autofill/
credit_card.cc 38 std::string GetCreditCardType(const string16& number) {
39 // Don't check for a specific type if this is not a credit card number.
40 if (!CreditCard::IsValidCreditCardNumber(number))
43 // Credit card number specifications taken from:
58 if (number.length() < 4)
62 if (!base::StringToInt(number.substr(0, 4), &first_four_digits))
69 switch (number.length()) {
230 return number();
261 // We determine the type based on the number.
283 if (number().empty()
336 string16 number = StripSeparators(number_); local
394 string16 number = StripSeparators(text); local
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
image_buffer.js 57 * @param {number} x X coordinate for cursor.
58 * @param {number} y Y coordinate for cursor.
72 * @param {number} x X coordinate for click event.
73 * @param {number} y Y coordinate for click event.
85 * @param {number} x Event X coordinate.
86 * @param {number} y Event Y coordinate.
88 * @return {function(number,number)} A function to be called on mouse drag.
102 * @param {number} x X coordinate of the event.
103 * @param {number} y Y coordinate of the event
    [all...]
  /device/samsung/manta/libsensors/iio/
events.h 53 * @chan: Channel number for non-differential channels.
54 * @chan1: First channel number for differential channels.
55 * @chan2: Second channel number for differential channels.
73 * @number: Channel number.
79 #define IIO_MOD_EVENT_CODE(chan_type, number, modifier, \
81 IIO_EVENT_CODE(chan_type, 0, modifier, direction, type, number, 0, 0)
86 * @number: Channel number.
91 #define IIO_UNMOD_EVENT_CODE(chan_type, number, type, direction)
    [all...]
  /external/chromium/testing/gtest/xcode/Samples/FrameworkSample/
widget.h 44 Widget(int number, const std::string& name);
47 // Public accessors to number data
  /external/chromium_org/chrome/browser/ui/webui/
identity_internals_ui_browsertest.cc 24 for (int number = 0; number < number_of_tokens; ++number) {
25 const std::string token_number = base::IntToString(number);
  /external/chromium_org/components/autofill/core/browser/
phone_number.cc 22 // The number of digits in a phone number.
25 // The number of digits in an area code.
28 void StripPunctuation(base::string16* number) {
29 RemoveChars(*number, kPhoneNumberSeparators, number);
32 // Returns the region code for this phone number, which is an ISO 3166 2-letter
51 PhoneNumber::PhoneNumber(const PhoneNumber& number)
53 *this = number;
58 PhoneNumber& PhoneNumber::operator=(const PhoneNumber& number) {
165 base::string16 number = GetInfo(AutofillType(PHONE_HOME_NUMBER), app_locale); local
    [all...]
  /external/chromium_org/testing/gtest/xcode/Samples/FrameworkSample/
widget.h 44 Widget(int number, const std::string& name);
47 // Public accessors to number data
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
access-nsieve.js 6 function pad(number,width){
7 var s = number.toString();
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
access-nsieve.js 6 function pad(number,width){
7 var s = number.toString();
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
access-nsieve.js 6 function pad(number,width){
7 var s = number.toString();
  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/
SQLValue.cpp 49 double SQLValue::number() const function in class:WebCore::SQLValue
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGZoomAndPan.h 48 static SVGZoomAndPanType parseFromNumber(unsigned short number)
50 if (!number || number > SVGZoomAndPanMagnify)
52 return static_cast<SVGZoomAndPanType>(number);
  /external/chromium_org/third_party/icu/source/i18n/
nfsubs.h 106 * Performs a mathematical operation on the number, formats it using
109 * @param number The number being formatted.
115 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const;
118 * Performs a mathematical operation on the number, formats it using
121 * @param number The number being formatted.
127 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos) const;
132 * mathematical operation on the number. The result of this operation
136 * @param The number being formatte
    [all...]
  /external/icu4c/i18n/
nfsubs.h 106 * Performs a mathematical operation on the number, formats it using
109 * @param number The number being formatted.
115 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const;
118 * Performs a mathematical operation on the number, formats it using
121 * @param number The number being formatted.
127 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos) const;
132 * mathematical operation on the number. The result of this operation
136 * @param The number being formatte
    [all...]

Completed in 1315 milliseconds

1 2 3 4 5 6 78 91011>>