/third_party/typescript/tests/baselines/reference/ |
D | enumConstantMembers.errors.txt | 1 …tantMembers.ts(32,9): error TS2477: 'const' enum member initializer was evaluated to a non-finite … 2 …tantMembers.ts(33,9): error TS2477: 'const' enum member initializer was evaluated to a non-finite … 3 …tantMembers.ts(34,9): error TS2477: 'const' enum member initializer was evaluated to a non-finite … 4 …tantMembers.ts(35,9): error TS2478: 'const' enum member initializer was evaluated to disallowed va… 5 …tantMembers.ts(36,9): error TS2478: 'const' enum member initializer was evaluated to disallowed va… 6 …tantMembers.ts(37,9): error TS2477: 'const' enum member initializer was evaluated to a non-finite … 7 …tantMembers.ts(38,9): error TS2477: 'const' enum member initializer was evaluated to a non-finite … 44 !!! error TS2477: 'const' enum member initializer was evaluated to a non-finite value. 47 !!! error TS2477: 'const' enum member initializer was evaluated to a non-finite value. 50 !!! error TS2477: 'const' enum member initializer was evaluated to a non-finite value. [all …]
|
D | constructorParameterShadowsOuterScopes.types | 2 // Initializer expressions for instance member variables are evaluated in the scope of the class co… 14 b = x; // error, evaluated in scope of constructor, cannot reference x 35 b = y; // error, evaluated in scope of constructor, cannot reference y
|
D | constructorParameterShadowsOuterScopes.symbols | 2 // Initializer expressions for instance member variables are evaluated in the scope of the class co… 13 b = x; // error, evaluated in scope of constructor, cannot reference x 30 b = y; // error, evaluated in scope of constructor, cannot reference y
|
D | constEnumErrors.errors.txt | 12 …tEnumErrors.ts(41,9): error TS2477: 'const' enum member initializer was evaluated to a non-finite … 13 …tEnumErrors.ts(42,9): error TS2477: 'const' enum member initializer was evaluated to a non-finite … 14 …tEnumErrors.ts(43,9): error TS2478: 'const' enum member initializer was evaluated to disallowed va… 82 !!! error TS2477: 'const' enum member initializer was evaluated to a non-finite value. 85 !!! error TS2477: 'const' enum member initializer was evaluated to a non-finite value. 88 !!! error TS2478: 'const' enum member initializer was evaluated to disallowed value 'NaN'.
|
D | constructorParameterShadowsOuterScopes.errors.txt | 7 …// Initializer expressions for instance member variables are evaluated in the scope of the class c… 14 b = x; // error, evaluated in scope of constructor, cannot reference x 26 b = y; // error, evaluated in scope of constructor, cannot reference y
|
D | constructorParameterShadowsOuterScopes2.errors.txt | 6 // expressions for property declarations are evaluated in the scope of 10 // initialisers of property declarations are evaluated in the scope of
|
D | constructorParameterShadowsOuterScopes2.types | 3 // expressions for property declarations are evaluated in the scope of 7 // initialisers of property declarations are evaluated in the scope of
|
D | constructorParameterShadowsOuterScopes2.symbols | 3 // expressions for property declarations are evaluated in the scope of 7 // initialisers of property declarations are evaluated in the scope of
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | prefer-string-starts-ends-with.ts | 64 const evaluated = getStaticValue(node, globalScope); constant 65 return evaluated != null && evaluated.value === null; 77 const evaluated = getStaticValue(node, globalScope); constant 78 return evaluated != null && evaluated.value === value; 87 const evaluated = getStaticValue(node, globalScope); constant 89 evaluated != null && 90 typeof evaluated.value === 'string' && 92 evaluated.value[0] === evaluated.value 266 const evaluated = getStaticValue(node, globalScope); constant 267 if (evaluated == null || !(evaluated.value instanceof RegExp)) { [all …]
|
D | prefer-includes.ts | 41 const evaluated = getStaticValue(node, globalScope); constant 42 return evaluated !== null && evaluated.value === value; 102 const evaluated = getStaticValue(node, globalScope); constant 103 if (evaluated == null || !(evaluated.value instanceof RegExp)) { 107 const { pattern, flags } = parseRegExpLiteral(evaluated.value);
|
D | prefer-regexp-exec.ts | 50 const evaluated = getStaticValue(arg, globalScope); constant 54 evaluated && 55 evaluated.value instanceof RegExp && 56 evaluated.value.flags.includes('g')
|
/third_party/boost/libs/phoenix/doc/modules/ |
D | operator.qbk | 50 Operator expressions are lazily evaluated following four simple rules: 52 # A binary operator, except `->*` will be lazily evaluated when 55 # Unary operators are lazily evaluated if their argument is an actor object. 56 # Operator `->*` is lazily evaluated if the left hand argument is an actor object. 60 For example, to check the following expression is lazily evaluated: 64 # Following rule 1, `arg1 + 3` is lazily evaluated since `arg1` is an actor 67 # Continuing, `arg1 + 3 + 6` is again lazily evaluated. 70 # As `arg1 + 3 + 6` is an actor, `-(arg1 + 3 + 6)` is lazily evaluated. Rule 2. 82 1 << 3; // Immediately evaluated 83 val(1) << 3; // Lazily evaluated [all …]
|
/third_party/boost/libs/math/doc/sf/ |
D | laguerre.qbk | 71 values evaluated at the same /x/, and for rising /n/. 89 [[Ln][The value of the polynomial evaluated at degree /n/.]] 90 [[Lnm1][The value of the polynomial evaluated at degree /n-1/.]] 98 values evaluated at the same /x/, and for rising degree /n/. 118 [[Ln][The value of the polynomial evaluated at degree /n/.]] 119 [[Lnm1][The value of the polynomial evaluated at degree /n-1/.]]
|
D | legendre.qbk | 167 values evaluated at the same /x/, and for rising /l/. This recurrence 190 [[Pl][The value of the polynomial evaluated at degree /l/.]] 191 [[Plm1][The value of the polynomial evaluated at degree /l-1/.]] 199 values evaluated at the same /x/, and for rising /l/. 223 [[Pl][The value of the polynomial evaluated at degree /l/.]] 224 [[Plm1][The value of the polynomial evaluated at degree /l-1/.]]
|
/third_party/openGLES/extensions/AMD/ |
D | AMD_shader_explicit_vertex_parameter.txt | 135 | gl_BaryCoordNoPerspAMD | Linear interpolation evaluated at the pixel's center | 136 | gl_BaryCoordNoPerspCentroidAMD | Linear interpolation evaluated at the centroid | 137 | gl_BaryCoordNoPerspSampleAMD | Linear interpolation evaluated at each covered sample | 138 | gl_BaryCoordSmoothAMD | Perspective interpolation evaluated at the pixel's center | 139 | gl_BaryCoordSmoothCentroidAMD | Perspective interpolation evaluated at the centroid | 140 | gl_BaryCoordSmoothSampleAMD | Perspective interpolation evaluated at each covered sample|
|
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/ |
D | AMD_shader_explicit_vertex_parameter.txt | 135 | gl_BaryCoordNoPerspAMD | Linear interpolation evaluated at the pixel's center | 136 | gl_BaryCoordNoPerspCentroidAMD | Linear interpolation evaluated at the centroid | 137 | gl_BaryCoordNoPerspSampleAMD | Linear interpolation evaluated at each covered sample | 138 | gl_BaryCoordSmoothAMD | Perspective interpolation evaluated at the pixel's center | 139 | gl_BaryCoordSmoothCentroidAMD | Perspective interpolation evaluated at the centroid | 140 | gl_BaryCoordSmoothSampleAMD | Perspective interpolation evaluated at each covered sample|
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/ |
D | OES_standard_derivatives.txt | 134 2. The method may assume that the function evaluated is continuous. 146 4. Functions should be evaluated within the interior of a primitive 149 5. Functions for dFdx should be evaluated while holding y constant. 150 Functions for dFdy should be evaluated while holding x constant. 177 being evaluated in parallel on a SIMD array so that at any given point in
|
/third_party/boost/libs/metaparse/doc/ |
D | reject.qbk | 20 [link lazy_metafunction lazy template metafunction]: when it is evaluated as a 21 metafunction, it returns itself with its arguments evaluated. See expression
|
D | accept.qbk | 21 [link lazy_metafunction lazy template metafunction]: when it is evaluated as a 22 metafunction, it returns itself with its arguments evaluated. See expression
|
/third_party/openGLES/extensions/QCOM/ |
D | QCOM_shader_framebuffer_fetch_rate.txt | 126 causes the shader to be evaluated per-sample, since the 133 to be evaluated per-sample, since the framebuffer potentially 159 will cause the shader to be evaluated per-sample. This language feature 182 shader to be evaluated per-sample." 185 of this variable in a fragment shader causes the entire shader to be evaluated 195 shader to be evaluated per-sample." 198 this variable in a fragment shader causes the entire shader to be evaluated
|
/third_party/openGLES/extensions/OES/ |
D | OES_standard_derivatives.txt | 144 2. The method may assume that the function evaluated is continuous. 156 4. Functions should be evaluated within the interior of a primitive 159 5. Functions for dFdx should be evaluated while holding y constant. 160 Functions for dFdy should be evaluated while holding x constant. 187 being evaluated in parallel on a SIMD array so that at any given point in
|
/third_party/boost/libs/outcome/doc/src/content/tutorial/essential/coroutines/ |
D | awaitables.md | 15 An eagerly evaluated Coroutine: invoking `co_await` upon a function returning one 21 A lazily evaluated Coroutine (often named `task<T>` in most C++ Coroutine
|
/third_party/openssl/doc/man3/ |
D | SSL_rstate_string.pod | 39 The header of the record is being evaluated. 43 The body of the record is being evaluated.
|
/third_party/boost/libs/math/doc/performance/ |
D | performance.qbk | 53 * Internal promotion: by default functions with `float` arguments are evaluated at `double` precisi… 55 evaluated at `long double` precision internally by default. Changing these defaults can have a sig… 189 are evaluated. Define to one 192 [Determines how symmetrical rational functions are evaluated: mostly 193 this only effects how the Lanczos approximation is evaluated, and how 199 be evaluated by a method other than 0 (a simple "for" loop). 225 [[0][The polynomial or rational function is evaluated using Horner's 233 [[1][The polynomial or rational function is evaluated without 237 [[2][The polynomial or rational function is evaluated without 244 [[3][The polynomial or rational function is evaluated without
|
/third_party/boost/libs/proto/doc/ |
D | hello_world.qbk | 46 representation of the expression so that it can be evaluated later. For each 59 can be lazily evaluated later by walking the tree. That is what `proto::eval()` 74 or behavior on its own, until it is evaluated in a /context/. Expression
|