Searched refs:No (Results 1 – 25 of 4847) sorted by relevance
12345678910>>...194
/third_party/typescript/tests/baselines/reference/ |
D | parserSyntaxWalker.generated.symbols | 3 No type information for this code.// export class File { 4 No type information for this code.// constructor(filename: string); 5 No type information for this code.// public ReadAllText(): string; 6 No type information for this code.// } 7 No type information for this code.// export interface IFile { 8 No type information for this code.// [index: number]: string; 9 No type information for this code.// } 10 No type information for this code.//} 11 No type information for this code. 12 No type information for this code.//import fs = module("fs"); [all …]
|
D | parserSyntaxWalker.generated.types | 3 No type information for this code.// export class File { 4 No type information for this code.// constructor(filename: string); 5 No type information for this code.// public ReadAllText(): string; 6 No type information for this code.// } 7 No type information for this code.// export interface IFile { 8 No type information for this code.// [index: number]: string; 9 No type information for this code.// } 10 No type information for this code.//} 11 No type information for this code. 12 No type information for this code.//import fs = module("fs"); [all …]
|
D | parser.numericSeparators.decmialNegative.symbols | 3 No type information for this code. 4 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… 6 No type information for this code. 7 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… 9 No type information for this code. 10 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… 12 No type information for this code. 13 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… 15 No type information for this code. 16 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… [all …]
|
D | parser.numericSeparators.unicodeEscape.symbols | 3 No type information for this code. 4 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… 6 No type information for this code. 7 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… 9 No type information for this code. 10 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… 12 No type information for this code. 13 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… 15 No type information for this code. 16 No type information for this code.=== tests/cases/conformance/parser/ecmascriptnext/numericSeparato… [all …]
|
D | emitExponentiationOperator1.symbols | 3 No type information for this code.1 ** 2; 4 No type information for this code.(-1) ** 2 5 No type information for this code.1 ** 2 ** 3; 6 No type information for this code.1 ** 2 ** -3; 7 No type information for this code.1 ** -(2 ** 3); 8 No type information for this code.(-(1 ** 2)) ** 3; 9 No type information for this code.(-(1 ** 2)) ** -3; 10 No type information for this code. 11 No type information for this code.1 ** 2 + 3; 12 No type information for this code.1 ** 2 - 3; [all …]
|
D | doNotEmitDetachedCommentsAtStartOfLambdaFunction.symbols | 3 No type information for this code. // Single line comment 4 No type information for this code. 5 No type information for this code. return 0; 6 No type information for this code.} 7 No type information for this code. 8 No type information for this code.() => { 9 No type information for this code. /* 10 No type information for this code. multi-line comment 11 No type information for this code. */ 12 No type information for this code. [all …]
|
D | emitCommentsOnlyFile.symbols | 3 No type information for this code.* @name Foo 4 No type information for this code.* @class 5 No type information for this code.*/ 6 No type information for this code./**#@+ 7 No type information for this code.* @memberOf Foo# 8 No type information for this code.* @field 9 No type information for this code.*/ 10 No type information for this code./** 11 No type information for this code.* @name bar 12 No type information for this code.* @type Object[] [all …]
|
D | emitCommentsOnlyFile.types | 3 No type information for this code.* @name Foo 4 No type information for this code.* @class 5 No type information for this code.*/ 6 No type information for this code./**#@+ 7 No type information for this code.* @memberOf Foo# 8 No type information for this code.* @field 9 No type information for this code.*/ 10 No type information for this code./** 11 No type information for this code.* @name bar 12 No type information for this code.* @type Object[] [all …]
|
D | stringEnumLiteralTypes3.types | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 8 >No : Choice.No 15 type YesNo = Choice.Yes | Choice.No; 20 type NoYes = Choice.No | Choice.Yes; 25 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 105 >c = c : Choice.Yes | Choice.No 107 >c : Choice.Yes | Choice.No 164 a = Choice.No; 165 >a = Choice.No : Choice.No 167 >Choice.No : Choice.No [all …]
|
D | enumLiteralTypes3.types | 2 const enum Choice { Unknown, Yes, No }; 6 >No : Choice.No 12 type YesNo = Choice.Yes | Choice.No; 17 type NoYes = Choice.No | Choice.Yes; 22 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 102 >c = c : Choice.Yes | Choice.No 104 >c : Choice.Yes | Choice.No 161 a = Choice.No; 162 >a = Choice.No : Choice.No 164 >Choice.No : Choice.No [all …]
|
D | jsDeclarationsTypeAliases.types | 3 No type information for this code./** 4 No type information for this code. * @typedef {string | number | symbol} PropName 5 No type information for this code. */ 6 No type information for this code. 7 No type information for this code./** 8 No type information for this code. * Callback 9 No type information for this code. * 10 No type information for this code. * @callback NumberToStringCb 11 No type information for this code. * @param {number} a 12 No type information for this code. * @returns {string} [all …]
|
D | jsDeclarationsTypeAliases.symbols | 3 No type information for this code./** 4 No type information for this code. * @typedef {string | number | symbol} PropName 5 No type information for this code. */ 6 No type information for this code. 7 No type information for this code./** 8 No type information for this code. * Callback 9 No type information for this code. * 10 No type information for this code. * @callback NumberToStringCb 11 No type information for this code. * @param {number} a 12 No type information for this code. * @returns {string} [all …]
|
D | stringEnumLiteralTypes1.types | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 8 >No : Choice.No 11 type YesNo = Choice.Yes | Choice.No; 16 type NoYes = Choice.No | Choice.Yes; 21 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 36 var a: Choice.Yes | Choice.No; 41 var a: Choice.No | Choice.Yes; 64 >c = b : Choice.Yes | Choice.No 66 >b : Choice.Yes | Choice.No 136 >g : { (x: Choice.Yes): string; (x: Choice.No): boolean; (x: Choice): number; } [all …]
|
D | stringEnumLiteralTypes2.types | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 8 >No : Choice.No 11 type YesNo = Choice.Yes | Choice.No; 16 type NoYes = Choice.No | Choice.Yes; 21 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 36 var a: Choice.Yes | Choice.No; 41 var a: Choice.No | Choice.Yes; 64 >c = b : Choice.Yes | Choice.No 66 >b : Choice.Yes | Choice.No 136 >g : { (x: Choice.Yes): string; (x: Choice.No): boolean; (x: Choice): number; } [all …]
|
D | enumLiteralTypes1.types | 2 const enum Choice { Unknown, Yes, No }; 6 >No : Choice.No 8 type YesNo = Choice.Yes | Choice.No; 13 type NoYes = Choice.No | Choice.Yes; 18 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 33 var a: Choice.Yes | Choice.No; 38 var a: Choice.No | Choice.Yes; 61 >c = b : Choice.Yes | Choice.No 63 >b : Choice.Yes | Choice.No 200 >g : { (x: Choice.Yes): string; (x: Choice.No): boolean; (x: Choice): number; } [all …]
|
D | enumLiteralTypes2.types | 2 const enum Choice { Unknown, Yes, No }; 6 >No : Choice.No 8 type YesNo = Choice.Yes | Choice.No; 13 type NoYes = Choice.No | Choice.Yes; 18 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 33 var a: Choice.Yes | Choice.No; 38 var a: Choice.No | Choice.Yes; 61 >c = b : Choice.Yes | Choice.No 63 >b : Choice.Yes | Choice.No 200 >g : { (x: Choice.Yes): string; (x: Choice.No): boolean; (x: Choice): number; } [all …]
|
D | commentOnElidedModule1.types | 3 No type information for this code.module ElidedModule3 { 4 No type information for this code.} 5 No type information for this code.=== tests/cases/compiler/a.ts === 7 No type information for this code. Keep this pinned 8 No type information for this code. ================= 9 No type information for this code.*/ 10 No type information for this code. 11 No type information for this code./*! Don't keep this pinned comment */ 12 No type information for this code.module ElidedModule { 13 No type information for this code.} [all …]
|
D | commentOnInterface1.types | 3 No type information for this code.interface I3 { 4 No type information for this code.} 5 No type information for this code.=== tests/cases/compiler/a.ts === 7 No type information for this code. Keep this pinned 8 No type information for this code. ================= 9 No type information for this code.*/ 10 No type information for this code. 11 No type information for this code./*! Don't keep this pinned comment */ 12 No type information for this code.interface I { 13 No type information for this code.} [all …]
|
D | jsDeclarationsTypedefDescriptionsPreserved.symbols | 3 No type information for this code. * Options for Foo <------------ 4 No type information for this code. * @typedef {Object} FooOptions 5 No type information for this code. * @property {boolean} bar - Marvin K Mooney 6 No type information for this code. * @property {string} baz - Sylvester McMonkey McBean 7 No type information for this code. */ 8 No type information for this code. 9 No type information for this code./** 10 No type information for this code. * Multiline 11 No type information for this code. * Options 12 No type information for this code. * for Foo <------------ [all …]
|
D | jsDeclarationsTypedefDescriptionsPreserved.types | 3 No type information for this code. * Options for Foo <------------ 4 No type information for this code. * @typedef {Object} FooOptions 5 No type information for this code. * @property {boolean} bar - Marvin K Mooney 6 No type information for this code. * @property {string} baz - Sylvester McMonkey McBean 7 No type information for this code. */ 8 No type information for this code. 9 No type information for this code./** 10 No type information for this code. * Multiline 11 No type information for this code. * Options 12 No type information for this code. * for Foo <------------ [all …]
|
D | parserSbp_7.9_A9_T3.symbols | 3 No type information for this code.// This code is governed by the BSD license found in the LICENSE … 4 No type information for this code. 5 No type information for this code./** 6 No type information for this code. * Check Do-While Statement for automatic semicolon insertion 7 No type information for this code. * 8 No type information for this code. * @path bestPractice/Sbp_7.9_A9_T3.js 9 No type information for this code. * @description Execute do { \n ; \n }while(false) true 10 No type information for this code. */ 11 No type information for this code. 12 No type information for this code.//CHECK#1 [all …]
|
D | parser.numericSeparators.decimal.symbols | 3 No type information for this code.1.1_00_01 4 No type information for this code.1e1_0 5 No type information for this code.1e+1_0 6 No type information for this code.1e-1_0 7 No type information for this code.1.1e10_0 8 No type information for this code.1.1e+10_0 9 No type information for this code.1.1e-10_0 10 No type information for this code.12_34_56 11 No type information for this code.1_22_333 12 No type information for this code.1_2.3_4 [all …]
|
/third_party/flatbuffers/docs/source/ |
D | Support.md | 24 … | Yes | No | No | No | No | No | No | Yes | No | No … 25 … | Yes | Yes | Yes | Yes | No | No | No | No | No | No | No … 26 … | Yes | No | No | No | No | No | No | Basic | No | No … 27 …r | Yes | No | No | No | No | No | No | Yes | No | No … 28 …API | Yes | No | Yes | Yes | Yes | Yes | Yes | No | No | No … 29 …Scalars | Yes | Yes | Yes | No | No | Yes | Yes | Yes | No | … 32 … | Yes | No | No | Yes | Yes | No | No | No | ? | No … 34 … | Yes | Yes | ? | ? | ? | Yes | VS2010 | ? | Yes | Yes | Yes | No 37 … | Yes | ? | ? | ? | ? | ? | ? | ? | Flutter | Yes | ? | No 39 … | ? | Yes | ? | ? | ? | ? | ? | ? | ? | No | ? | No
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_hmac_drbg.no_reseed.data | 1 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #0 5 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #1 9 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #2 13 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #3 17 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #4 21 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #5 25 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #6 29 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #7 33 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #8 37 HMAC_DRBG NIST CAVS 14.3 No Reseed (SHA-1,128+64,0,0) #9 [all …]
|
/third_party/boost/libs/numeric/odeint/doc/ |
D | stepper_table.qbk | 16 …[[Explicit Euler] [`euler`] [__dense_output_stepper] [__system] [1] [No] [Yes] [No] [Very simple, … 17 …int] [`modified_midpoint`] [__stepper] [__system] [configurable (2)] [No] [No] [No] [Used in Bulir… 18 …[[Runge-Kutta 4] [`runge_kutta4`] [__stepper] [__system] [4] [No] [No] [No] [The classical Runge-K… 19 …[[Cash-Karp] [`runge_kutta_cash_karp54`] [__error_stepper] [__system] [5] [Yes (4)] [No] [No] [Goo… 21 …[[Fehlberg 78] [`runge_kutta_fehlberg78`] [__error_stepper] [__system] [8] [Yes (7)] [No] [No] [Go… 23 …[[Adams Bashforth] [`adams_bashforth`] [__stepper] [__system] [configurable] [No] [No] [Yes] [Mult… 25 …[[Adams Moulton] [`adams_moulton`] [__stepper] [__system] [configurable] [No] [No] [Yes] [Multiste… 26 …lton] [`adams_bashforth_moulton`] [__stepper] [__system] [configurable] [No] [No] [Yes] [Combined … 28 …ontrolled_runge_kutta`] [__controlled_stepper] [__system] [depends] [Yes] [No] [depends] [Error co… 29 …`dense_output_runge_kutta`] [__dense_output_stepper] [__system] [depends] [No] [Yes] [Yes] [Dense … [all …]
|
12345678910>>...194