Home
last modified time | relevance | path

Searched full:for (Results 1 – 25 of 18709) sorted by relevance

12345678910>>...749

/third_party/typescript/tests/baselines/reference/
Dfor-inStatements.symbols1 === tests/cases/conformance/statements/for-inStatements/for-inStatements.ts ===
3 >aString : Symbol(aString, Decl(for-inStatements.ts, 0, 3))
5 for (aString in {}) { }
6 >aString : Symbol(aString, Decl(for-inStatements.ts, 0, 3))
9 >anAny : Symbol(anAny, Decl(for-inStatements.ts, 3, 3))
11 for (anAny in {}) { }
12 >anAny : Symbol(anAny, Decl(for-inStatements.ts, 3, 3))
14 for (var x in {}) { }
15 …x, Decl(for-inStatements.ts, 6, 8), Decl(for-inStatements.ts, 7, 8), Decl(for-inStatements.ts, 8, …
17 for (var x in []) { }
[all …]
Dfor-inStatementsInvalid.symbols1 === tests/cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts ===
3 >aNumber : Symbol(aNumber, Decl(for-inStatementsInvalid.ts, 0, 3))
5 for (aNumber in {}) { }
6 >aNumber : Symbol(aNumber, Decl(for-inStatementsInvalid.ts, 0, 3))
9 >aBoolean : Symbol(aBoolean, Decl(for-inStatementsInvalid.ts, 3, 3))
11 for (aBoolean in {}) { }
12 >aBoolean : Symbol(aBoolean, Decl(for-inStatementsInvalid.ts, 3, 3))
15 >aRegExp : Symbol(aRegExp, Decl(for-inStatementsInvalid.ts, 6, 3))
18 for (aRegExp in {}) { }
19 >aRegExp : Symbol(aRegExp, Decl(for-inStatementsInvalid.ts, 6, 3))
[all …]
Dfor-inStatementsInvalid.errors.txt1 …/cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(2,6): error TS2405: The …
2 …/cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(5,6): error TS2405: The …
3 …/cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(8,6): error TS2405: The …
4 …cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(10,10): error TS2404: The…
5 …cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(13,15): error TS2407: The…
6 …cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(17,15): error TS2407: The…
7 …cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(18,15): error TS2407: The…
8 …cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(19,15): error TS2407: The…
9 …cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(20,15): error TS2407: The…
10 …cases/conformance/statements/for-inStatements/for-inStatementsInvalid.ts(22,15): error TS2407: The…
[all …]
Dfor-inStatementsArray.symbols1 === tests/cases/conformance/statements/for-inStatements/for-inStatementsArray.ts ===
3 >a : Symbol(a, Decl(for-inStatementsArray.ts, 0, 3))
7 >b : Symbol(b, Decl(for-inStatementsArray.ts, 1, 3))
9 for (let x in a) {
10 >x : Symbol(x, Decl(for-inStatementsArray.ts, 3, 8))
11 >a : Symbol(a, Decl(for-inStatementsArray.ts, 0, 3))
14 >a1 : Symbol(a1, Decl(for-inStatementsArray.ts, 4, 7))
15 >a : Symbol(a, Decl(for-inStatementsArray.ts, 0, 3))
16 >x : Symbol(x, Decl(for-inStatementsArray.ts, 3, 8))
19 >a2 : Symbol(a2, Decl(for-inStatementsArray.ts, 5, 7))
[all …]
Dfor-inStatements.js1 //// [for-inStatements.ts]
3 for (aString in {}) { }
6 for (anAny in {}) { }
8 for (var x in {}) { }
9 for (var x in []) { }
10 for (var x in [1, 2, 3, 4, 5]) { }
13 for (var x in fn()) { }
15 for (var x in /[a-z]/) { }
16 for (var x in new Date()) { }
20 for (var x in c || d) { }
[all …]
DforStatementsMultipleValidDecl.js4 for (var x: number; ;) { }
5 for (var x = 2; ;) { }
7 for (var x = <number>undefined; ;) { }
10 for (var x = 'this is a string'; ;) { }
14 for (var p: Point; ;) { }
15 for (var p = { x: 1, y: 2 }; ;) { }
16 for (var p: Point = { x: 0, y: undefined }; ;) { }
17 for (var p = { x: 1, y: <number>undefined }; ;) { }
18 for (var p: { x: number; y: number; } = { x: 1, y: 2 }; ;) { }
19 for (var p = <{ x: number; y: number; }>{ x: 0, y: undefined }; ;) { }
[all …]
Dfor-inStatementsInvalid.js1 //// [for-inStatementsInvalid.ts]
3 for (aNumber in {}) { }
6 for (aBoolean in {}) { }
9 for (aRegExp in {}) { }
11 for (var idx : number in {}) { }
14 for (var x in fn()) { }
18 for (var x in c || d) { }
19 for (var x in e ? c : d) { }
20 for (var x in 42 ? c : d) { }
21 for (var x in '' ? c : d) { }
[all …]
Dfor-inStatements.errors.txt1 tests/cases/conformance/statements/for-inStatements/for-inStatements.ts(33,18): error TS2403: Subse…
2 tests/cases/conformance/statements/for-inStatements/for-inStatements.ts(50,18): error TS2403: Subse…
3 …ts/cases/conformance/statements/for-inStatements/for-inStatements.ts(79,15): error TS2407: The rig…
6 ==== tests/cases/conformance/statements/for-inStatements/for-inStatements.ts (3 errors) ====
8 for (aString in {}) { }
11 for (anAny in {}) { }
13 for (var x in {}) { }
14 for (var x in []) { }
15 for (var x in [1, 2, 3, 4, 5]) { }
18 for (var x in fn()) { }
[all …]
DdeclFileMethods.js5 /** This comment should appear for foo*/
8 /** This is comment for function signature*/
10 /** this is comment for b*/
25 /** This comment should appear for privateFoo*/
28 /** This is comment for function signature*/
30 /** this is comment for b*/
44 /** This comment should appear for static foo*/
47 /** This is comment for function signature*/
49 /** this is comment for b*/
63 /** This comment should appear for privateStaticFoo*/
[all …]
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-aat-layout.h8 * software and its documentation for any purpose, provided that the
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
81 …* The possible feature types defined for AAT shaping, from Apple [Font Feature Registry](https://d…
136 …* @HB_AAT_LAYOUT_FEATURE_SELECTOR_ALL_TYPE_FEATURES_ON: for #HB_AAT_LAYOUT_FEATURE_TYPE_ALL_TYPOGR…
137 …* @HB_AAT_LAYOUT_FEATURE_SELECTOR_ALL_TYPE_FEATURES_OFF: for #HB_AAT_LAYOUT_FEATURE_TYPE_ALL_TYPOG…
138 * @HB_AAT_LAYOUT_FEATURE_SELECTOR_REQUIRED_LIGATURES_ON: for #HB_AAT_LAYOUT_FEATURE_TYPE_LIGATURES
139 * @HB_AAT_LAYOUT_FEATURE_SELECTOR_REQUIRED_LIGATURES_OFF: for #HB_AAT_LAYOUT_FEATURE_TYPE_LIGATURES
140 * @HB_AAT_LAYOUT_FEATURE_SELECTOR_COMMON_LIGATURES_ON: for #HB_AAT_LAYOUT_FEATURE_TYPE_LIGATURES
141 * @HB_AAT_LAYOUT_FEATURE_SELECTOR_COMMON_LIGATURES_OFF: for #HB_AAT_LAYOUT_FEATURE_TYPE_LIGATURES
[all …]
/third_party/skia/third_party/externals/icu/source/data/zone/
Dnn.txt75 ld{"sommartid for Amazonas"}
76 lg{"tidssone for Amazonas"}
77 ls{"normaltid for Amazonas"}
80 ld{"sommartid for sentrale Nord-Amerika"}
81 lg{"tidssone for sentrale Nord-Amerika"}
82 ls{"normaltid for sentrale Nord-Amerika"}
85 ld{"sommartid for den nordamerikansk austkysten"}
86 lg{"tidssone for den nordamerikanske austkysten"}
87 ls{"normaltid for den nordamerikanske austkysten"}
90 ld{"sommartid for Rocky Mountains (USA)"}
[all …]
/third_party/icu/icu4c/source/data/zone/
Dnn.txt78 ld{"sommartid for Amazonas"}
79 lg{"tidssone for Amazonas"}
80 ls{"normaltid for Amazonas"}
83 ld{"sommartid for sentrale Nord-Amerika"}
84 lg{"tidssone for sentrale Nord-Amerika"}
85 ls{"normaltid for sentrale Nord-Amerika"}
88 ld{"sommartid for den nordamerikansk austkysten"}
89 lg{"tidssone for den nordamerikanske austkysten"}
90 ls{"normaltid for den nordamerikanske austkysten"}
93 ld{"sommartid for Rocky Mountains (USA)"}
[all …]
/third_party/python/Doc/library/
Dtoken-list.inc18 Token value for ``"("``.
22 Token value for ``")"``.
26 Token value for ``"["``.
30 Token value for ``"]"``.
34 Token value for ``":"``.
38 Token value for ``","``.
42 Token value for ``";"``.
46 Token value for ``"+"``.
50 Token value for ``"-"``.
54 Token value for ``"*"``.
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
DChangeLog1 ChangeLog for hostapd
9 - added support for the hash-to-element mechanism (sae_pwe=1 or
12 - added support for SAE-PK
20 * added support for using OpenSSL 3.0
21 * fixed various issues in experimental support for EAP-TEAP server
24 support cases with very large certificates) for the EAP server
25 * added support for DPP release 2 (Wi-Fi Device Provisioning Protocol)
29 * dropped support for libnl 1.1
30 * added support for nl80211 control port for EAPOL frame TX/RX
32 compatibility for these groups while the default group 19 remains
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
DChangeLog1 ChangeLog for wpa_supplicant
14 (disabled by default for backwards compatibility; can be enabled
22 * added support for EAP-SIM/AKA using anonymous@realm identity
25 * added experimental support for EAP-TEAP peer (RFC 7170)
26 * added experimental support for EAP-TLS peer with TLS v1.3
27 * fixed a regression in WMM parameter configuration for a TDLS peer
34 - added support for SAE Password Identifier
65 - added support for release number 3
66 - enable PMF automatically for network profiles created from
70 * added support for RSN operating channel validation
[all …]
/third_party/libphonenumber/
Drelease_notes.txt3 - Updated phone metadata for region code(s):
5 - Updated carrier data for country calling code(s):
11 - Updated alternate formatting data for country calling code(s): 34, 385
12 - Updated phone metadata for region code(s):
14 - New geocoding data for country calling code(s): 1363 (en)
15 - Updated geocoding data for country calling code(s): 52 (en)
16 - Updated carrier data for country calling code(s):
23 - Updated phone metadata for region code(s):
25 - Updated carrier data for country calling code(s):
30 - Updated phone metadata for region code(s):
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
DChangeLog1 ChangeLog for hostapd
16 * added support for regulatory WMM limitation (for ETSI)
17 * added support for MACsec Key Agreement using IEEE 802.1X/PSK
18 * added experimental support for EAP-TEAP server (RFC 7170)
19 * added experimental support for EAP-TLS server with TLS v1.3
20 * added support for two server certificates/keys (RSA/ECC)
22 determine with AKM was used for an association
29 - added support for SAE Password Identifier
57 - added support for release number 3
59 * added support for RSN operating channel validation
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
DChangeLog1 ChangeLog for wpa_supplicant
7 - added support for the hash-to-element mechanism (sae_pwe=1 or
11 - added support for SAE-PK
23 * added support for using OpenSSL 3.0
26 * fixed various issues in experimental support for EAP-TEAP peer
27 * added support for DPP release 2 (Wi-Fi Device Provisioning Protocol)
29 * added support for SAE (WPA3-Personal) AP mode configuration
30 * added P2P support for EDMG (IEEE 802.11ay) channels
33 * dropped support for libnl 1.1
34 * added support for nl80211 control port for EAPOL frame TX/RX
[all …]
/third_party/libabigail/tests/data/test-diff-pkg/
Dgraphviz-2.44.0-18.el9.aarch64-self-check-report-0.txt1 ==== SELF CHECK SUCCEEDED for 'liblab_gamut.so.1.0.0' ====
2 ==== SELF CHECK SUCCEEDED for 'libgvplugin_neato_layout.so.6.0.0' ====
3 ==== SELF CHECK SUCCEEDED for 'libgvc.so.6.0.0' ====
4 ==== SELF CHECK SUCCEEDED for 'libgvpr.so.2.0.0' ====
5 ==== SELF CHECK SUCCEEDED for 'gvmap' ====
6 ==== SELF CHECK SUCCEEDED for 'lefty' ====
7 ==== SELF CHECK SUCCEEDED for 'libgvplugin_dot_layout.so.6.0.0' ====
8 ==== SELF CHECK SUCCEEDED for 'libgvplugin_core.so.6.0.0' ====
9 ==== SELF CHECK SUCCEEDED for 'libcgraph.so.6.0.0' ====
10 ==== SELF CHECK SUCCEEDED for 'edgepaint' ====
[all …]
/third_party/backends/doc/mustek/
Dmustek.CHANGES1 CHANGES for the SANE Mustek backend
19 * Added support for Mustek Paragon 600 II EP (SCSI-over-parallel port). This
20 is based on a patch from James Perry. Support for libiee1284 is
24 * Added support for sanei_thread.
31 * Added support for sanei_thread.
41 * Fixed check for single quotation marks.
52 * Check if there are documents in ADF for Paragon 2. Otherwise return error.
65 * Block signals when waiting for a SCSI request to finish. Otherwise we may
87 * Upload linear gamma table for Pro models if custom gamma is off instead
95 * Fixed lamp off time (60 minutes) for the 1200 A3 Pro.
[all …]
/third_party/zlib/
DChangeLog2 ChangeLog file for zlib
6 - Fix bug in inflateSync() for data held in bit buffer
7 - Add LIT_MEM define to use more memory for a small deflate speedup
16 - Fix bug in deflateBound() for level 0 and memLevel 9
19 - Fix crash when gzsetparams() attempted for transparent write
53 - Update use of errno for newer Windows CE versions
57 - Don't compute check value for raw inflate if asked to validate
68 - Correct the initialization requirements for deflateInit2()
70 - Assure that the number of bits for deflatePrime() is valid
72 - Use a macro for the printf format of big_t in enough.c
[all …]
/third_party/rust/crates/nom/
DCHANGELOG.md44 - implement `Tuple` parsing for the unit type as a special case
45 - implement `ErrorConvert` on the unit type to make it usable as error type for bits parsers
46 - bool parser for bits input
100 - the move to minimal-lexical for float parsing introduced bugs that cannot be resolved right now, …
125 …nize decimal digits and directly convert to a number in the target size (checking for max int size)
139 - the `lexical-core` crate used for float parsing has now been replaced with `minimal-lexical`: the…
184 - workarounds for dependency issues with bitvec and memchr
245 - `ErrorConvert` implementation for `VerboseError`
250 - `fold_many*` now accept `FnMut` for the accumulation function
318 `ContextError` for the `context` combinator, and `FromExternalError` for `map_res`.
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DMeasureUnit.java134 * For the given type, return the available units.
136 * @return the available units for type. Returned set is unmodifiable.
142 // flexibility for implementation. in getAvailable()
143 // Use CollectionSet instead of HashSet for better performance. in getAvailable()
153 for (String type : new HashSet<>(MeasureUnit.getAvailableTypes())) { in getAvailable()
154 for (MeasureUnit unit : MeasureUnit.getAvailable(type)) { in getAvailable()
159 // flexibility for implementation. in getAvailable()
167 * available for it, and it may not be returned by getAvailable().
168 * However, for special purposes (such as CLDR tooling), it is available.
199 for (Map<String, MeasureUnit> unitsForType : cache.values()) { in findBySubType()
[all …]
/third_party/backends/doc/gt68xx/
Dgt68xx.CHANGES11 * Added .conf entry for Plustek OpticPro S12 and S24. Updated .desc file.
15 * Added support for Genius Colorpage SF600.
19 * Added support for Plustek OpticPro S24 (some models). Added .conf entry for
31 * Reduced timeout for cancelling a scan. Some scanners freeze for 30 seconds
35 * Fixed wait_lamp_stable. Wait for a maximum time of 60 seconds. Print
37 * For Mustek ScanExpress A3 USB, use more intelligent warm-up mechanism. The
38 brightness for this scanner first decreases and then increases again. With the
39 previous logic the scanner always warmed up for at least 10 seconds even if it
52 * Added support for Plustek OpticSlim M12 (untested). Based on patch from
73 * Added support for Genius ColorPage Vivid 1200 X (untested).
[all …]
/third_party/typescript/tests/cases/conformance/statements/for-inStatements/
Dfor-inStatements.ts2 for (aString in {}) { }
5 for (anAny in {}) { }
7 for (var x in {}) { }
8 for (var x in []) { }
9 for (var x in [1, 2, 3, 4, 5]) { }
12 for (var x in fn()) { }
14 for (var x in /[a-z]/) { }
15 for (var x in new Date()) { }
19 for (var x in c || d) { }
20 for (var x in e ? c : d) { }
[all …]

12345678910>>...749