HomeSort by relevance Sort by last modified time
    Searched refs:number (Results 26 - 50 of 2876) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfoUtils.java 38 * information about the phone number label, user's name, etc).
43 String number = info.phoneNumber; local
48 // Start the query with the number provided from the call.
50 CallerInfoAsyncQuery.startQuery(QUERY_TOKEN, context, number, listener, call);
59 // here regardless of whether the number is empty or not).
65 String number = identification.getNumber(); local
66 if (!TextUtils.isEmpty(number)) {
67 final String[] numbers = number.split("&");
68 number = numbers[0];
73 number = modifyForSpecialCnapCases(context, info, number, info.numberPresentation)
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberMatch.java 24 * The immutable match of a phone number within a piece of text. Matches may be found using
27 * <p>A match consists of the {@linkplain #number() phone number} as well as the
32 * match offsets, and the parsed number:
39 * // Find the first phone number match:
42 * // rawString() contains the phone number as it appears in the text.
49 * // number() returns the the same result as PhoneNumberUtil.{@link PhoneNumberUtil#parse parse()}
51 * util.parse(m.rawString(), country).equals(m.number());
61 /** The matched phone number. */
62 private final PhoneNumber number; field in class:PhoneNumberMatch
84 public PhoneNumber number() { method in class:PhoneNumberMatch
    [all...]
ShortNumberUtil.java 43 * Returns true if the number might be used to connect to an emergency service in the given
46 * This method takes into account cases where the number might contain formatting, or might have
49 * @param number the phone number to test
50 * @param regionCode the region where the phone number is being dialed
51 * @return if the number might be used to connect to an emergency service in the given region.
53 public boolean connectsToEmergencyNumber(String number, String regionCode) {
54 return matchesEmergencyNumberHelper(number, regionCode, true /* allows prefix match */);
58 * Returns true if the number exactly matches an emergency service number in the given region
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
extension_set.h 80 // A function which, given an integer value, returns true if the number
83 typedef bool EnumValidityFunc(int number);
87 typedef bool EnumValidityFuncWithArg(const void* arg, int number);
122 // Find the extension with the given containing type and number.
123 virtual bool Find(int number, ExtensionInfo* output) = 0;
135 virtual bool Find(int number, ExtensionInfo* output);
152 // ExtensionSet. When parsing, if a tag number is encountered which is
166 int number, FieldType type,
169 int number, FieldType type,
173 int number, FieldType type
851 inline int number() const { return number_; } function in class:google::protobuf::internal::ExtensionIdentifier
    [all...]
  /external/chromium/webkit/glue/
npruntime_util.cc 16 int32_t number; local
18 WebBindings::extractIdentifierData(identifier, string, number, is_string);
26 return pickle->WriteInt(number);
43 int number; local
44 if (!pickle.ReadInt(pickle_iter, &number))
46 *identifier = WebBindings::getIntIdentifier(number);
  /external/chromium_org/content/child/npapi/
npruntime_util.cc 16 int32_t number; local
18 WebBindings::extractIdentifierData(identifier, string, number, is_string);
26 return pickle->WriteInt(number);
43 int number; local
44 if (!pickle_iter->ReadInt(&number))
46 *identifier = WebBindings::getIntIdentifier(number);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLValue.h 41 SQLValue(double number) : m_type(NumberValue), m_number(number) { }
48 double number() const;
  /external/qemu/telephony/
remote_call.h 17 /* convert a base console port into a remote phone number, -1 on error */
20 /* convert a remote phone number into a remote console port, -1 on error */
21 extern int remote_number_to_port( int number );
23 extern int remote_number_string_to_port( const char* number );
40 * returns 0 if the number is to a remote phone, or -1 otherwise
48 extern int remote_call_sms( const char* number, int from_port, SmsPDU pdu );
  /external/chromium/base/
rand_util_posix.cc 46 uint64 number; local
50 reinterpret_cast<char*>(&number),
51 sizeof(number));
54 return number;
  /external/chromium_org/base/
rand_util_posix.cc 46 uint64 number; local
49 bool success = ReadFromFD(urandom_fd, reinterpret_cast<char*>(&number),
50 sizeof(number));
53 return number;
  /external/protobuf/src/google/protobuf/
extension_set.h 80 // A function which, given an integer value, returns true if the number
83 typedef bool EnumValidityFunc(int number);
87 typedef bool EnumValidityFuncWithArg(const void* arg, int number);
122 // Find the extension with the given containing type and number.
123 virtual bool Find(int number, ExtensionInfo* output) = 0;
135 virtual bool Find(int number, ExtensionInfo* output);
152 // ExtensionSet. When parsing, if a tag number is encountered which is
166 int number, FieldType type,
169 int number, FieldType type,
173 int number, FieldType type
768 inline int number() const { return number_; } function in class:google::protobuf::internal::ExtensionIdentifier
    [all...]
  /frameworks/base/telephony/java/android/telephony/
CallStateListener.java 32 * @param number the phone number of the call. For some states, this may be blank. However, it
35 public void onCallStateChanged(int callId, int state, String number);
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/
PhoneNumberTestService.java 35 * A service to test various phone number formatters.
59 final String number = intent.getStringExtra(EXTRA_PHONE_NUMBER); local
63 Log.i(TAG, "Input phone number: " + number);
76 dump(number, c);
80 private void dump(String number, String country) {
81 Log.i(TAG, "Result for: " + number + " / " +country);
82 dump_PhoneNumberUtils_formatNumberToE164(number, country);
83 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.E164);
84 dump_PhoneNumberUtil_format(number, country, PhoneNumberFormat.INTERNATIONAL)
    [all...]
  /packages/services/Telephony/src/com/android/phone/
ProcessOutgoingCallTest.java 44 String number = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER); local
45 if (LOGV) Log.v(TAG, "Received intent " + intent + " (number = " + number + ".");
46 /* Example of how to redirect calls from one number to another. */
47 if (REDIRECT_411_TO_GOOG411 && number.equals("411")) {
51 /* Example of how to modify the phone number in flight. */
52 if (SEVEN_DIGIT_DIALING && number.length() == 7) {
53 setResultData(AREACODE + number);
57 if (POUND_POUND_SEARCH && number.startsWith("##")) {
59 newIntent.putExtra(SearchManager.QUERY, number.substring(2))
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
filename.cc 18 static std::string MakeFileName(const std::string& name, uint64_t number,
22 static_cast<unsigned long long>(number),
27 std::string LogFileName(const std::string& name, uint64_t number) {
28 assert(number > 0);
29 return MakeFileName(name, number, "log");
32 std::string TableFileName(const std::string& name, uint64_t number) {
33 assert(number > 0);
34 return MakeFileName(name, number, "ldb");
37 std::string SSTTableFileName(const std::string& name, uint64_t number) {
38 assert(number > 0)
    [all...]
  /external/chromium_org/third_party/libxml/src/
trionan.c 195 TRIO_ARGS2((number, has_mantissa),
196 double number,
206 current = ((unsigned char *)&number)[TRIO_DOUBLE_INDEX(i)];
219 TRIO_ARGS1((number),
220 double number)
226 is_negative |= (((unsigned char *)&number)[TRIO_DOUBLE_INDEX(i)]
367 @param number An arbitrary floating-point number.
368 @return Boolean value indicating whether or not the number is a NaN.
372 TRIO_ARGS1((number),
    [all...]
  /external/libxml2/
trionan.c 195 TRIO_ARGS2((number, has_mantissa),
196 double number,
206 current = ((unsigned char *)&number)[TRIO_DOUBLE_INDEX(i)];
219 TRIO_ARGS1((number),
220 double number)
226 is_negative |= (((unsigned char *)&number)[TRIO_DOUBLE_INDEX(i)]
367 @param number An arbitrary floating-point number.
368 @return Boolean value indicating whether or not the number is a NaN.
372 TRIO_ARGS1((number),
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumberutil.h 79 // in ITU-T Recommendation E. 123. For example, the number of the Google
84 // separating symbols replaced with a hyphen, and with any phone number
99 // fixed-line and mobile numbers by looking at the phone number itself.
110 // A personal number is associated with a particular person, and may be
111 // routed to either a MOBILE or FIXED_LINE number. Some more information can
116 // further routed to specific offices, but allow one number to be used for a
121 // A phone number is of type UNKNOWN when it does not fit any of the known
126 // Types of phone number matches. See detailed description beside the
165 // Gets a PhoneNumberUtil instance to carry out international phone number
167 // number metadata for a number of most commonly used regions, as specified b
    [all...]
shortnumberutil.h 41 // Returns true if the number might be used to connect to an emergency service
44 // This method takes into account cases where the number might contain
47 bool ConnectsToEmergencyNumber(const string& number,
50 // Returns true if the number exactly matches an emergency service number in
53 // This method takes into account cases where the number might contain
55 bool IsEmergencyNumber(const string& number,
  /external/chromium/chrome/browser/autofill/
phone_number_unittest.cc 10 // Tests the phone number parser.
12 string16 number; local
18 PhoneNumber::ParsePhoneNumber(phone0, &number, &city_code, &country_code);
19 EXPECT_EQ(string16(), number); local
25 PhoneNumber::ParsePhoneNumber(phone1, &number, &city_code, &country_code);
26 EXPECT_EQ(string16(), number); local
30 // Test for string with exactly 7 digits. Should give back only phone number.
32 PhoneNumber::ParsePhoneNumber(phone2, &number, &city_code, &country_code);
33 EXPECT_EQ(ASCIIToUTF16("1234567"), number);
38 // only phone number
    [all...]
phone_number.cc 17 // The number of digits in a phone number.
20 // The number of digits in an area code.
37 PhoneNumber::PhoneNumber(const PhoneNumber& number) : FormGroup() {
38 *this = number;
43 PhoneNumber& PhoneNumber::operator=(const PhoneNumber& number) {
44 if (this == &number)
46 country_code_ = number.country_code_;
47 city_code_ = number.city_code_;
48 number_ = number.number_
196 string16 number, city_code, country_code; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPointList.cpp 40 builder.append(String::number(point.x()) + ' ' + String::number(point.y()));
  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrTextureUnitObj.h 28 void setNumber(GrGLenum number) {
29 fNumber = number;
  /external/skia/src/gpu/gl/debug/
GrTextureUnitObj.h 28 void setNumber(GrGLenum number) {
29 fNumber = number;
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephonyListener.aidl 26 void onUpdate(int callId, int state, String number);

Completed in 450 milliseconds

12 3 4 5 6 7 8 91011>>