Home
last modified time | relevance | path

Searched full:number (Results 1 – 25 of 12211) sorted by relevance

12345678910>>...489

/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
DShortNumberInfo.java49 // In these countries, if extra digits are added to an emergency number, it no longer connects
72 // MatcherApi supports the basic matching method for checking if a given national number matches
73 // a national number pattern defined in the given {@code PhoneNumberDesc}.
102 * Helper method to check that the country calling code of the number matches the region it's
105 private boolean regionDialingFromMatchesNumber(PhoneNumber number, in regionDialingFromMatchesNumber() argument
107 List<String> regionCodes = getRegionCodesForCountryCode(number.getCountryCode()); in regionDialingFromMatchesNumber()
112 * Check whether a short number is a possible number when dialed from the given region. This
115 * @param number the short number to check
116 * @param regionDialingFrom the region from which the number is dialed
117 * @return whether the number is a possible short number
[all …]
DPhoneNumberUtil.java58 // 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 this
[all …]
DPhoneNumberMatcher.java45 * The phone number pattern used by {@link #find}, similar to
53 * <li>Number of digits is limited.
65 * The string "211-227 (2003)" is not a telephone number.
85 * Pattern to check that brackets match. Opening brackets should be closed within a phone number.
92 * Patterns used to extract phone numbers from a larger phone-number-like pattern. These are
95 * want to break up the phone-number-like text on more than one different kind of symbol at one
105 // phone number. Will match a pattern like "(650) 223 3345 (754) 223 3321".
107 // Breaks on a hyphen - e.g. "12345 - 332-445-1234 is my number."
112 // seen many instances of it used within a number.
114 // Breaks on a full stop - e.g. "12345. 332-445-1234 is my number."
[all …]
/external/ims/rcs/rcsmanager/src/java/com/android/ims/internal/
DContactNumberUtils.java51 * number = mNumberUtils.format(number);
52 * int result = mNumberUtils.validate(number);
69 * Format contact number to the common format
72 * @return formatted contact number.
75 String number = phoneNumber; in format() local
76 if (TextUtils.isEmpty(number)) { in format()
80 if(number.startsWith("*67") || number.startsWith("*82")) { in format()
81 number = number.substring(3); in format()
82 if (TextUtils.isEmpty(number)) { in format()
87 number = PhoneNumberUtils.stripSeparators(number); in format()
[all …]
/external/e2fsprogs/tests/f_ind_inode_collision/
Dexpect.15 Illegal block number passed to ext2fs_test_block_bitmap #16777215 for metadata block map
17 Multiply-claimed block(s) in inode 12: 41 40Illegal block number passed to ext2fs_test_block_bitmap…
18 Illegal block number passed to ext2fs_test_block_bitmap #1421529376 for multiply claimed block map
19 Illegal block number passed to ext2fs_test_block_bitmap #1421529376 for multiply claimed block map
20 Illegal block number passed to ext2fs_test_block_bitmap #16877 for multiply claimed block map
21 Illegal block number passed to ext2fs_test_block_bitmap #4096 for multiply claimed block map
22 Illegal block number passed to ext2fs_test_block_bitmap #1421529376 for multiply claimed block map
23 Illegal block number passed to ext2fs_test_block_bitmap #1421529376 for multiply claimed block map
24 Illegal block number passed to ext2fs_test_block_bitmap #1421529376 for multiply claimed block map
25 Illegal block number passed to ext2fs_test_block_bitmap #196608 for multiply claimed block map
[all …]
/external/libphonenumber/geocoder/src/com/google/i18n/phonenumbers/geocoding/
DPhoneNumberOfflineGeocoder.java29 * An offline geocoder which provides geographical information related to a phone number.
47 * Gets a {@link PhoneNumberOfflineGeocoder} instance to carry out international phone number
64 * number is from. If it could be from many territories, nothing is returned.
66 private String getCountryNameForNumber(PhoneNumber number, Locale language) { in getCountryNameForNumber() argument
68 phoneUtil.getRegionCodesForCountryCode(number.getCountryCode()); in getCountryNameForNumber()
74 if (phoneUtil.isValidNumberForRegion(number, regionCode)) { in getCountryNameForNumber()
75 // If the number has already been found valid for one region, then we don't know which in getCountryNameForNumber()
97 * Returns a text description for the given phone number, in the language provided. The
98 * description might consist of the name of the country where the phone number is from, or the
99 * name of the geographical area the phone number is from if more detailed information is
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue183/
DNumberBeanTest.java26 NumberBean number = new NumberBean(); in testNumberBean() local
27 number.number = 1; in testNumberBean()
30 String dump = yaml.dump(number); in testNumberBean()
32 assertEquals(new Long(1), loaded.number); in testNumberBean()
36 NumberBean number = new NumberBean(); in testNumberAsFloatInfinity() local
37 number.number = Float.POSITIVE_INFINITY; in testNumberAsFloatInfinity()
40 String dump = yaml.dump(number); in testNumberAsFloatInfinity()
42 assertEquals(Float.POSITIVE_INFINITY, loaded.number.floatValue()); in testNumberAsFloatInfinity()
46 NumberBean number = new NumberBean(); in testNumberAsDoubleInfinity() local
47 number.number = Double.POSITIVE_INFINITY; in testNumberAsDoubleInfinity()
[all …]
/external/swiftshader/third_party/LLVM/docs/CommandGuide/
Dllvm-bcanalyzer.pod69 =item B<Bitcode Version Number>
125 =item B<Number Of Bitcode Blocks>
127 The total number of blocks of any kind in the bitcode file.
129 =item B<Number Of Functions>
131 The total number of function definitions in the bitcode file.
133 =item B<Number Of Types>
135 The total number of types defined in the Global Types Pool.
137 =item B<Number Of Constants>
139 The total number of constants (of any type) defined in the Constant Pool.
141 =item B<Number Of Basic Blocks>
[all …]
/external/llvm/docs/CommandGuide/
Dllvm-bcanalyzer.rst68 **Bitcode Version Number**
124 **Number Of Bitcode Blocks**
126 The total number of blocks of any kind in the bitcode file.
128 **Number Of Functions**
130 The total number of function definitions in the bitcode file.
132 **Number Of Types**
134 The total number of types defined in the Global Types Pool.
136 **Number Of Constants**
138 The total number of constants (of any type) defined in the Constant Pool.
140 **Number Of Basic Blocks**
[all …]
/external/v8/src/ic/
Dic-state.cc97 GENERATE(Token::ADD, INT32, INT32, NUMBER); in GenerateAheadOfTime()
98 GENERATE(Token::ADD, INT32, NUMBER, NUMBER); in GenerateAheadOfTime()
100 GENERATE(Token::ADD, NUMBER, INT32, NUMBER); in GenerateAheadOfTime()
101 GENERATE(Token::ADD, NUMBER, NUMBER, NUMBER); in GenerateAheadOfTime()
102 GENERATE(Token::ADD, NUMBER, SMI, NUMBER); in GenerateAheadOfTime()
104 GENERATE(Token::ADD, SMI, INT32, NUMBER); in GenerateAheadOfTime()
105 GENERATE(Token::ADD, SMI, NUMBER, NUMBER); in GenerateAheadOfTime()
112 GENERATE(Token::BIT_AND, NUMBER, INT32, INT32); in GenerateAheadOfTime()
113 GENERATE(Token::BIT_AND, NUMBER, SMI, SMI); in GenerateAheadOfTime()
116 GENERATE(Token::BIT_AND, SMI, NUMBER, SMI); in GenerateAheadOfTime()
[all …]
/external/protobuf/js/binary/
Dwriter.js81 * @private {!Array<!Uint8Array|!Array<number>>}
86 * Total number of bytes in the blocks_ array. Does _not_ include bytes in
88 * @private {number}
105 * @private {!Array.<!Array.<number>>}
128 * @param {number} field
129 * @return {!Array.<number>}
144 * parent block and adds the number of bytes needed to encode that length to
146 * @param {!Array.<number>} bookmark
168 * @param {number} start The start of the range to write.
169 * @param {number} end The end of the range to write.
[all …]
Dutils.js56 * @type {number}
64 * @type {number}
72 * @param {number} value The number to split.
88 * @param {number} value The number to split.
121 * @param {number} value The number to split.
154 * Converts a floating-point number into 32-bit IEEE representation and stores
156 * @param {number} value
194 // Number is a denormal.
211 * Converts a floating-point number into 64-bit IEEE representation and stores
213 * @param {number} value
[all …]
/external/protobuf/src/google/protobuf/
Dextension_set.h82 // A function which, given an integer value, returns true if the number
85 typedef bool EnumValidityFunc(int number);
89 typedef bool EnumValidityFuncWithArg(const void* arg, int number);
124 // Find the extension with the given containing type and number.
125 virtual bool Find(int number, ExtensionInfo* output) = 0;
137 virtual bool Find(int number, ExtensionInfo* output);
157 // ExtensionSet. When parsing, if a tag number is encountered which is
172 int number, FieldType type,
175 int number, FieldType type,
179 int number, FieldType type,
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableClassToInstanceMapTest.java51 public Map<Class, Number> create(Object... elements) { in suite()
52 ImmutableClassToInstanceMap.Builder<Number> builder in suite()
55 Entry<Class, Number> entry = (Entry<Class, Number>) object; in suite()
83 Map<Class<? extends Number>, Number> in = Maps.newHashMap(); in testCopyOf_map_valid()
84 in.put(Number.class, 0); in testCopyOf_map_valid()
86 ClassToInstanceMap<Number> map = ImmutableClassToInstanceMap.copyOf(in); in testCopyOf_map_valid()
89 Number zero = map.getInstance(Number.class); in testCopyOf_map_valid()
99 Map<Class<? extends Number>, Number> nullKey = Collections.singletonMap( in testCopyOf_map_nulls()
100 null, (Number) 1.0); in testCopyOf_map_nulls()
107 Map<? extends Class<? extends Number>, Number> nullValue in testCopyOf_map_nulls()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dext2_err.et.in15 "Wrong magic number for ext2_filsys structure"
18 "Wrong magic number for badblocks_list structure"
21 "Wrong magic number for badblocks_iterate structure"
24 "Wrong magic number for inode_scan structure"
27 "Wrong magic number for io_channel structure"
30 "Wrong magic number for unix io_channel structure"
33 "Wrong magic number for io_manager structure"
36 "Wrong magic number for block_bitmap structure"
39 "Wrong magic number for inode_bitmap structure"
42 "Wrong magic number for generic_bitmap structure"
[all …]
Dext2_err.c12 N_( "Wrong magic number for ext2_filsys structure"),
13 N_( "Wrong magic number for badblocks_list structure"),
14 N_( "Wrong magic number for badblocks_iterate structure"),
15 N_( "Wrong magic number for inode_scan structure"),
16 N_( "Wrong magic number for io_channel structure"),
17 N_( "Wrong magic number for unix io_channel structure"),
18 N_( "Wrong magic number for io_manager structure"),
19 N_( "Wrong magic number for block_bitmap structure"),
20 N_( "Wrong magic number for inode_bitmap structure"),
21 N_( "Wrong magic number for generic_bitmap structure"),
[all …]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DRectRegion.java44 public RectRegion(Number minX, Number maxX, Number minY, Number maxY, String label) { in RectRegion()
51 public RectRegion(Number minX, Number maxX, Number minY, Number maxY) { in RectRegion()
59 public boolean containsValue(Number x, Number y) { in containsValue()
63 public boolean containsDomainValue(Number value) { in containsDomainValue()
68 public boolean containsRangeValue(Number value) { in containsRangeValue()
89 public boolean intersects(Number minX, Number maxX, Number minY, Number maxY) { in intersects()
93 …public boolean intersects(RectF region, Number visMinX, Number visMaxX, Number visMinY, Number vis… in intersects()
100 …public RectF getRectF(RectF plotRect, Number visMinX, Number visMaxX, Number visMinY, Number visMa… in getRectF()
131 …t<RectRegion> regionsWithin(List<RectRegion> regions, Number minX, Number maxX, Number minY, Numbe… in regionsWithin()
142 public Number getMinX() { in getMinX()
[all …]
/external/iproute2/man/man8/
Dlnstat.837 Print <count> number of intervals.
90 Number of entries in the neighbor table.
127 Number of table overflows. Happens if table is full and forced GC run (see
136 Number of entries in conntrack table.
139 Number of conntrack table lookups performed.
142 Number of \fBsearched\fP entries which were successful.
145 Number of conntrack entries added which were not expected before.
148 Number of packets seen which can not be tracked.
151 Number of packets seen which are already connected to a conntrack entry.
154 Number of conntrack entries which were removed.
[all …]
/external/libxml2/result/XPath/expr/
Dfunctions11 Expression: number("1.5")
12 Object is a number : 1.5
15 Expression: number('abc')
16 Object is a number : NaN
19 Expression: -number('abc')
20 Object is a number : NaN
24 Object is a number : 0
28 Object is a number : -1
32 Object is a number : 0
36 Object is a number : 0
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/fr-FR/
Dfr-FR_nk0_kpdf_phs.utf21 ! line_spec : line specification : 'key' = 'number of following values' , 'data type' + '! option…
31 ! the order, number and data_type for each section should match this reference description
36 numvectors = 1 , uint16 ; !specification for total number of vectors in the pdf file
2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2542 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2545 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2619 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2693 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2696 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2699 n_comps = 1 , uint8 ; !specification for phase sub table number of components
[all …]
/external/libphonenumber/carrier/src/com/google/i18n/phonenumbers/
DPhoneNumberToCarrierMapper.java27 * A phone prefix mapper which provides carrier information related to a phone number.
60 * Returns a carrier name for the given phone number, in the language provided. The carrier name
61 * is the one the number was originally allocated to, however if the country supports mobile
62 * number portability the number might not belong to the returned carrier anymore. If no mapping
65 * <p>This method assumes the validity of the number passed in has already been checked, and that
66 * the number is suitable for carrier lookup. We consider mobile and pager numbers possible
69 * @param number a valid phone number for which we want to get a carrier name
71 * @return a carrier name for the given phone number
73 public String getNameForValidNumber(PhoneNumber number, Locale languageCode) { in getNameForValidNumber() argument
78 return prefixFileReader.getDescriptionForNumber(number, langStr, scriptStr, regionStr); in getNameForValidNumber()
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/en-US/
Den-US_lh0_kpdf_phs.utf21 ! line_spec : line specification : 'key' = 'number of following values' , 'data type' + '! option…
31 ! the order, number and data_type for each section should match this reference description
36 numvectors = 1 , uint16 ; !specification for total number of vectors in the pdf file
3239 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3242 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3316 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3380 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3383 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3386 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3440 n_comps = 1 , uint8 ; !specification for phase sub table number of components
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/es-ES/
Des-ES_zl0_kpdf_phs.utf21 ! line_spec : line specification : 'key' = 'number of following values' , 'data type' + '! option…
31 ! the order, number and data_type for each section should match this reference description
36 numvectors = 1 , uint16 ; !specification for total number of vectors in the pdf file
2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2584 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2587 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2661 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2664 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2738 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2741 n_comps = 1 , uint8 ; !specification for phase sub table number of components
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/de-DE/
Dde-DE_gl0_kpdf_phs.utf21 ! line_spec : line specification : 'key' = 'number of following values' , 'data type' + '! option…
31 ! the order, number and data_type for each section should match this reference description
36 numvectors = 1 , uint16 ; !specification for total number of vectors in the pdf file
2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2603 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2606 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2680 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2683 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2757 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2760 n_comps = 1 , uint8 ; !specification for phase sub table number of components
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/en-GB/
Den-GB_kh0_kpdf_phs.utf21 ! line_spec : line specification : 'key' = 'number of following values' , 'data type' + '! option…
31 ! the order, number and data_type for each section should match this reference description
36 numvectors = 1 , uint16 ; !specification for total number of vectors in the pdf file
2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2613 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2687 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2690 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2693 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2696 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2699 n_comps = 1 , uint8 ; !specification for phase sub table number of components
[all …]

12345678910>>...489