/third_party/typescript/tests/baselines/reference/ |
D | declarationQuotedMembers.symbols | 2 export declare const mapped: { [K in 'a-b-c']: number } 3 >mapped : Symbol(mapped, Decl(declarationQuotedMembers.ts, 0, 20)) 6 export const example = mapped; 8 >mapped : Symbol(mapped, Decl(declarationQuotedMembers.ts, 0, 20))
|
D | recursiveMappedTypes.errors.txt | 1 tests/cases/conformance/types/mapped/recursiveMappedTypes.ts(3,6): error TS2456: Type alias 'Recurs… 2 tests/cases/conformance/types/mapped/recursiveMappedTypes.ts(4,11): error TS2313: Type parameter 'K… 3 tests/cases/conformance/types/mapped/recursiveMappedTypes.ts(7,6): error TS2456: Type alias 'Recurs… 4 tests/cases/conformance/types/mapped/recursiveMappedTypes.ts(8,11): error TS2313: Type parameter 'K… 5 tests/cases/conformance/types/mapped/recursiveMappedTypes.ts(11,6): error TS2456: Type alias 'Recur… 6 tests/cases/conformance/types/mapped/recursiveMappedTypes.ts(12,11): error TS2313: Type parameter '… 7 tests/cases/conformance/types/mapped/recursiveMappedTypes.ts(20,19): error TS2589: Type instantiati… 8 tests/cases/conformance/types/mapped/recursiveMappedTypes.ts(73,5): error TS2502: '"each"' is refer… 9 …conformance/types/mapped/recursiveMappedTypes.ts(73,13): error TS2615: Type of property '"each"' c… 12 ==== tests/cases/conformance/types/mapped/recursiveMappedTypes.ts (9 errors) ==== [all …]
|
D | mappedTypeErrors.errors.txt | 1 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(19,20): error TS2313: Type parameter 'P' h… 2 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(21,20): error TS2322: Type 'Date' is not a… 4 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(22,19): error TS2344: Type 'Date' does not… 6 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(25,24): error TS2344: Type '"foo"' does no… 7 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(26,24): error TS2344: Type '"name" | "foo"… 9 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(28,24): error TS2344: Type 'keyof Point' d… 11 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(30,24): error TS2344: Type 'undefined' doe… 12 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(33,24): error TS2344: Type 'T' does not sa… 14 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(37,24): error TS2344: Type 'T' does not sa… 20 tests/cases/conformance/types/mapped/mappedTypeErrors.ts(59,9): error TS2403: Subsequent variable d… [all …]
|
D | mappedTypes6.errors.txt | 1 tests/cases/conformance/types/mapped/mappedTypes6.ts(23,5): error TS2322: Type 'T' is not assignabl… 2 tests/cases/conformance/types/mapped/mappedTypes6.ts(24,5): error TS2322: Type 'Partial<T>' is not … 3 tests/cases/conformance/types/mapped/mappedTypes6.ts(27,5): error TS2322: Type 'Partial<T>' is not … 5 tests/cases/conformance/types/mapped/mappedTypes6.ts(37,5): error TS2322: Type 'Required<T>' is not… 10 tests/cases/conformance/types/mapped/mappedTypes6.ts(38,5): error TS2322: Type 'T' is not assignabl… 11 tests/cases/conformance/types/mapped/mappedTypes6.ts(39,5): error TS2322: Type 'Partial<T>' is not … 12 tests/cases/conformance/types/mapped/mappedTypes6.ts(42,5): error TS2322: Type 'T' is not assignabl… 13 tests/cases/conformance/types/mapped/mappedTypes6.ts(43,5): error TS2322: Type 'Partial<T>' is not … 14 tests/cases/conformance/types/mapped/mappedTypes6.ts(47,5): error TS2322: Type 'Partial<T>' is not … 16 tests/cases/conformance/types/mapped/mappedTypes6.ts(56,5): error TS2322: Type '{}' is not assignab… [all …]
|
D | declarationQuotedMembers.js | 2 export declare const mapped: { [K in 'a-b-c']: number } 3 export const example = mapped; 9 exports.example = exports.mapped; 13 export declare const mapped: {
|
D | declarationQuotedMembers.types | 2 export declare const mapped: { [K in 'a-b-c']: number } 3 >mapped : { "a-b-c": number; } 5 export const example = mapped; 7 >mapped : { "a-b-c": number; }
|
D | mappedTypeErrors2.errors.txt | 1 tests/cases/conformance/types/mapped/mappedTypeErrors2.ts(9,30): error TS2536: Type 'K' cannot be u… 2 tests/cases/conformance/types/mapped/mappedTypeErrors2.ts(13,30): error TS2536: Type 'K' cannot be … 3 tests/cases/conformance/types/mapped/mappedTypeErrors2.ts(15,38): error TS2536: Type 'S' cannot be … 4 tests/cases/conformance/types/mapped/mappedTypeErrors2.ts(15,47): error TS2322: Type 'AB[S]' is not… 6 tests/cases/conformance/types/mapped/mappedTypeErrors2.ts(15,47): error TS2536: Type 'S' cannot be … 7 tests/cases/conformance/types/mapped/mappedTypeErrors2.ts(17,49): error TS2536: Type 'L' cannot be … 10 ==== tests/cases/conformance/types/mapped/mappedTypeErrors2.ts (6 errors) ====
|
D | indexerConstraints2.errors.txt | 7 … index signature parameter type cannot be a union type. Consider using a mapped object type instea… 9 … index signature parameter type cannot be a union type. Consider using a mapped object type instea… 10 … index signature parameter type cannot be a union type. Consider using a mapped object type instea… 11 … index signature parameter type cannot be a union type. Consider using a mapped object type instea… 81 !!! error TS1337: An index signature parameter type cannot be a union type. Consider using a mapped… 97 !!! error TS1337: An index signature parameter type cannot be a union type. Consider using a mapped… 105 !!! error TS1337: An index signature parameter type cannot be a union type. Consider using a mapped… 111 !!! error TS1337: An index signature parameter type cannot be a union type. Consider using a mapped…
|
D | spreadInvalidArgumentType.js | 11 var mapped: {[P in "b"]: T[P]}; variable 37 var o7 = { ...mapped }; // OK, non-generic mapped type 83 var mapped; 102 var o7 = __assign({}, mapped); // OK, non-generic mapped type
|
/third_party/EGL/extensions/KHR/ |
D | EGL_KHR_lock_surface.txt | 133 any changes to the mapped buffer(s) are reflected in the actual 169 a surface created from the EGLConfig may be locked, mapped into 195 which cannot be locked or mapped will match. Such configs must 203 color buffers have the specified format, when mapped with 215 Table [locksurf.format]: Specific formats for mapped pixels. 240 on it. First, the color buffer of the surface may be <mapped>, 242 of the mapped buffer, and attributes describing mapped buffers 281 The color buffer of a locked surface can be <mapped> by calling 288 [fn: "mapped" only means that the pointer returned is 293 The contents of the mapped buffer are initially undefined(fn) [all …]
|
D | EGL_KHR_lock_surface3.txt | 66 mapped surface pointer. 162 any changes to the mapped buffer(s) are reflected in the actual 199 a surface created from the EGLConfig may be locked, mapped into 224 which cannot be locked or mapped will match. Such configs must 232 color buffers have the specified format, when mapped with 244 Table [locksurf.format]: Specific formats for mapped pixels. 263 if the color buffer matches that format when mapped with 305 <mapped> (if not already mapped) and gives a pointer into client 306 memory corresponding to the memory of the mapped buffer. Second, 314 the correct size of the mapped buffer. [all …]
|
D | EGL_KHR_lock_surface2.txt | 203 any changes to the mapped buffer(s) are reflected in the actual 239 a surface created from the EGLConfig may be locked, mapped into 265 which cannot be locked or mapped will match. Such configs must 273 color buffers have the specified format, when mapped with 285 Table [locksurf.format]: Specific formats for mapped pixels. 304 if the color buffer matches that format when mapped with 346 <mapped> (if not already mapped) and gives 348 of the mapped buffer. Second, the surface may be unlocked. Any 356 the correct size of the mapped buffer. 392 The color buffer of a locked surface can be <mapped> by calling [all …]
|
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/ |
D | EGL_KHR_lock_surface.txt | 133 any changes to the mapped buffer(s) are reflected in the actual 169 a surface created from the EGLConfig may be locked, mapped into 195 which cannot be locked or mapped will match. Such configs must 203 color buffers have the specified format, when mapped with 215 Table [locksurf.format]: Specific formats for mapped pixels. 240 on it. First, the color buffer of the surface may be <mapped>, 242 of the mapped buffer, and attributes describing mapped buffers 281 The color buffer of a locked surface can be <mapped> by calling 288 [fn: "mapped" only means that the pointer returned is 293 The contents of the mapped buffer are initially undefined(fn) [all …]
|
D | EGL_KHR_lock_surface3.txt | 66 mapped surface pointer. 162 any changes to the mapped buffer(s) are reflected in the actual 199 a surface created from the EGLConfig may be locked, mapped into 224 which cannot be locked or mapped will match. Such configs must 232 color buffers have the specified format, when mapped with 244 Table [locksurf.format]: Specific formats for mapped pixels. 263 if the color buffer matches that format when mapped with 305 <mapped> (if not already mapped) and gives a pointer into client 306 memory corresponding to the memory of the mapped buffer. Second, 314 the correct size of the mapped buffer. [all …]
|
D | EGL_KHR_lock_surface2.txt | 203 any changes to the mapped buffer(s) are reflected in the actual 239 a surface created from the EGLConfig may be locked, mapped into 265 which cannot be locked or mapped will match. Such configs must 273 color buffers have the specified format, when mapped with 285 Table [locksurf.format]: Specific formats for mapped pixels. 304 if the color buffer matches that format when mapped with 346 <mapped> (if not already mapped) and gives 348 of the mapped buffer. Second, the surface may be unlocked. Any 356 the correct size of the mapped buffer. 392 The color buffer of a locked surface can be <mapped> by calling [all …]
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | class-inheritance-builtin-array.js | 51 var mapped = c.map ((x) => x * 2); variable 52 isInstanceofArray (mapped); 54 for (var i = 0; i < mapped.length; i++) { 55 assert (mapped[i] == c[i] * 2); 84 mapped = c.map ((x) => x * 2);
|
/third_party/python/Modules/cjkcodecs/ |
D | README | 25 Because unicode 0x5341, 0x5345, 0xFF0F, 0xFF3C is mapped to another 65 - U+FF3C FULLWIDTH REVERSE SOLIDUS is mapped to EUC-JP A1C0 (vice versa) 66 - U+00A5 YEN SIGN is mapped to EUC-JP 0x5c. (one way) 67 - U+203E OVERLINE is mapped to EUC-JP 0x7e. (one way) 74 - U+005C REVERSE SOLIDUS is mapped to SHIFT-JIS 0x5c. 75 - U+007E TILDE is mapped to SHIFT-JIS 0x7e. 76 - U+FF3C FULL-WIDTH REVERSE SOLIDUS is mapped to SHIFT-JIS 815f.
|
/third_party/boost/libs/property_tree/doc/ |
D | json_parser.qbk | 20 * JSON objects are mapped to nodes. Each property is a child node. 21 * JSON arrays are mapped to nodes. Each element is a child node with an empty 22 name. If a node has both named and unnamed child nodes, it cannot be mapped 24 * JSON values are mapped to nodes containing the value. However, all type 26 "false" are simply mapped to their string form. 27 * Property tree nodes containing both child nodes and data cannot be mapped.
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | CaseIterator.java | 229 String mapped = UCharacter.foldCase(cp, defaultmapping); 230 if (mapped.equals(cp)) continue; 232 if (maxLength < mapped.length()) maxLength = mapped.length(); 236 Set s = (Set) fromCaseFold.get(mapped); 239 s.add(mapped); // add the case fold result itself 240 fromCaseFold.put(mapped, s); in fromCaseFold.put() argument 243 toCaseFold.put(cp, mapped); in toCaseFold.put() argument 244 toCaseFold.put(mapped, mapped); // add mapping to self in toCaseFold.put() argument
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_transfer.c | 139 trans->mapped + (ptrans->box.z + z) * res_level->layer_stride, in etna_transfer_unmap() 146 util_copy_box(trans->mapped, rsc->base.format, res_level->stride, in etna_transfer_unmap() 167 etna_patch_data(trans->mapped, ptrans); in etna_transfer_unmap() 424 trans->mapped = etna_bo_map(rsc->bo); in etna_transfer_map() 425 if (!trans->mapped) in etna_transfer_map() 434 trans->mapped += res_level->offset + in etna_transfer_map() 440 etna_unpatch_data(trans->mapped, ptrans); in etna_transfer_map() 442 return trans->mapped; in etna_transfer_map() 453 trans->mapped += res_level->offset; in etna_transfer_map() 466 trans->mapped + (ptrans->box.z + z) * res_level->layer_stride, in etna_transfer_map() [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_map_buffer_range.txt | 45 flushing for mapped buffer objects. 56 mapped buffer object so OpenGL does not have to assume that the entire 59 the previous contents of a mapped range of interest need be preserved 87 All or part of the data store of a buffer object may be mapped into the 95 buffer object that is to be mapped, in terms of basic machine units. 99 If no error occurs, a pointer to the beginning of the mapped range is 156 mapped range when called. 161 source or modify the buffer overlap the mapped region, but the result of 187 * The buffer is already in a mapped state. 196 No error is generated if memory outside the mapped range is modified or [all …]
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_map_buffer_range.txt | 45 flushing for mapped buffer objects. 56 mapped buffer object so OpenGL does not have to assume that the entire 59 the previous contents of a mapped range of interest need be preserved 87 All or part of the data store of a buffer object may be mapped into the 95 buffer object that is to be mapped, in terms of basic machine units. 99 If no error occurs, a pointer to the beginning of the mapped range is 156 mapped range when called. 161 source or modify the buffer overlap the mapped region, but the result of 187 * The buffer is already in a mapped state. 196 No error is generated if memory outside the mapped range is modified or [all …]
|
/third_party/mesa3d/src/panfrost/lib/genxml/ |
D | decode_common.c | 143 struct pandecode_mapped_memory *mapped; in pointer_as_memory_reference() local 148 mapped = pandecode_find_mapped_gpu_mem_containing_rw(ptr); in pointer_as_memory_reference() 150 if (mapped) { in pointer_as_memory_reference() 151 snprintf(out, 128, "%s + %d", mapped->name, (int) (ptr - mapped->gpu_va)); in pointer_as_memory_reference()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_map_buffer_range.txt | 55 flushing for mapped buffer objects. 66 mapped buffer object so OpenGL does not have to assume that the entire 69 the previous contents of a mapped range of interest need be preserved 114 All or part of the data store of a buffer object may be mapped into the 123 buffer object that is to be mapped, in terms of basic machine units. 127 If no error occurs, a pointer to the beginning of the mapped range is 166 mapped range when called. 171 or modify the buffer overlap the mapped region, but the result of such 200 - The buffer is already in a mapped state. 206 No GL error is generated if memory outside the mapped range is modified or [all …]
|
/third_party/skia/tests/ |
D | M44Test.cpp | 204 SkV4 mapped = m.map(p.x, p.y, 0.f, 1.f); in DEF_TEST() local 205 REPORTER_ASSERT(reporter, mapped.z == 0.f); in DEF_TEST() 206 REPORTER_ASSERT(reporter, mapped.w == 1.f); in DEF_TEST() 207 return SkV2{mapped.x, mapped.y}; in DEF_TEST() 286 SkV4 mapped = m * corners[i]; in DEF_TEST() local 287 if (mapped.w > 0.f) { in DEF_TEST() 289 float x = mapped.x / mapped.w; in DEF_TEST() 290 float y = mapped.y / mapped.w; in DEF_TEST()
|