/packages/apps/Dialer/java/com/android/dialer/calldetails/ |
CallDetailsFooterViewHolder.java | 40 private String number; field in class:CallDetailsFooterViewHolder 52 public void setPhoneNumber(String number) { 53 this.number = number; 54 if (TextUtils.isEmpty(number)) { 64 ClipboardUtils.copyText(context, null, number, true); 67 Intent dialIntent = new Intent(Intent.ACTION_DIAL, CallUtil.getCallUri(number));
|
/packages/services/Car/tools/emulator/ |
VehicleHalProto_pb2.py | 26 name='GET_CONFIG_CMD', index=0, number=0, 30 name='GET_CONFIG_RESP', index=1, number=1, 34 name='GET_CONFIG_ALL_CMD', index=2, number=2, 38 name='GET_CONFIG_ALL_RESP', index=3, number=3, 42 name='GET_PROPERTY_CMD', index=4, number=4, 46 name='GET_PROPERTY_RESP', index=5, number=5, 50 name='GET_PROPERTY_ALL_CMD', index=6, number=6, 54 name='GET_PROPERTY_ALL_RESP', index=7, number=7, 58 name='SET_PROPERTY_CMD', index=8, number=8, 62 name='SET_PROPERTY_RESP', index=9, number=9 [all...] |
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
PhoneNumberUtil.java | 58 // The minimum and maximum length of the national significant number. 73 // The prefix that needs to be inserted in front of a Colombian landline number when dialed from 106 // characters in this map must not be removed from a number when dialling, otherwise the call 117 // includes digits, ASCII letters and number grouping symbols such as "-" and " ". 250 // Regular expression of acceptable characters that may start a phone number for the purposes of 253 // does not contain alpha characters, although they may be used later in the number. It also does 255 // information value when parsing a number. 259 // Regular expression of characters typically used to start a second phone number for the purposes 260 // of parsing. This allows us to strip off parts of the number that are actually the start of 261 // another number, such as for: (530) 583-6985 x302/x2303 -> the second extension here makes thi [all...] |
/packages/apps/Car/Radio/src/com/android/car/radio/ |
ManualTunerController.java | 34 * The total number of controllable buttons in the manual tuner. This value represents the 78 * number. 80 boolean canAppendCharacterToNumber(@NonNull String character, @NonNull String number); 83 * Returns {@code true} if the given number if a valid radio channel frequency. 85 boolean isValidChannel(@NonNull String number); 88 * Returns an integer representation of the given number in hertz. 90 int convertToHz(@NonNull String number); 94 * number. For example, FM channels should automatically add a period if the given number 97 boolean shouldAppendPeriod(@NonNull String number); [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
QuantityFormatter.java | 58 * Format formats a number with this object. 59 * @param number the number to be formatted 60 * @param numberFormat used to actually format the number. 61 * @param pluralRules uses the number and the numberFormat to determine what plural 65 public String format(double number, NumberFormat numberFormat, PluralRules pluralRules) { 66 String formatStr = numberFormat.format(number); 67 StandardPlural p = selectPlural(number, numberFormat, pluralRules); 89 // The following methods live here so that class PluralRules does not depend on number formatting, 93 * Selects the standard plural form for the number/formatter/rules [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
QuantityFormatter.java | 57 * Format formats a number with this object. 58 * @param number the number to be formatted 59 * @param numberFormat used to actually format the number. 60 * @param pluralRules uses the number and the numberFormat to determine what plural 64 public String format(double number, NumberFormat numberFormat, PluralRules pluralRules) { 65 String formatStr = numberFormat.format(number); 66 StandardPlural p = selectPlural(number, numberFormat, pluralRules); 88 // The following methods live here so that class PluralRules does not depend on number formatting, 92 * Selects the standard plural form for the number/formatter/rules [all...] |
/packages/apps/Car/Dialer/src/com/android/car/dialer/ |
BitmapWorkerTask.java | 28 * AsyncTask for handling getting contact photo from number. 38 String number, BitmapRunnable runnable) { 41 mNumber = number; 74 String number, BitmapRunnable runnable) { 75 if (cancelPotentialWork(number, imageView)) { 77 new BitmapWorkerTask(contentResolver, imageView, number, runnable); 84 private static boolean cancelPotentialWork(String number, ImageView imageView) { 87 if (bitmapWorkerTask.mNumber != number) { 114 public void setNumber(String number) { 115 mNumber = number; [all...] |
/external/elfutils/backends/ |
alpha_retval.c | 50 { .atom = DW_OP_regx, .number = 32 }, { .atom = DW_OP_piece, .number = 4 }, 51 { .atom = DW_OP_regx, .number = 33 }, { .atom = DW_OP_piece, .number = 4 }, 61 { .atom = DW_OP_breg0, .number = 0 }
|
arm_retval.c | 43 { .atom = DW_OP_reg0 }, { .atom = DW_OP_piece, .number = 4 }, 44 { .atom = DW_OP_reg1 }, { .atom = DW_OP_piece, .number = 4 }, 45 { .atom = DW_OP_reg2 }, { .atom = DW_OP_piece, .number = 4 }, 46 { .atom = DW_OP_reg3 }, { .atom = DW_OP_piece, .number = 4 }, 56 { .atom = DW_OP_breg0, .number = 0 }
|
/external/icu/icu4c/source/common/ |
ucmndata.c | 15 * ICU Common Data Files are a grouping of a number of individual 227 int32_t number, count=(int32_t)toc->count; local 232 for(number=0; number<count; ++number) { 233 fprintf(stderr, "\tx%d: %s\n", number, &base[toc->entry[number].nameOffset]); 236 number=offsetTOCPrefixBinarySearch(tocEntryName, base, toc->entry, count); 237 if(number>=0) { 239 const UDataOffsetTOCEntry *entry=toc->entry+number; 277 int32_t number, count=(int32_t)toc->count; local [all...] |
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/ |
PhoneNumberMatchTest.java | 29 * corresponding phone number. Range and number correctness are tested by 33 PhoneNumber number = new PhoneNumber(); local 34 PhoneNumberMatch match1 = new PhoneNumberMatch(10, "1 800 234 45 67", number); 35 PhoneNumberMatch match2 = new PhoneNumberMatch(10, "1 800 234 45 67", number); 41 assertEquals(match1.number(), match2.number()); 47 * Tests the value type semantics for matches with a null number.
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/ |
CustomClassLoaderConstructorTest.java | 48 LoaderBean bean = (LoaderBean) yaml.load("{name: Andrey, number: 555}"); 58 .load("!!org.yaml.snakeyaml.constructor.CustomClassLoaderConstructorTest$LoaderBean {name: Andrey, number: 555}"); 65 private int number; field in class:CustomClassLoaderConstructorTest.LoaderBean 76 return number; 79 public void setNumber(int number) { 80 this.number = number;
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/ |
SkipBean.java | 33 private Integer number; field in class:SkipBean 68 return number; 71 public void setNumber(Integer number) { 72 this.number = number;
|
/packages/apps/Settings/src/com/android/settings/support/ |
SupportPhone.java | 28 * Data model for a support phone number. 33 public final String number; field in class:SupportPhone 37 // Config follows this format: language:[tollfree|tolled]:number 44 number = tokens[2]; 49 number = in.readString(); 57 .appendPath(number) 69 dest.writeString(number);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SmsNumberUtils.java | 66 /* <Phone Number>, <NXX>-<XXXX> N[2-9] */ 69 /* <Area_code>-<Phone Number>, <NXX>-<NXX>-<XXXX> N[2-9] */ 72 /* <1>-<Area_code>-<Phone Number>, 1-<NXX>-<NXX>-<XXXX> N[2-9] */ 75 /* <+><U.S.Country_code><Area_code><Phone Number>, +1-<NXX>-<NXX>-<XXXX> N[2-9] */ 78 /* <Local_IDD><Country_code><Area_code><Phone Number>, 001-1-<NXX>-<NXX>-<XXXX> N[2-9] */ 81 /* <+><Home_IDD><Country_code><Area_code><Phone Number>, +011-1-<NXX>-<NXX>-<XXXX> N[2-9] */ 85 /* <+>-<Home_IDD>-<Country_code>-<Area_code>-<Phone Number>, +011-86-25-86281234 */ 88 /* <Home_IDD>-<Country_code>-<Area_code>-<Phone Number>, 011-86-25-86281234 */ 91 /* <NBPCD>-<Country_code>-<Area_code>-<Phone Number>, +1-86-25-86281234 */ 94 /* <Local_IDD>-<Country_code>-<Area_code>-<Phone Number>, 00-86-25-86281234 * 106 public String number; field in class:SmsNumberUtils.NumberEntry 295 String number = numberEntry.number; local 378 String number = numberEntry.number; local [all...] |
/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/ |
ContactInfoHelper.java | 56 /** Utility class to look up the contact information for a given number. */ 74 * Creates a JSON-encoded lookup uri for a unknown number without an associated contact 76 * @param number - Unknown phone number 80 private static Uri createTemporaryContactUri(String number) { 86 new JSONObject().put(Phone.NUMBER, number).put(Phone.TYPE, Phone.TYPE_CUSTOM)); 90 .put(Contacts.DISPLAY_NAME, number) 149 public static Uri getContactInfoLookupUri(String number) { 150 return getContactInfoLookupUri(number, -1) [all...] |
/packages/services/Telephony/src/com/android/phone/ |
OutgoingCallBroadcaster.java | 52 * contains the phone number being dialed. Applications can use this intent to (1) see which numbers 53 * are being dialed, (2) redirect a call (change the number being dialed), or (3) prevent a call 62 * Calls where no number is present (like for a CDMA "empty flash" or a nonexistent voicemail 63 * 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 + "'") 375 String number = PhoneNumberUtils.getNumberFromIntent(intent, this); local [all...] |
/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/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.
|
MaxForwardsParser.java | 57 String number = this.lexer.number(); local 58 contentLength.setMaxForwards(Integer.parseInt(number)); 80 * Issue number: 87 * CVS: Issue number: 89 * CVS: then enter the issue number(s) here. 118 * Issue number: 126 * CVS: Issue number: 128 * CVS: then enter the issue number(s) here.
|
MinExpiresParser.java | 76 String number = this.lexer.number(); local 78 minExpires.setExpires(Integer.parseInt(number)); 101 * Issue number: 108 * CVS: Issue number: 110 * CVS: then enter the issue number(s) here. 139 * Issue number: 147 * CVS: Issue number: 149 * CVS: then enter the issue number(s) here.
|
RSeqParser.java | 75 String number = this.lexer.number(); local 77 rseq.setSeqNumber(Long.parseLong(number)); 114 * Issue number: 120 * CVS: Issue number: 122 * CVS: then enter the issue number(s) here. 136 * Issue number: 143 * CVS: Issue number: 145 * CVS: then enter the issue number(s) here. 173 * Issue number [all...] |
/packages/apps/Dialer/java/com/android/dialer/app/calllog/calllogcache/ |
CallLogCacheLollipop.java | 41 public boolean isVoicemailNumber(PhoneAccountHandle accountHandle, CharSequence number) { 42 if (TextUtils.isEmpty(number)) { 46 String numberString = number.toString();
|
/packages/apps/Dialer/java/com/android/dialer/enrichedcall/ |
EnrichedCallManager.java | 57 * Starts an asynchronous process to get enriched call capabilities of the given number. 62 * @param number the remote number in any format 65 void requestCapabilities(@NonNull String number); 70 * <p>As a result of this method, the listener will not receive capabilities of the given number. 75 /** Gets the cached capabilities for the given number, else null */ 78 EnrichedCallCapabilities getCapabilities(@NonNull String number); 106 * Starts a call composer session with the given remote number. 108 * @param number the remote number in any forma [all...] |
/packages/apps/Dialer/java/com/android/dialer/enrichedcall/stub/ |
EnrichedCallManagerStub.java | 41 public void requestCapabilities(@NonNull String number) {} 47 public EnrichedCallCapabilities getCapabilities(@NonNull String number) { 55 public long startCallComposerSession(@NonNull String number) { 66 public void sendPostCallNote(@NonNull String number, @NonNull String message) {} 70 @NonNull String number, @NonNull EnrichedCallCapabilities capabilities) {} 78 @NonNull String uniqueCallId, @NonNull String number, @Nullable Filter filter) { 104 @NonNull String number, @NonNull CallDetailsEntries entries) { 112 @NonNull String number, @NonNull CallDetailsEntries entries) { 120 public void onSessionStatusUpdate(long sessionId, @NonNull String number, int state) {} 138 public boolean onIncomingVideoShareInvite(long sessionId, @NonNull String number) { [all...] |