/third_party/openssl/test/recipes/ |
D | 25-test_verify.t | 20 sub verify { 35 ok(verify("ee-cert", "sslserver", ["root-cert"], ["ca-cert"]), 39 ok(!verify("ee-cert", "sslserver", [qw(root-nonca)], [qw(ca-cert)]), 41 ok(!verify("ee-cert", "sslserver", [qw(nroot+serverAuth)], [qw(ca-cert)]), 43 ok(!verify("ee-cert", "sslserver", [qw(nroot+anyEKU)], [qw(ca-cert)]), 45 ok(!verify("ee-cert", "sslserver", [qw(root-cert2)], [qw(ca-cert)]), 47 ok(!verify("ee-cert", "sslserver", [qw(root-name2)], [qw(ca-cert)]), 52 ok(verify("ee-cert-noncrit-unknown-ext", "", ["root-cert"], ["ca-cert"]), 54 ok(!verify("ee-cert-crit-unknown-ext", "", ["root-cert"], ["ca-cert"]), 56 ok(verify("ee-cert-ocsp-nocheck", "", ["root-cert"], ["ca-cert"]), [all …]
|
/third_party/typescript/tests/cases/fourslash/ |
D | commentsOverloads.ts | 228 verify.quickInfos({ 236 verify.signatureHelp({ marker: "4", overloadsCount: 2 }); 237 verify.signatureHelp({ marker: "o4", overloadsCount: 2, docComment: "this is signature 1", paramete… 239 verify.quickInfos({ 247 verify.signatureHelp( 252 verify.quickInfos({ 260 verify.signatureHelp({ marker: ["12", "o12"], overloadsCount: 2 }); 262 verify.quickInfos({ 270 verify.signatureHelp( 275 verify.completions( [all …]
|
D | formattingOnInvalidCodes.ts | 99 verify.currentLineContentIs("var a; var c, b; var $d"); 101 verify.currentLineContentIs("var $e"); 103 verify.currentLineContentIs("var f"); 105 verify.currentLineContentIs("a++; b++;"); 107 verify.currentLineContentIs("function f() {"); 109 verify.currentLineContentIs(" for (i = 0; i < 10; i++) {"); 111 verify.currentLineContentIs(" k = abc + 123 ^ d;"); 113 verify.currentLineContentIs(" a = XYZ[m(a[b[c][d]])];"); 115 verify.currentLineContentIs(" break;"); 117 verify.currentLineContentIs(" switch (variable) {"); [all …]
|
D | formattingFatArrowFunctions.ts | 118 verify.currentLineContentIs("() => 1;"); 120 verify.currentLineContentIs("(arg) => 2;"); 122 verify.currentLineContentIs("arg => 2;"); 124 verify.currentLineContentIs("arg => 2;"); 126 verify.currentLineContentIs("(arg = 1) => 3;"); 128 verify.currentLineContentIs("(arg?) => 4;"); 130 verify.currentLineContentIs("(arg: number) => 5;"); 132 verify.currentLineContentIs("(arg: number = 0) => 6;"); 134 verify.currentLineContentIs("(arg?: number) => 7;"); 136 verify.currentLineContentIs("(...arg: number[]) => 8;"); [all …]
|
D | formattingOnClasses.ts | 87 verify.currentLineContentIs("class a {"); 89 verify.currentLineContentIs(" constructor(n: number);"); 91 verify.currentLineContentIs(" constructor(s: string);"); 93 verify.currentLineContentIs(" constructor(ns: any) {"); 95 verify.currentLineContentIs(" }"); 97 verify.currentLineContentIs(" public pgF() { }"); 99 verify.currentLineContentIs(" public pv;"); 101 verify.currentLineContentIs(" public get d() {"); 103 verify.currentLineContentIs(" return 30;"); 105 verify.currentLineContentIs(" }"); [all …]
|
D | commentsCommentParsing.ts | 205 verify.signatureHelp({ marker: "1", docComment: "" }); 206 verify.quickInfoAt("1q", "function simple(): void"); 208 verify.signatureHelp({ marker: "2", docComment: "" }); 209 verify.quickInfoAt("2q", "function multiLine(): void"); 211 verify.signatureHelp({ marker: "3", docComment: "this is eg of single line jsdoc style comment" }); 212 verify.quickInfoAt("3q", "function jsDocSingleLine(): void", "this is eg of single line jsdoc style… 214 verify.signatureHelp({ marker: "4", docComment: "this is multiple line jsdoc stule comment\nNew lin… 215 verify.quickInfoAt("4q", "function jsDocMultiLine(): void", "this is multiple line jsdoc stule comm… 217 verify.signatureHelp({ marker: "5", docComment: "Another this one too" }); 218 verify.quickInfoAt("5q", "function jsDocMultiLineMerge(): void", "Another this one too"); [all …]
|
D | formattingOnStatementsWithNoSemicolon.ts | 62 verify.currentLineContentIs("do {"); 64 verify.currentLineContentIs(" var a"); 66 verify.currentLineContentIs("} while (1)"); 68 verify.currentLineContentIs("function f() {"); 70 verify.currentLineContentIs(" var s = 1"); 72 verify.currentLineContentIs("}"); 74 verify.currentLineContentIs("switch (t) {"); 76 verify.currentLineContentIs(" case 1:"); 78 verify.currentLineContentIs(" {"); 80 verify.currentLineContentIs(" test"); [all …]
|
D | formattingJsxElements.ts | 94 verify.currentLineContentIs(' Hello, World!'); 96 verify.indentationIs(12); 99 verify.currentLineContentIs(' Hello, World!'); 101 verify.indentationIs(12); 104 verify.currentLineContentIs(' class1={'); 106 verify.currentLineContentIs(' }>'); 109 verify.currentLineContentIs(' Hello, World!'); 111 verify.indentationIs(12); 114 verify.currentLineContentIs(' class2={'); 116 verify.currentLineContentIs(' }>'); [all …]
|
D | formattingDecorators.ts | 50 verify.currentLineContentIs("@decorator1"); 52 verify.currentLineContentIs("@decorator2"); 54 verify.currentLineContentIs("@decorator3"); 56 verify.currentLineContentIs("@decorator4 @decorator5"); 58 verify.currentLineContentIs("class C {"); 60 verify.currentLineContentIs(" @decorator6"); 62 verify.currentLineContentIs(" @decorator7"); 64 verify.currentLineContentIs(" @decorator8"); 66 verify.currentLineContentIs(" method1() { }"); 68 verify.currentLineContentIs(" @decorator9 @decorator10 @decorator11 method2() { }"); [all …]
|
D | formattingOnObjectLiteral.ts | 33 verify.currentLineContentIs("var x = {"); 35 verify.currentLineContentIs(" foo: 1,"); 37 verify.currentLineContentIs(" bar: \"tt\","); 39 verify.currentLineContentIs(" boo: 1 + 5"); 41 verify.currentLineContentIs("};"); 43 verify.currentLineContentIs("var x2 = {"); 45 verify.currentLineContentIs(" foo: 1,"); 47 verify.currentLineContentIs(" bar: \"tt\", boo: 1 + 5"); 49 verify.currentLineContentIs("};"); 51 verify.currentLineContentIs("function Foo() {"); [all …]
|
D | formattingOnClosingBracket.ts | 39 verify.currentLineContentIs("function f() {"); 41 verify.currentLineContentIs(" var x = 3;"); 43 verify.currentLineContentIs(" var z = 2;"); 45 verify.currentLineContentIs(" a = z++ - 2 * x;"); 47 verify.currentLineContentIs(" for (; ;) {"); 49 verify.currentLineContentIs(" a += (g + g) * a % t;"); 51 verify.currentLineContentIs(" b--;"); 53 verify.currentLineContentIs(" }"); 55 verify.currentLineContentIs(" switch (a) {"); 57 verify.currentLineContentIs(" case 1: {"); [all …]
|
D | commentsInterface.ts | 71 verify.quickInfos({ 81 verify.quickInfoAt("8", "(property) i2.x: number", "this is x"); 82 verify.completions({ 96 verify.quickInfos({ 102 verify.signatureHelp({ marker: "12", docComment: "", parameterDocComment: "param help" }); 104 verify.quickInfos({ 116 verify.signatureHelp({ marker: "16", docComment: "new method", parameterDocComment: "param" }); 117 verify.quickInfos({ 127 verify.signatureHelp({ marker: "22", docComment: "" }); 128 verify.quickInfos({ [all …]
|
D | referencesForStatementKeywords.ts | 203 verify.referenceGroups(importEqualsDecl1_importKeyword, [{ definition: "import A = require(\"./a\")… 204 verify.referenceGroups(importEqualsDecl1_requireKeyword, [{ definition: "module \"/a\"", ranges: [i… 207 verify.referenceGroups(importEqualsDecl2_importKeyword, [{ definition: "(alias) namespace N2\nimpor… 210 verify.referenceGroups([importDecl1_importKeyword, importDecl1_typeKeyword], [ 214 verify.referenceGroups(importDecl1_fromKeyword, [{ definition: "module \"/b\"", ranges: [importDecl… 217 verify.referenceGroups([importDecl2_importKeyword, importDecl2_typeKeyword, importDecl2_asKeyword],… 218 verify.referenceGroups([importDecl2_fromKeyword], [{ definition: "module \"/c\"", ranges: [importDe… 221 verify.referenceGroups([importDecl3_importKeyword, importDecl3_typeKeyword], [ 225 verify.referenceGroups(importDecl3_fromKeyword, [{ definition: "module \"/d\"", ranges: [importDecl… 228 verify.noReferences(importDecl4_importKeyword); [all …]
|
D | formattingOnChainedCallbacks.ts | 71 verify.currentLineContentIs(' ""'); 73 verify.indentationIs(8); 77 verify.currentLineContentIs(' }).then(() => {'); 81 verify.currentLineContentIs(' });'); 84 verify.currentLineContentIs(' });;'); 88 verify.currentLineContentIs(' "";'); 91 verify.currentLineContentIs(' });'); 94 verify.indentationIs(8); 96 verify.indentationIs(4); 100 verify.currentFileContentIs(`Promise [all …]
|
D | formatNamedExportImport.ts | 34 verify.currentLineContentIs('export { x, y as yy, z } from "foo"'); 36 verify.currentLineContentIs('export { x, y as yy, z } from "bar"'); 39 verify.currentLineContentIs("export {"); 41 verify.currentLineContentIs(" x,"); 43 verify.currentLineContentIs(" y as yy, z"); 45 verify.currentLineContentIs("}"); 47 verify.currentLineContentIs(" from"); 49 verify.indentationIs(4); 51 verify.currentLineContentIs(' "foo"'); 54 verify.currentLineContentIs('import { x, y as yy, z } from "baz"'); [all …]
|
D | refactorConvertArrowFunctionOrFunctionExpression_Availability_Arrow.ts | 6 verify.refactorAvailable("Convert arrow function or function expression", "Convert to named functio… 7 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 8 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to arrow fun… 11 verify.refactorAvailable("Convert arrow function or function expression", "Convert to named functio… 12 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 13 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to arrow fun… 16 verify.refactorAvailable("Convert arrow function or function expression", "Convert to named functio… 17 verify.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous fun… 18 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to arrow fun… 21 verify.refactorAvailable("Convert arrow function or function expression", "Convert to named functio… [all …]
|
D | refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon_FnArgument.ts | 7 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… 8 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 9 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to arrow fun… 12 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… 13 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 14 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to arrow fun… 17 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… 18 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 19 verify.refactorAvailable("Convert arrow function or function expression", "Convert to arrow functio… 22 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… [all …]
|
D | commentsInheritance.ts | 223 verify.completions({ 240 verify.signatureHelp( 245 verify.quickInfos({ 257 verify.completions({ 274 verify.signatureHelp( 283 verify.quickInfos({ 295 verify.completions({ 312 verify.signatureHelp( 317 verify.quickInfos({ 328 verify.completions( [all …]
|
D | formattingOnVariety.ts | 24 verify.currentLineContentIs("function f(a, b, c, d) {"); 26 verify.currentLineContentIs(" for (var i = 0; i < 10; i++) {"); 28 verify.currentLineContentIs(" var a = 0;"); 30 verify.currentLineContentIs(" var b = a + a + a * a % a / 2 - 1;"); 32 verify.currentLineContentIs(" b += a;"); 34 verify.currentLineContentIs(" ++b;"); 36 verify.currentLineContentIs(" f(a, b, c, d);"); 38 verify.currentLineContentIs(" if (1 === 1) {"); 40 verify.currentLineContentIs(" var m = function(e, f) {"); 42 verify.currentLineContentIs(" return e ^ f;"); [all …]
|
D | refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon_unusedName.ts | 6 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 7 verify.refactorAvailable("Convert arrow function or function expression", "Convert to named functio… 8 verify.refactorAvailable("Convert arrow function or function expression", "Convert to arrow functio… 11 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 12 verify.refactorAvailable("Convert arrow function or function expression", "Convert to named functio… 13 verify.refactorAvailable("Convert arrow function or function expression", "Convert to arrow functio… 16 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… 17 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 18 verify.refactorAvailable("Convert arrow function or function expression", "Convert to arrow functio… 21 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… [all …]
|
D | refactorConvertArrowFunctionOrFunctionExpression_Availability_Anon.ts | 6 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 7 verify.refactorAvailable("Convert arrow function or function expression", "Convert to named functio… 8 verify.refactorAvailable("Convert arrow function or function expression", "Convert to arrow functio… 11 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 12 verify.refactorAvailable("Convert arrow function or function expression", "Convert to named functio… 13 verify.refactorAvailable("Convert arrow function or function expression", "Convert to arrow functio… 16 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… 17 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 18 verify.refactorAvailable("Convert arrow function or function expression", "Convert to arrow functio… 21 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… [all …]
|
D | refactorConvertArrowFunctionOrFunctionExpression_Availability_Arrow_FnArgument.ts | 8 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… 9 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 10 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to arrow fun… 13 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… 14 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous… 15 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to arrow fun… 18 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… 19 verify.refactorAvailable("Convert arrow function or function expression", "Convert to anonymous fun… 20 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to arrow fun… 23 verify.not.refactorAvailable("Convert arrow function or function expression", "Convert to named fun… [all …]
|
/third_party/openssl/test/ssl-tests/ |
D | 03-custom_verify.cnf | 5 test-0 = 0-verify-success 6 test-1 = 1-verify-custom-reject 7 test-2 = 2-verify-custom-allow 8 test-3 = 3-verify-custom-retry 12 test-7 = 7-verify-fail-no-root 13 test-8 = 8-verify-custom-success-no-root 14 test-9 = 9-verify-custom-fail-no-root 17 [0-verify-success] 18 ssl_conf = 0-verify-success-ssl 20 [0-verify-success-ssl] [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
D | tlsv1_common.c | 206 int tls_verify_hash_init(struct tls_verify_hash *verify) in tls_verify_hash_init() argument 208 tls_verify_hash_free(verify); in tls_verify_hash_init() 209 verify->md5_client = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0); in tls_verify_hash_init() 210 verify->md5_server = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0); in tls_verify_hash_init() 211 verify->md5_cert = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0); in tls_verify_hash_init() 212 verify->sha1_client = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0); in tls_verify_hash_init() 213 verify->sha1_server = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0); in tls_verify_hash_init() 214 verify->sha1_cert = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0); in tls_verify_hash_init() 215 if (verify->md5_client == NULL || verify->md5_server == NULL || in tls_verify_hash_init() 216 verify->md5_cert == NULL || verify->sha1_client == NULL || in tls_verify_hash_init() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
D | tlsv1_common.c | 206 int tls_verify_hash_init(struct tls_verify_hash *verify) in tls_verify_hash_init() argument 208 tls_verify_hash_free(verify); in tls_verify_hash_init() 209 verify->md5_client = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0); in tls_verify_hash_init() 210 verify->md5_server = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0); in tls_verify_hash_init() 211 verify->md5_cert = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0); in tls_verify_hash_init() 212 verify->sha1_client = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0); in tls_verify_hash_init() 213 verify->sha1_server = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0); in tls_verify_hash_init() 214 verify->sha1_cert = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0); in tls_verify_hash_init() 215 if (verify->md5_client == NULL || verify->md5_server == NULL || in tls_verify_hash_init() 216 verify->md5_cert == NULL || verify->sha1_client == NULL || in tls_verify_hash_init() [all …]
|