| /external/v8/test/webkit/fast/js/ |
| D | toString-number-expected.txt | 24 Test the conversion performed by the function Number.prototype.toString. 29 PASS Number(0).toString() is "0" 30 PASS Number.prototype.toString.call(0) is "0" 31 PASS Number.prototype.toString.call(new Number(0)) is "0" 32 PASS Number("0").toString() is "0" 33 PASS Number(0).toString(10) is "0" 34 PASS Number(0).toString(2) is "0" 35 PASS Number.prototype.toString.call(0, 2) is "0" 36 PASS Number.prototype.toString.call(new Number(0), 2) is "0" 37 PASS Number(0).toString(36) is "0" [all …]
|
| /external/v8/test/webkit/ |
| D | dfg-cfg-simplify-eliminate-set-local-type-check-then-typeof-expected.txt | 29 PASS result[0] is "number" 31 PASS result[0] is "number" 33 PASS result[0] is "number" 35 PASS result[0] is "number" 37 PASS result[0] is "number" 39 PASS result[0] is "number" 41 PASS result[0] is "number" 43 PASS result[0] is "number" 45 PASS result[0] is "number" 47 PASS result[0] is "number" [all …]
|
| /external/v8/test/mjsunit/ |
| D | number-is.js | 28 // Test number predicates that Harmony adds to the Number constructor: 31 assertTrue(Number.isFinite(0)); 32 assertTrue(Number.isFinite(Number.MIN_VALUE)); 33 assertTrue(Number.isFinite(Number.MAX_VALUE)); 34 assertTrue(Number.isFinite(Number.MIN_SAFE_INTEGER)); 35 assertTrue(Number.isFinite(Number.MIN_SAFE_INTEGER - 13)); 36 assertTrue(Number.isFinite(Number.MAX_SAFE_INTEGER)); 37 assertTrue(Number.isFinite(Number.MAX_SAFE_INTEGER + 23)); 38 assertFalse(Number.isFinite(Number.NaN)); 39 assertFalse(Number.isFinite(Number.POSITIVE_INFINITY)); [all …]
|
| /external/v8/test/webkit/fast/js/kde/ |
| D | Number-expected.txt | 29 PASS Number() is 0 30 PASS Number(1) is 1 31 PASS Number(1.1) is 1.1 32 PASS Number('1.2') is 1.2 33 PASS isNaN(Number('a')) is true 34 PASS (new Number()).valueOf() is 0 35 PASS (new Number(.4)).valueOf() is 0.4 36 PASS (new Number('1.')).valueOf() is 1 37 PASS isNaN(new Number('a')) is true 38 PASS isNaN(Number.NaN) is true [all …]
|
| D | Number.js | 25 shouldBe("Number()", "0"); 26 shouldBe("Number(1)", "1"); 27 shouldBe("Number(1.1)", "1.1"); 28 shouldBe("Number('1.2')", "1.2"); 29 shouldBe("isNaN(Number('a'))", "true"); 31 shouldBe("(new Number()).valueOf()", "0"); 32 shouldBe("(new Number(.4)).valueOf()", "0.4"); 33 shouldBe("(new Number('1.')).valueOf()", "1"); 34 shouldBe("isNaN(new Number('a'))", "true"); 36 shouldBe("isNaN(Number.NaN)", "true"); [all …]
|
| /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/serialization/wiki_42/ |
| D | expected.html | 3 <meta charset="UTF-8"><title>42 (number) - Wikipedia, the free encyclopedia</title> 5 …="application/x-wiki" title="Edit this page" href="/w/index.php?title=42_(number)&action=edit"> 6 <link rel="edit" title="Edit this page" href="/w/index.php?title=42_(number)&action=edit"> 13 <link rel="canonical" href="http://en.wikipedia.org/wiki/42_(number)"> 22 …number)","wgTitle":"42 (number)","wgCurRevisionId":592782173,"wgRevisionId":592782173,"wgArticleId… 41 <h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">42 (number)</span></h1> 45 …wikipedia.org/w/index.php?title=Special:Log&type=review&page=42_(number)">accepted</a> on … 59 … <a class="external text" href="//en.wikipedia.org/w/index.php?title=42_(number)&action=edit">… 67 …ft; white-space: nowrap; font-size:smaller"><a href="/wiki/41_(number)" title="41 (number)"><span … 69 …ht; white-space: nowrap; font-size:smaller"><a href="/wiki/43_(number)" title="43 (number)">43 <sp… [all …]
|
| D | src.html | 4 <meta charset="UTF-8" /><title>42 (number) - Wikipedia, the free encyclopedia</title> 6 …"application/x-wiki" title="Edit this page" href="/w/index.php?title=42_(number)&action=edit" … 7 <link rel="edit" title="Edit this page" href="/w/index.php?title=42_(number)&action=edit" /> 14 <link rel="canonical" href="http://en.wikipedia.org/wiki/42_(number)" /> 23 …number)","wgTitle":"42 (number)","wgCurRevisionId":592782173,"wgRevisionId":592782173,"wgArticleId… 42 <h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">42 (number)</span></h1> 46 …wikipedia.org/w/index.php?title=Special:Log&type=review&page=42_(number)">accepted</a> on … 60 … <a class="external text" href="//en.wikipedia.org/w/index.php?title=42_(number)&action=edit">… 68 …ft; white-space: nowrap; font-size:smaller"><a href="/wiki/41_(number)" title="41 (number)"><span … 70 …ht; white-space: nowrap; font-size:smaller"><a href="/wiki/43_(number)" title="43 (number)">43 <sp… [all …]
|
| /external/v8/src/ic/ |
| D | ic-state.cc | 92 GENERATE(Token::ADD, INT32, INT32, NUMBER, NO_OVERWRITE); in GenerateAheadOfTime() 93 GENERATE(Token::ADD, INT32, INT32, NUMBER, OVERWRITE_LEFT); in GenerateAheadOfTime() 94 GENERATE(Token::ADD, INT32, NUMBER, NUMBER, NO_OVERWRITE); in GenerateAheadOfTime() 95 GENERATE(Token::ADD, INT32, NUMBER, NUMBER, OVERWRITE_LEFT); in GenerateAheadOfTime() 96 GENERATE(Token::ADD, INT32, NUMBER, NUMBER, OVERWRITE_RIGHT); in GenerateAheadOfTime() 100 GENERATE(Token::ADD, NUMBER, INT32, NUMBER, NO_OVERWRITE); in GenerateAheadOfTime() 101 GENERATE(Token::ADD, NUMBER, INT32, NUMBER, OVERWRITE_LEFT); in GenerateAheadOfTime() 102 GENERATE(Token::ADD, NUMBER, INT32, NUMBER, OVERWRITE_RIGHT); in GenerateAheadOfTime() 103 GENERATE(Token::ADD, NUMBER, NUMBER, NUMBER, NO_OVERWRITE); in GenerateAheadOfTime() 104 GENERATE(Token::ADD, NUMBER, NUMBER, NUMBER, OVERWRITE_LEFT); in GenerateAheadOfTime() [all …]
|
| /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
| D | ShortNumberInfo.java | 50 // In these countries, if extra digits are added to an emergency number, it no longer connects 73 // MatcherApi supports the basic matching method for checking if a given national number matches 74 // a national number patten or a possible number patten defined in the given 104 * Check whether a short number is a possible number when dialled from a region, given the number 105 * in the form of a string, and the region where the number is dialed from. This provides a more 108 * @param shortNumber the short number to check as a string 109 * @param regionDialingFrom the region from which the number is dialed 110 * @return whether the number is a possible short number 128 * Check whether a short number is a possible number when dialed from the given region. This 131 * @param number the short number to check [all …]
|
| D | PhoneNumberUtil.java | 71 // The minimum and maximum length of the national significant number. 89 // The prefix that needs to be inserted in front of a Colombian landline number when dialed from 109 // characters in this map must not be removed from a number when dialling, otherwise the call 120 // includes digits, ASCII letters and number grouping symbols such as "-" and " ". 238 // Regular expression of acceptable characters that may start a phone number for the purposes of 241 // does not contain alpha characters, although they may be used later in the number. It also does 243 // information value when parsing a number. 247 // Regular expression of characters typically used to start a second phone number for the purposes 248 // of parsing. This allows us to strip off parts of the number that are actually the start of 249 // another number, such as for: (530) 583-6985 x302/x2303 -> the second extension here makes this [all …]
|
| D | PhoneNumberMatcher.java | 45 * 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/libphonenumber/geocoder/src/com/google/i18n/phonenumbers/geocoding/ |
| D | PhoneNumberOfflineGeocoder.java | 29 * 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() 76 // If we can't assign the phone number as definitely belonging to only one territory, 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/llvm/docs/CommandGuide/ |
| D | llvm-bcanalyzer.rst | 68 **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/guava/guava-tests/test/com/google/common/collect/ |
| D | ImmutableClassToInstanceMapTest.java | 51 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/protobuf/src/google/protobuf/ |
| D | extension_set.h | 79 // A function which, given an integer value, returns true if the number 82 typedef bool EnumValidityFunc(int number); 86 typedef bool EnumValidityFuncWithArg(const void* arg, int number); 121 // Find the extension with the given containing type and number. 122 virtual bool Find(int number, ExtensionInfo* output) = 0; 134 virtual bool Find(int number, ExtensionInfo* output); 154 // ExtensionSet. When parsing, if a tag number is encountered which is 168 int number, FieldType type, 171 int number, FieldType type, 175 int number, FieldType type, [all …]
|
| /external/e2fsprogs/lib/ext2fs/ |
| D | ext2_err.et.in | 15 "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 …]
|
| D | ext2_err.c | 12 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/ |
| D | RectRegion.java | 44 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/libphonenumber/carrier/src/com/google/i18n/phonenumbers/ |
| D | PhoneNumberToCarrierMapper.java | 27 * 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/fr-FR/ |
| D | fr-FR_nk0_kpdf_phs.utf | 21 ! 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/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/en-US/ |
| D | en-US_lh0_kpdf_phs.utf | 21 ! 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/en-GB/ |
| D | en-GB_kh0_kpdf_phs.utf | 21 ! 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 …]
|
| /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/de-DE/ |
| D | de-DE_gl0_kpdf_phs.utf | 21 ! 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/es-ES/ |
| D | es-ES_zl0_kpdf_phs.utf | 21 ! 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/libxml2/result/XPath/expr/ |
| D | functions | 11 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 …]
|