Home
last modified time | relevance | path

Searched +full:is +full:- +full:number (Results 1 – 25 of 1399) sorted by relevance

12345678910>>...56

/third_party/libphonenumber/cpp/src/phonenumbers/
Dphonenumberutil.h7 // http://www.apache.org/licenses/LICENSE-2.0
10 // distributed under the License is distributed on an "AS IS" BASIS,
51 // be provided using CLDR two-letter region-code format. These should be in
52 // upper-case. The list of the codes can be found here:
68 // This type is neither copyable nor movable.
76 // in ITU-T Recommendation E.123. However we follow local conventions such as
77 // using '-' instead of whitespace as separators. For example, the number of
80 // format is as per INTERNATIONAL format but with no formatting applied e.g.
81 // "+41446681800". RFC3966 is as per INTERNATIONAL format, but with all spaces
83 // number extension appended with ";ext=". It also will have a prefix of
[all …]
Dphonenumberutil.cc7 // http://www.apache.org/licenses/LICENSE-2.0
10 // distributed under the License is distributed on an "AS IS" BASIS,
69 // find numbers in text and to decide what is a viable phone number. This
73 // 'x' as that is found as a placeholder for carrier information in some phone
74 // numbers. Full-width variants are also present.
75 // To find out the unicode code-point of the characters below in vim, highlight
76 // the character and type 'ga'. Note that the - is used to express ranges of
77 // full-width punctuation below, as well as being present in the expression
78 // itself. In emacs, you can use M-x unicode-what to query information about the
82 /* "-x‐-―−ー--/  ­<U+200B><U+2060> ()()[].\\[\\]/~⁓∼" */
[all …]
/third_party/libphonenumber/migrator/
DREADME.md3-47 country code](https://countrycode.org/). If inputted numbers match any of the supported intern…
7 …ary can be used as either a [command line tool](#command-line-usage) or a [web application](#web-a…
9Number Migration``` - input a single E.164 phone number with its corresponding BCP-47 country code…
11 ```File Migration``` - input a text file location with one E.164 number per line along with the BCP
13 ```Custom Recipe Migration``` - specify a [custom recipe](#custom-recipe-migrations) file to use fo…
15- find all phone numbers in a given input that were migrated with given migration recipes. The rep…
21-n, --number | -f, --file)``` - either the phone number input or file input for a given migration.…
23 ```-c, --countryCode``` - the BCP-47 country code that corresponds to the given phone number input.…
27 ```-r, --customRecipe``` - the path to a csv file containing custom migration recipes which follow …
29-e, --exportInvalidMigrations``` - the boolean command line flag specifying that text files create…
[all …]
/third_party/typescript/tests/baselines/reference/
DpropertiesAndIndexersForNumericNames.errors.txt1 …,12): error TS2411: Property '"1"' of type 'string' is not assignable to 'number' index type 'numb…
2 …Names.ts(7,12): error TS2411: Property '"-1"' of type 'string' is not assignable to 'number' index…
3 …ames.ts(8,12): error TS2411: Property '"-2.5"' of type 'string' is not assignable to 'number' inde…
4 …rror TS2411: Property '"3.141592"' of type 'string' is not assignable to 'number' index type 'numb…
5 ….ts(10,12): error TS2411: Property '"1.2e-20"' of type 'string' is not assignable to 'number' inde…
6 …rror TS2411: Property '"Infinity"' of type 'string' is not assignable to 'number' index type 'numb…
7 …s.ts(12,12): error TS2411: Property '"-Infinity"' of type 'string' is not assignable to 'number' i…
8 …2): error TS2411: Property '"NaN"' of type 'string' is not assignable to 'number' index type 'numb…
13 [i: number]: number;
17 public "1": string = "number"; // Error
[all …]
DarrayLiterals3.errors.txt1 …expressions/arrayLiterals/arrayLiterals3.ts(10,5): error TS2322: Type '[]' is not assignable to ty…
3 …ssions/arrayLiterals/arrayLiterals3.ts(11,38): error TS2322: Type 'string' is not assignable to ty…
4 …xpressions/arrayLiterals/arrayLiterals3.ts(11,48): error TS2322: Type 'number' is not assignable t…
5 …Literals/arrayLiterals3.ts(11,51): error TS2322: Type 'boolean' is not assignable to type 'number'.
6 …erals3.ts(17,5): error TS2322: Type '[number, number, string, boolean]' is not assignable to type …
8 …/arrayLiterals3.ts(33,5): error TS2322: Type 'number[]' is not assignable to type '[number, number
10 …/arrayLiterals/arrayLiterals3.ts(34,5): error TS2322: Type '(string | number)[]' is not assignable…
11 Type 'string | number' is not assignable to type 'Number'.
12 Type 'string' is not assignable to type 'Number'.
16 // Each element expression in a non-empty array literal is processed as follows:
[all …]
/third_party/typescript/src/lib/
Des2015.core.d.ts3 * Returns the value of the first element in the array where predicate is true, and undefined
6 * order, until it finds one where predicate returns true. If such an element is found, find
9 * predicate. If it is not provided, undefined is used instead.
11 …find<S extends T>(predicate: (this: void, value: T, index: number, obj: T[]) => value is S, thisAr…
12 find(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): T | undefined;
15 * Returns the index of the first element in the array where predicate is true, and -1
18 * order, until it finds one where predicate returns true. If such an element is found,
19 * findIndex immediately returns that element index. Otherwise, findIndex returns -1.
21 * predicate. If it is not provided, undefined is used instead.
23 findIndex(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): number;
[all …]
Des5.d.ts5 declare var NaN: number;
6 declare var Infinity: number;
16 * @param string A string to convert into a number.
17 * @param radix A value between 2 and 36 that specifies the base of the number in `string`.
18 * If this argument is not supplied, strings with a prefix of '0x' are considered hexadecimal.
21 declare function parseInt(string: string, radix?: number): number;
24 * Converts a string to a floating-point number.
25 * @param string A string that contains a floating-point number.
27 declare function parseFloat(string: string): number;
30 * Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number).
[all …]
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
DPhoneNumberUtil.java8 * http://www.apache.org/licenses/LICENSE-2.0
11 * distributed under the License is distributed on an "AS IS" BASIS,
50 …* our <a href="https://groups.google.com/forum/#!aboutgroup/libphonenumber-discuss">mailing list</…
53 * CLDR two-letter region-code format. These should be in upper-case. The list of the codes
62 // The minimum and maximum length of the national significant number.
69 // input from overflowing the regular-expression engine.
72 // Region-code for the unknown region.
78 // this is relevant is when determining the length of the national destination code, which should
84 // carrier indicator, and beyond that are geographically assigned: this carrier indicator is not
91 // fixed-line or mobile numbers, are not listed here, since we consider FIXED_LINE_OR_MOBILE to be
[all …]
DShortNumberInfo.java8 * http://www.apache.org/licenses/LICENSE-2.0
11 * distributed under the License is distributed on an "AS IS" BASIS,
43 * @author David Yonge-Mallo
53 // In these countries, if extra digits are added to an emergency number, it no longer connects
75 // MatcherApi supports the basic matching method for checking if a given national number matches
76 // a national number pattern defined in the given {@code PhoneNumberDesc}.
99 * non-geographical country calling codes, the region code 001 is returned. Also, in the case
100 * of no region code being found, an empty list is returned.
109 * Helper method to check that the country calling code of the number matches the region it's
112 private boolean regionDialingFromMatchesNumber(PhoneNumber number, in regionDialingFromMatchesNumber() argument
[all …]
/third_party/typescript/lib/
Dlib.es2015.core.d.ts5 License at http://www.apache.org/licenses/LICENSE-2.0
7 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
10 MERCHANTABLITY OR NON-INFRINGEMENT.
18 /// <reference no-default-lib="true"/>
23 * Returns the value of the first element in the array where predicate is true, and undefined
26 * order, until it finds one where predicate returns true. If such an element is found, find
29 * predicate. If it is not provided, undefined is used instead.
31 …find<S extends T>(predicate: (this: void, value: T, index: number, obj: T[]) => value is S, thisAr…
32 find(predicate: (value: T, index: number, obj: T[]) => unknown, thisArg?: any): T | undefined;
35 * Returns the index of the first element in the array where predicate is true, and -1
[all …]
Dlib.es5.d.ts5 License at http://www.apache.org/licenses/LICENSE-2.0
7 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
10 MERCHANTABLITY OR NON-INFRINGEMENT.
18 /// <reference no-default-lib="true"/>
25 declare var NaN: number;
26 declare var Infinity: number;
36 * @param string A string to convert into a number.
37 * @param radix A value between 2 and 36 that specifies the base of the number in `string`.
38 * If this argument is not supplied, strings with a prefix of '0x' are considered hexadecimal.
41 declare function parseInt(string: string, radix?: number): number;
[all …]
/third_party/nghttp2/doc/
Dh2load.14 .nr rst2man-indent-level 0
7 \\$1 \\n[an-margin]
8 level \\n[rst2man-indent-level]
9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
10 -
11 \\n[rst2man-indent0]
12 \\n[rst2man-indent1]
13 \\n[rst2man-indent2]
18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
19 . nr rst2man-indent-level +1
[all …]
/third_party/tzdata/
Dnewstrftime.3.txt4 strftime - format date and time
12 cc ... -ltz
25 Each conversion specification is replaced by the characters as follows
28 the description. If a bracketed member name is followed by "+",
29 strftime can use the named member even though POSIX.1-2017 does not
30 list it; if the name is followed by "-", strftime ignores the member
31 even though POSIX.1-2017 lists it which means portable code should set
36 %A is replaced by the locale's full weekday name. [tm_wday]
38 %a is replaced by the locale's abbreviated weekday name. [tm_wday]
40 %B is replaced by the locale's full month name. [tm_mon]
[all …]
/third_party/mesa3d/src/panfrost/perf/
DG72.xml1 <!--
2 Copyright © 2017-2020 ARM Limited.
3 Copyright © 2021-2022 Collabora, Ltd.
6 Permission is hereby granted, free of charge, to any person obtaining a
11 Software is furnished to do so, subject to the following conditions:
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 -->
27 …unter="GPU_ACTIVE" title="GPU Cycles" name="GPU active" description="The number of cycles where th…
28 …"IRQ_ACTIVE" title="GPU Cycles" name="Interrupt active" description="The number of cycles where th…
29 …ounter="JS0_JOBS" title="GPU Jobs" name="Fragment jobs" description="The number of jobs processed …
[all …]
DG71.xml1 <!--
2 Copyright © 2017-2020 ARM Limited.
3 Copyright © 2021-2022 Collabora, Ltd.
6 Permission is hereby granted, free of charge, to any person obtaining a
11 Software is furnished to do so, subject to the following conditions:
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 -->
27 …unter="GPU_ACTIVE" title="GPU Cycles" name="GPU active" description="The number of cycles where th…
28 …"IRQ_ACTIVE" title="GPU Cycles" name="Interrupt active" description="The number of cycles where th…
29 …ounter="JS0_JOBS" title="GPU Jobs" name="Fragment jobs" description="The number of jobs processed …
[all …]
DG68.xml1 <!--
2 Copyright © 2017-2020 ARM Limited.
3 Copyright © 2021-2022 Collabora, Ltd.
6 Permission is hereby granted, free of charge, to any person obtaining a
11 Software is furnished to do so, subject to the following conditions:
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 -->
27 …unter="GPU_ACTIVE" title="GPU Cycles" name="GPU active" description="The number of cycles where th…
28 …"IRQ_ACTIVE" title="GPU Cycles" name="Interrupt active" description="The number of cycles where th…
29 …ounter="JS0_JOBS" title="GPU Jobs" name="Fragment jobs" description="The number of jobs processed …
[all …]
DG78.xml1 <!--
2 Copyright © 2017-2020 ARM Limited.
3 Copyright © 2021-2022 Collabora, Ltd.
6 Permission is hereby granted, free of charge, to any person obtaining a
11 Software is furnished to do so, subject to the following conditions:
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 -->
27 …unter="GPU_ACTIVE" title="GPU Cycles" name="GPU active" description="The number of cycles where th…
28 …"IRQ_ACTIVE" title="GPU Cycles" name="Interrupt active" description="The number of cycles where th…
29 …ounter="JS0_JOBS" title="GPU Jobs" name="Fragment jobs" description="The number of jobs processed …
[all …]
DG77.xml1 <!--
2 Copyright © 2017-2020 ARM Limited.
3 Copyright © 2021-2022 Collabora, Ltd.
6 Permission is hereby granted, free of charge, to any person obtaining a
11 Software is furnished to do so, subject to the following conditions:
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 -->
27 …unter="GPU_ACTIVE" title="GPU Cycles" name="GPU active" description="The number of cycles where th…
28 …"IRQ_ACTIVE" title="GPU Cycles" name="Interrupt active" description="The number of cycles where th…
29 …ounter="JS0_JOBS" title="GPU Jobs" name="Fragment jobs" description="The number of jobs processed …
[all …]
DG57.xml1 <!--
2 Copyright © 2017-2020 ARM Limited.
3 Copyright © 2021-2022 Collabora, Ltd.
6 Permission is hereby granted, free of charge, to any person obtaining a
11 Software is furnished to do so, subject to the following conditions:
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 -->
27 …unter="GPU_ACTIVE" title="GPU Cycles" name="GPU active" description="The number of cycles where th…
28 …"IRQ_ACTIVE" title="GPU Cycles" name="Interrupt active" description="The number of cycles where th…
29 …ounter="JS0_JOBS" title="GPU Jobs" name="Fragment jobs" description="The number of jobs processed …
[all …]
DG76.xml1 <!--
2 Copyright © 2017-2020 ARM Limited.
3 Copyright © 2021-2022 Collabora, Ltd.
6 Permission is hereby granted, free of charge, to any person obtaining a
11 Software is furnished to do so, subject to the following conditions:
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 -->
27 …unter="GPU_ACTIVE" title="GPU Cycles" name="GPU active" description="The number of cycles where th…
28 …"IRQ_ACTIVE" title="GPU Cycles" name="Interrupt active" description="The number of cycles where th…
29 …ounter="JS0_JOBS" title="GPU Jobs" name="Fragment jobs" description="The number of jobs processed …
[all …]
/third_party/skia/modules/canvaskit/npm_build/types/
Dindex.d.ts8 * @param file - the name of the file that is about to be loaded.
16 * Constructs a Color with the same API as CSS's rgba(), that is
17 * Internally, Colors are four unpremultiplied 32-bit floats: r, g, b, a.
21 * @param r - red value, clamped to [0, 255].
22 * @param g - green value, clamped to [0, 255].
23 * @param b - blue value, clamped to [0, 255].
24 * @param a - alpha value, from 0 to 1.0. By default is 1.0 (opaque).
26 Color(r: number, g: number, b: number, a?: number): Color;
29 * Construct a 4-float color. Float values are typically between 0.0 and 1.0.
30 * @param r - red value.
[all …]
/third_party/curl/tests/
DFILEFORMAT.md1 <!--
4 SPDX-License-Identifier: curl
5 -->
9 The curl test suite's file format is simple and extendable, closely resembling
12 in its own line. Comments are either XML-style (enclosed with `<!--` and
13 `-->`) or shell script style (beginning with `#`) and must appear on their own
20 `tests/data/testNUM`, where `NUM` is the unique test number, and must begin
25 When a test is to be executed, the source file is first preprocessed and
27 version of the test file is stored as `%LOGDIR/testNUM`. That version is what
34 is in particular good for test cases where the test tool is expected to pass
[all …]
/third_party/libphonenumber/javascript/i18n/phonenumbers/
Dphonenumberutil.js9 * http://www.apache.org/licenses/LICENSE-2.0
12 * distributed under the License is distributed on an "AS IS" BASIS,
24 * be provided using CLDR two-letter region-code format. These should be in
25 * upper-case. The list of the codes can be found here:
70 // This indicates the string passed is not a valid number. Either the string
71 // had less than 3 digits in it or had an invalid phone-context parameter.
72 // More specifically, the number failed to match the regular expression
74 NOT_A_NUMBER: 'The string supplied did not seem to be a phone number',
76 // after this was stripped from the number, had less digits than any valid
77 // phone number (including country calling code) could have.
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_framebuffer_mixed_samples.txt31 Number
38 This extension is written against the OpenGL 4.3
42 This extension is written as a superset of EXT_raster_multisample, since
43 so many of the edits overlap each other and it is not expected for an
64 depth/stencil sample count that is larger than the color sample count.
66 determine the portion of a pixel that is "covered". It can be useful to
68 This coverage is then "reduced" to a collection of covered color samples,
83 One expected use case for this functionality is Stencil-then-Cover path
88 two-step process, internal edges are fully covered when antialiasing is
89 applied and there is no corruption on these edges.
[all …]
/third_party/openGLES/extensions/NV/
DNV_framebuffer_mixed_samples.txt31 Number
38 This extension is written against the OpenGL 4.3
42 This extension is written as a superset of EXT_raster_multisample, since
43 so many of the edits overlap each other and it is not expected for an
64 depth/stencil sample count that is larger than the color sample count.
66 determine the portion of a pixel that is "covered". It can be useful to
68 This coverage is then "reduced" to a collection of covered color samples,
83 One expected use case for this functionality is Stencil-then-Cover path
88 two-step process, internal edges are fully covered when antialiasing is
89 applied and there is no corruption on these edges.
[all …]

12345678910>>...56