/third_party/typescript/tests/baselines/reference/ |
D | commentsFormatting.js | 3 /** this is first line - aligned to class declaration 4 * this is 4 spaces left aligned 5 * this is 3 spaces left aligned 6 * this is 2 spaces left aligned 7 * this is 1 spaces left aligned 8 * this is at same level as first line 9 * this is 1 spaces right aligned 10 * this is 2 spaces right aligned 11 * this is 3 spaces right aligned 12 * this is 4 spaces right aligned [all …]
|
D | logicalOrOperatorWithEveryType.js | 3 // If the || expression is not contextually typed, the right operand is contextually typed 4 // by the type of the left operand and the result is of the best common type of the two 18 var ra1 = a1 || a1; // any || any is any 19 var ra2 = a2 || a1; // boolean || any is any 20 var ra3 = a3 || a1; // number || any is any 21 var ra4 = a4 || a1; // string || any is any 22 var ra5 = a5 || a1; // void || any is any 23 var ra6 = a6 || a1; // enum || any is any 24 var ra7 = a7 || a1; // object || any is any 25 var ra8 = a8 || a1; // array || any is any [all …]
|
D | commentsFormatting.types | 5 /** this is first line - aligned to class declaration 6 * this is 4 spaces left aligned 7 * this is 3 spaces left aligned 8 * this is 2 spaces left aligned 9 * this is 1 spaces left aligned 10 * this is at same level as first line 11 * this is 1 spaces right aligned 12 * this is 2 spaces right aligned 13 * this is 3 spaces right aligned 14 * this is 4 spaces right aligned [all …]
|
D | commentsFormatting.symbols | 5 /** this is first line - aligned to class declaration 6 * this is 4 spaces left aligned 7 * this is 3 spaces left aligned 8 * this is 2 spaces left aligned 9 * this is 1 spaces left aligned 10 * this is at same level as first line 11 * this is 1 spaces right aligned 12 * this is 2 spaces right aligned 13 * this is 3 spaces right aligned 14 * this is 4 spaces right aligned [all …]
|
D | unusedLocalsAndParameters.errors.txt | 1 …ompiler/unusedLocalsAndParameters.ts(4,12): error TS6133: 'a' is declared but its value is never r… 2 …ompiler/unusedLocalsAndParameters.ts(9,22): error TS6133: 'a' is declared but its value is never r… 3 …er/unusedLocalsAndParameters.ts(15,5): error TS6133: 'farrow' is declared but its value is never r… 4 …mpiler/unusedLocalsAndParameters.ts(15,15): error TS6133: 'a' is declared but its value is never r… 5 tests/cases/compiler/unusedLocalsAndParameters.ts(18,7): error TS6196: 'C' is declared but never us… 6 …mpiler/unusedLocalsAndParameters.ts(20,12): error TS6133: 'a' is declared but its value is never r… 7 …mpiler/unusedLocalsAndParameters.ts(23,11): error TS6133: 'v' is declared but its value is never r… 8 …ompiler/unusedLocalsAndParameters.ts(27,5): error TS6133: 'E' is declared but its value is never r… 9 …mpiler/unusedLocalsAndParameters.ts(29,12): error TS6133: 'a' is declared but its value is never r… 10 …mpiler/unusedLocalsAndParameters.ts(32,11): error TS6133: 'v' is declared but its value is never r… [all …]
|
D | arithmeticOperatorWithOnlyNullValueOrUndefinedValue.errors.txt | 1 …thmeticOperatorWithOnlyNullValueOrUndefinedValue.ts(2,11): error TS2531: Object is possibly 'null'. 2 …thmeticOperatorWithOnlyNullValueOrUndefinedValue.ts(2,18): error TS2531: Object is possibly 'null'. 3 …thmeticOperatorWithOnlyNullValueOrUndefinedValue.ts(3,11): error TS2531: Object is possibly 'null'. 4 …icOperatorWithOnlyNullValueOrUndefinedValue.ts(3,18): error TS2532: Object is possibly 'undefined'. 5 …icOperatorWithOnlyNullValueOrUndefinedValue.ts(4,11): error TS2532: Object is possibly 'undefined'. 6 …thmeticOperatorWithOnlyNullValueOrUndefinedValue.ts(4,23): error TS2531: Object is possibly 'null'. 7 …icOperatorWithOnlyNullValueOrUndefinedValue.ts(5,11): error TS2532: Object is possibly 'undefined'. 8 …icOperatorWithOnlyNullValueOrUndefinedValue.ts(5,23): error TS2532: Object is possibly 'undefined'. 9 …thmeticOperatorWithOnlyNullValueOrUndefinedValue.ts(8,11): error TS2531: Object is possibly 'null'. 10 …thmeticOperatorWithOnlyNullValueOrUndefinedValue.ts(8,18): error TS2531: Object is possibly 'null'. [all …]
|
D | arithmeticOperatorWithNullValueAndValidOperands.errors.txt | 1 …arithmeticOperatorWithNullValueAndValidOperands.ts(13,11): error TS2531: Object is possibly 'null'. 2 …arithmeticOperatorWithNullValueAndValidOperands.ts(14,11): error TS2531: Object is possibly 'null'. 3 …arithmeticOperatorWithNullValueAndValidOperands.ts(15,11): error TS2531: Object is possibly 'null'. 4 …arithmeticOperatorWithNullValueAndValidOperands.ts(16,11): error TS2531: Object is possibly 'null'. 5 …arithmeticOperatorWithNullValueAndValidOperands.ts(17,15): error TS2531: Object is possibly 'null'. 6 …arithmeticOperatorWithNullValueAndValidOperands.ts(18,15): error TS2531: Object is possibly 'null'. 7 …arithmeticOperatorWithNullValueAndValidOperands.ts(19,15): error TS2531: Object is possibly 'null'. 8 …arithmeticOperatorWithNullValueAndValidOperands.ts(20,17): error TS2531: Object is possibly 'null'. 9 …arithmeticOperatorWithNullValueAndValidOperands.ts(23,11): error TS2531: Object is possibly 'null'. 10 …arithmeticOperatorWithNullValueAndValidOperands.ts(24,11): error TS2531: Object is possibly 'null'. [all …]
|
D | typeGuardFunctionOfFormThisErrors.errors.txt | 1 …sErrors.ts(23,1): error TS2322: Type '() => this is LeadGuard' is not assignable to type '() => th… 2 Type predicate 'this is LeadGuard' is not assignable to 'this is FollowerGuard'. 3 Property 'follow' is missing in type 'LeadGuard' but required in type 'FollowerGuard'. 4 …rrors.ts(24,1): error TS2322: Type '() => this is FollowerGuard' is not assignable to type '() => … 5 Type predicate 'this is FollowerGuard' is not assignable to 'this is LeadGuard'. 6 Property 'lead' is missing in type 'FollowerGuard' but required in type 'LeadGuard'. 7 …sErrors.ts(26,1): error TS2322: Type '() => this is LeadGuard' is not assignable to type '() => th… 8 Type predicate 'this is LeadGuard' is not assignable to 'this is FollowerGuard'. 9 Type 'LeadGuard' is not assignable to type 'FollowerGuard'. 10 …rrors.ts(27,1): error TS2322: Type '() => this is FollowerGuard' is not assignable to type '() => … [all …]
|
D | typedArraysCrossAssignability01.errors.txt | 1 tests/cases/compiler/typedArraysCrossAssignability01.ts(13,5): error TS2322: Type 'Uint8Array' is n… 3 Type '"Uint8Array"' is not assignable to type '"Int8Array"'. 4 tests/cases/compiler/typedArraysCrossAssignability01.ts(14,5): error TS2322: Type 'Int16Array' is n… 6 Type '"Int16Array"' is not assignable to type '"Int8Array"'. 7 tests/cases/compiler/typedArraysCrossAssignability01.ts(15,5): error TS2322: Type 'Uint16Array' is … 9 Type '"Uint16Array"' is not assignable to type '"Int8Array"'. 10 tests/cases/compiler/typedArraysCrossAssignability01.ts(16,5): error TS2322: Type 'Int32Array' is n… 12 Type '"Int32Array"' is not assignable to type '"Int8Array"'. 13 tests/cases/compiler/typedArraysCrossAssignability01.ts(17,5): error TS2322: Type 'Uint32Array' is … 15 Type '"Uint32Array"' is not assignable to type '"Int8Array"'. [all …]
|
D | logicalOrOperatorWithEveryType.errors.txt | 15 // If the || expression is not contextually typed, the right operand is contextually typed 16 // by the type of the left operand and the result is of the best common type of the two 30 var ra1 = a1 || a1; // any || any is any 31 var ra2 = a2 || a1; // boolean || any is any 32 var ra3 = a3 || a1; // number || any is any 33 var ra4 = a4 || a1; // string || any is any 34 var ra5 = a5 || a1; // void || any is any 37 var ra6 = a6 || a1; // enum || any is any 38 var ra7 = a7 || a1; // object || any is any 39 var ra8 = a8 || a1; // array || any is any [all …]
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/ |
D | sdkconfig | 14 # CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS is not set 21 # CONFIG_APP_BUILD_TYPE_ELF_RAM is not set 31 # CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set 32 # CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set 33 # CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set 41 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set 42 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set 43 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set 44 # CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set 45 # CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set [all …]
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-heltec-wb32/ |
D | sdkconfig | 14 # CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS is not set 21 # CONFIG_APP_BUILD_TYPE_ELF_RAM is not set 31 # CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set 32 # CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set 33 # CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set 41 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set 42 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set 43 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set 44 # CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set 45 # CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set [all …]
|
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/ |
D | sdkconfig | 15 # CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS is not set 22 # CONFIG_APP_BUILD_TYPE_ELF_RAM is not set 32 # CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set 33 # CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set 34 # CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set 43 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set 44 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set 45 # CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set 46 # CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set 47 # CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set [all …]
|
/third_party/protobuf/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/ |
D | unittest_enormous_descriptor.proto | 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 46 …ooooooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooo… 47 …ooooooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooo… 48 …ooooooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooo… 49 …ooooooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooo… 50 …ooooooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooo… 51 …ooooooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooo… 52 …ooooooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooo… 53 …ooooooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooo… [all …]
|
/third_party/protobuf/src/google/protobuf/ |
D | unittest_enormous_descriptor.proto | 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 48 …ooooooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooo… 49 …ooooooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooo… 50 …ooooooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooo… 51 …ooooooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooo… 52 …ooooooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooo… 53 …ooooooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooo… 54 …ooooooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooo… 55 …ooooooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooo… [all …]
|
/third_party/protobuf/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/ |
D | unittest_enormous_descriptor.proto | 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 46 …ooooooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooo… 47 …ooooooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooo… 48 …ooooooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooo… 49 …ooooooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooo… 50 …ooooooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooo… 51 …ooooooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooo… 52 …ooooooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooo… 53 …ooooooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooo… [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | commentsFormatting.ts | 6 /** this is first line - aligned to class declaration 7 * this is 4 spaces left aligned 8 * this is 3 spaces left aligned 9 * this is 2 spaces left aligned 10 * this is 1 spaces left aligned 11 * this is at same level as first line 12 * this is 1 spaces right aligned 13 * this is 2 spaces right aligned 14 * this is 3 spaces right aligned 15 * this is 4 spaces right aligned [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/binaryOperators/logicalOrOperator/ |
D | logicalOrOperatorWithEveryType.ts | 2 // If the || expression is not contextually typed, the right operand is contextually typed 3 // by the type of the left operand and the result is of the best common type of the two 17 var ra1 = a1 || a1; // any || any is any 18 var ra2 = a2 || a1; // boolean || any is any 19 var ra3 = a3 || a1; // number || any is any 20 var ra4 = a4 || a1; // string || any is any 21 var ra5 = a5 || a1; // void || any is any 22 var ra6 = a6 || a1; // enum || any is any 23 var ra7 = a7 || a1; // object || any is any 24 var ra8 = a8 || a1; // array || any is any [all …]
|
/third_party/typescript/src/compiler/factory/ |
D | nodeTests.ts | 4 export function isNumericLiteral(node: Node): node is NumericLiteral { 8 export function isBigIntLiteral(node: Node): node is BigIntLiteral { 12 export function isStringLiteral(node: Node): node is StringLiteral { 16 export function isJsxText(node: Node): node is JsxText { 20 export function isRegularExpressionLiteral(node: Node): node is RegularExpressionLiteral { 24 …export function isNoSubstitutionTemplateLiteral(node: Node): node is NoSubstitutionTemplateLiteral… 30 export function isTemplateHead(node: Node): node is TemplateHead { 34 export function isTemplateMiddle(node: Node): node is TemplateMiddle { 38 export function isTemplateTail(node: Node): node is TemplateTail { 44 export function isIdentifier(node: Node): node is Identifier { [all …]
|
/third_party/skia/third_party/externals/angle2/extensions/ |
D | EGL_ANGLE_device_vulkan.txt | 35 This extension is written against the language of EGL 1.5 as 38 EGL_EXT_device_query is required. 86 On success, EGL_TRUE is returned, and the Vulkan versionbcorresponding to 87 the EGL device is returned in <value>. If the EGL device is not currently 88 associated with a Vulkan device and <attribute> is EGL_VULKAN_VERSION_ANGLE, 89 EGL_BAD_ATTRIBUTE is returned, and <value> is left unchanged. 92 On success, EGL_TRUE is returned, and a valid Vulkan instance handle 93 VkInstance corresponding to the EGL device is returned in <value>. 94 This handle is compatible with Vulkan API functions. If the EGL device is 95 not currently associated with a Vulkan device and <attribute> is [all …]
|
/third_party/pcre2/pcre2/doc/ |
D | pcre2api.3 | 7 PCRE2 is a new API for PCRE, starting at release 10.0. This document contains a 278 backward compatibility. They should not be used in new code. The first is 279 replaced by \fBpcre2_set_depth_limit()\fP; the second is no longer needed and 309 patterns that can be processed by \fBpcre2_compile()\fP. This facility is 322 units, respectively. However, there is just one header file, \fBpcre2.h\fP. 342 example, PCRE2_UCHAR16 is usually defined as `uint16_t'. The SPTR types are 343 constant pointers to the equivalent UCHAR types, that is, they are pointers to 350 PCRE2_CODE_UNIT_WIDTH is not defined by default. An application must define it 356 including \fBpcre2.h\fP, and then use the real function names. Any code that is 357 to be included in an environment where the value of PCRE2_CODE_UNIT_WIDTH is [all …]
|
D | pcre2jit.3 | 7 Just-in-time compiling is a heavyweight optimization that can greatly speed up 9 match is performed, so it is of most benefit when the same pattern is going to 11 function; if the pattern is not anchored, matching attempts may take place many 13 if the subject string is very long, it may still pay to use JIT even for 14 one-off matches. JIT support is available for all of the 8-bit, 16-bit and 18 It does not apply when the DFA matching function is being used. The code for 25 JIT support is an optional feature of PCRE2. The "configure" option 26 --enable-jit (or equivalent CMake option) must be set when PCRE2 is built if 27 you want to use JIT. The support is limited to the following hardware 38 If --enable-jit is set on an unsupported platform, compilation fails. [all …]
|
D | pcre2partial.3 | 7 In normal use of PCRE2, if there is a match up to the end of a subject string, 12 One example is an application where the subject string is very long, and not 13 all available at once. The requirement here is to be able to do the matching 14 segment by segment, but special action is needed when a matched substring spans 17 Another example is checking a user input string as it is typed, to ensure that 21 Partial matching is a PCRE2-specific feature; it is not Perl-compatible. It is 24 options is whether or not a partial match is preferred to an alternative 36 matches on the same pattern. Separate code is compiled for each mode. If the 37 appropriate JIT mode has not been compiled, interpretive matching code is used. 41 and abandons matching immediately if it is not present in the subject string. [all …]
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_internalformat_query2.txt | 35 eventually be backported to the extension document. This policy is 55 OpenGL 2.0 is required. 57 ARB_internalformat_query is required. 59 This extension is written against the OpenGL 4.2 (Core Profile) 118 find out if it is supported in the desired form, and at a required 122 This extension is NOT intended to allow implementations to only support 123 a subset of features that are required by a specific GL version, nor is 324 can be used to determine if the internal format is supported, and the 325 other <pnames> are defined in terms of whether or not the format is 329 the targets listed in Table 6.xx, otherwise the INVALID_ENUM error is [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_internalformat_query2.txt | 45 OpenGL 2.0 or OpenGL ES 2.0 is required. 47 ARB_internalformat_query is required. 49 This extension is written against the OpenGL 4.2 (Core Profile) 107 find out if it is supported in the desired form, and at a required 111 This extension is NOT intended to allow implementations to only support 112 a subset of features that are required by a specific GL version, nor is 292 can be used to determine if the internal format is supported, and the 293 other <pnames> are defined in terms of whether or not the format is 297 the targets listed in Table 6.xx, otherwise the INVALID_ENUM error is 324 responses. In the following descriptions, the term /resource/ is used [all …]
|