Home
last modified time | relevance | path

Searched full:extra (Results 1 – 25 of 5478) sorted by relevance

12345678910>>...220

/third_party/openssl/test/
Dssl_test.tmpl30 next if ($key eq "extra");
36 next if ($key eq "extra");
43 next if ($key eq "extra");
51 next if ($key eq "extra");
57 next if ($key eq "extra");
68 # The extra server/client configuration sections.
69 if ($server{"extra"}) {
70 $OUT .= "server = $testname-server-extra\n";
72 if (%server2 && $server2{"extra"}) {
73 $OUT .= "server2 = $testname-server2-extra\n";
[all …]
/third_party/openssl/test/ssl-tests/
D08-npn.cnf.in21 extra => {
26 extra => {
38 extra => {
43 extra => {
55 extra => {
60 extra => {
72 extra => {
77 extra => {
90 extra => {
102 extra => {
[all …]
D09-alpn.cnf.in22 extra => {
27 extra => {
38 extra => {
43 extra => {
54 extra => {
59 extra => {
70 extra => {
75 extra => {
88 extra => {
99 extra => {
[all …]
D08-npn.cnf47 server = 0-npn-simple-server-extra
48 client = 0-npn-simple-client-extra
50 [0-npn-simple-server-extra]
53 [0-npn-simple-client-extra]
79 server = 1-npn-client-finds-match-server-extra
80 client = 1-npn-client-finds-match-client-extra
82 [1-npn-client-finds-match-server-extra]
85 [1-npn-client-finds-match-client-extra]
111 server = 2-npn-client-honours-server-pref-server-extra
112 client = 2-npn-client-honours-server-pref-client-extra
[all …]
D09-alpn.cnf42 server = 0-alpn-simple-server-extra
43 client = 0-alpn-simple-client-extra
45 [0-alpn-simple-server-extra]
48 [0-alpn-simple-client-extra]
73 server = 1-alpn-server-finds-match-server-extra
74 client = 1-alpn-server-finds-match-client-extra
76 [1-alpn-server-finds-match-server-extra]
79 [1-alpn-server-finds-match-client-extra]
104 server = 2-alpn-server-honours-server-pref-server-extra
105 client = 2-alpn-server-honours-server-pref-client-extra
[all …]
D05-sni.cnf37 server = 0-SNI-switch-context-server-extra
38 server2 = 0-SNI-switch-context-server-extra
39 client = 0-SNI-switch-context-client-extra
41 [0-SNI-switch-context-server-extra]
44 [0-SNI-switch-context-client-extra]
71 server = 1-SNI-keep-context-server-extra
72 server2 = 1-SNI-keep-context-server-extra
73 client = 1-SNI-keep-context-client-extra
75 [1-SNI-keep-context-server-extra]
78 [1-SNI-keep-context-client-extra]
[all …]
D06-sni-ticket.cnf54 server = 0-sni-session-ticket-server-extra
55 client = 0-sni-session-ticket-client-extra
57 [0-sni-session-ticket-server-extra]
60 [0-sni-session-ticket-client-extra]
98 server = 1-sni-session-ticket-server-extra
99 client = 1-sni-session-ticket-client-extra
101 [1-sni-session-ticket-server-extra]
104 [1-sni-session-ticket-client-extra]
142 server = 2-sni-session-ticket-server-extra
143 client = 2-sni-session-ticket-client-extra
[all …]
D05-sni.cnf.in24 extra => {
29 extra => {
41 extra => {
46 extra => {
59 extra => {
68 extra => {
84 extra => {
89 extra => {
101 extra => {
106 extra => {
[all …]
D23-srp.cnf32 server = 0-srp-server-extra
33 client = 0-srp-client-extra
35 [0-srp-server-extra]
39 [0-srp-client-extra]
67 server = 1-srp-bad-password-server-extra
68 client = 1-srp-bad-password-client-extra
70 [1-srp-bad-password-server-extra]
74 [1-srp-bad-password-client-extra]
102 server = 2-srp-auth-server-extra
103 client = 2-srp-auth-client-extra
[all …]
/third_party/typescript/tests/baselines/reference/
DcontextuallyTypedStringLiteralsInJsxAttributes02.errors.txt3 …Type '{ extra: true; onClick: (k: "left" | "right") => void; }' is not assignable to type 'Intrins…
4 Property 'extra' does not exist on type 'IntrinsicAttributes & ButtonProps'.
6 …Type '{ extra: true; onClick: (k: "left" | "right") => void; }' is not assignable to type 'Intrins…
7 Property 'extra' does not exist on type 'IntrinsicAttributes & LinkProps'.
10 …Type '{ onClick: (k: "left" | "right") => void; extra: true; }' is not assignable to type 'Intrins…
11 Property 'extra' does not exist on type 'IntrinsicAttributes & ButtonProps'.
13 …Type '{ onClick: (k: "left" | "right") => void; extra: true; }' is not assignable to type 'Intrins…
17 …Type '{ extra: true; goTo: string; }' is not assignable to type 'IntrinsicAttributes & ButtonProps…
18 Property 'extra' does not exist on type 'IntrinsicAttributes & ButtonProps'.
20 … Type '{ extra: true; goTo: "home"; }' is not assignable to type 'IntrinsicAttributes & LinkProps'.
[all …]
DtsxStatelessFunctionComponentOverload4.types32 const c0 = <OneThing extraProp />; // extra property;
52 const c3 = <OneThing {...obj} {...{extra: "extra attr"}} />; // This is OK because all attribute …
54 ><OneThing {...obj} {...{extra: "extra attr"}} /> : JSX.Element
57 >{extra: "extra attr"} : { extra: string; }
58 >extra : string
59 >"extra attr" : "extra attr"
61 const c4 = <OneThing {...obj} y1={10000} />; // extra property;
78 const c6 = <OneThing {...obj2} {...{extra: "extra attr"}} />; // Should error as there is extra at…
80 ><OneThing {...obj2} {...{extra: "extra attr"}} /> : JSX.Element
83 >{extra: "extra attr"} : { extra: string; }
[all …]
DtsxStatelessFunctionComponentOverload4.js13 const c0 = <OneThing extraProp />; // extra property;
16 const c3 = <OneThing {...obj} {...{extra: "extra attr"}} />; // This is OK because all attribute …
17 const c4 = <OneThing {...obj} y1={10000} />; // extra property;
19 const c6 = <OneThing {...obj2} {...{extra: "extra attr"}} />; // Should error as there is extra at…
20 const c7 = <OneThing {...obj2} yy />; // Should error as there is extra attribute that doesn't mat…
22 declare function TestingOneThing(j: {"extra-data": string}): JSX.Element;
26 const d1 = <TestingOneThing extra-data />
50 var c0 = <OneThing extraProp/>; // extra property;
53 …var c3 = <OneThing {...obj} {...{ extra: "extra attr" }}/>; // This is OK because all attribute a…
54 var c4 = <OneThing {...obj} y1={10000}/>; // extra property;
[all …]
DspreadExcessProperty.types7 const extra1 = { a: "a", b: "b", extra: "extra" };
8 >extra1 : { a: string; b: string; extra: string; }
9 >{ a: "a", b: "b", extra: "extra" } : { a: string; b: string; extra: string; }
14 >extra : string
15 >"extra" : "extra"
19 >{ ...extra1 } : { a: string; b: string; extra: string; }
20 >extra1 : { a: string; b: string; extra: string; }
DcontextuallyTypedStringLiteralsInJsxAttributes02.types65 const b0 = <MainButton {...{onClick: (k) => {console.log(k)}}} extra />; // k has type "left" | "r…
67 ><MainButton {...{onClick: (k) => {console.log(k)}}} extra /> : JSX.Element
78 >extra : true
80 const b2 = <MainButton onClick={(k)=>{console.log(k)}} extra />; // k has type "left" | "right"
82 ><MainButton onClick={(k)=>{console.log(k)}} extra /> : JSX.Element
92 >extra : true
94 const b3 = <MainButton {...{goTo:"home"}} extra />; // goTo has type"home" | "contact"
96 ><MainButton {...{goTo:"home"}} extra /> : JSX.Element
101 >extra : true
103 const b4 = <MainButton goTo="home" extra />; // goTo has type "home" | "contact"
[all …]
DtsxStatelessFunctionComponentOverload1.js19 declare function TestingOneThing(j: {"extra-data": string, yy?: string}): JSX.Element;
24 const d1 = <TestingOneThing y1 extra-data />;
25 const d2 = <TestingOneThing extra-data="hello" />;
26 const d3 = <TestingOneThing extra-data="hello" yy="hihi" />;
27 const d4 = <TestingOneThing extra-data="hello" yy={9} direction={10} />;
28 const d5 = <TestingOneThing extra-data="hello" yy="hello" name="Bob" />;
40 const e2 = <TestingOptional y1 y3 extra-prop/>
56 var d1 = <TestingOneThing y1 extra-data/>;
57 var d2 = <TestingOneThing extra-data="hello"/>;
58 var d3 = <TestingOneThing extra-data="hello" yy="hihi"/>;
[all …]
DcontextuallyTypedStringLiteralsInJsxAttributes02.js28 const b0 = <MainButton {...{onClick: (k) => {console.log(k)}}} extra />; // k has type "left" | "r…
29 const b2 = <MainButton onClick={(k)=>{console.log(k)}} extra />; // k has type "left" | "right"
30 const b3 = <MainButton {...{goTo:"home"}} extra />; // goTo has type"home" | "contact"
31 const b4 = <MainButton goTo="home" extra />; // goTo has type "home" | "contact"
34 const c1 = <NoOverload {...{onClick: (k) => {console.log(k)}}} extra />; // k has type any
37 const d1 = <NoOverload1 {...{goTo:"home"}} extra />; // goTo has type "home" | "contact"
53 …var b0 = <MainButton {...{ onClick: function (k) { console.log(k); } }} extra/>; // k has type "le…
54 …var b2 = <MainButton onClick={function (k) { console.log(k); }} extra/>; // k has type "left" | "r…
55 var b3 = <MainButton {...{ goTo: "home" }} extra/>; // goTo has type"home" | "contact"
56 var b4 = <MainButton goTo="home" extra/>; // goTo has type "home" | "contact"
[all …]
/third_party/python/Tools/c-analyzer/c_analyzer/
Dinfo.py42 def from_raw(cls, raw, **extra): argument
44 if extra:
46 raise NotImplementedError((raw, extra))
47 #return cls(raw.item, raw.typedecl, **raw._extra, **extra)
51 return cls(raw, **extra)
53 raise NotImplementedError((raw, extra))
56 def from_resolved(cls, item, resolved, **extra): argument
58 return cls(item, typedecl=resolved, **extra)
60 typedeps, extra = cls._parse_raw_resolved(item, resolved, extra)
63 raise NotImplementedError((item, resolved, extra))
[all …]
/third_party/rust/crates/syn/src/gen/
Deq.rs8 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
11 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
18 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
21 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
28 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
31 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
39 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
42 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
50 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
53 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
[all …]
Dhash.rs9 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
19 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
30 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
44 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
56 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
68 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
85 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
96 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
108 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
120 #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))]
[all …]
/third_party/python/Grammar/
Dpython.gram104 | NEWLINE { (asdl_stmt_seq*)_PyPegen_singleton_seq(p, CHECK(stmt_ty, _PyAST_Pass(EXTRA))) }
115 | e=star_expressions { _PyAST_Expr(e, EXTRA) }
119 | 'pass' { _PyAST_Pass(EXTRA) }
123 | 'break' { _PyAST_Break(EXTRA) }
124 | 'continue' { _PyAST_Continue(EXTRA) }
148 _PyAST_AnnAssign(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Store)), b, c, 1, EXTRA)
152 … CHECK_VERSION(stmt_ty, 6, "Variable annotations syntax is", _PyAST_AnnAssign(a, b, c, 0, EXTRA)) }
154 _PyAST_Assign(a, b, NEW_TYPE_COMMENT(p, tc), EXTRA) }
156 _PyAST_AugAssign(a, b->kind, c, EXTRA) }
177 | 'return' a=[star_expressions] { _PyAST_Return(a, EXTRA) }
[all …]
/third_party/node/deps/v8/infra/testing/
Dbuilders.pyl21 # {'name': 'v8testing', 'variant': 'extra', 'shards': 2}
74 {'name': 'benchmarks', 'variant': 'extra'},
77 {'name': 'mozilla', 'variant': 'extra'},
79 {'name': 'test262', 'variant': 'extra', 'shards': 5},
81 {'name': 'v8testing', 'variant': 'extra', 'shards': 2},
86 'test_args': ['--extra-flags', '--noenable-avx']
92 'test_args': ['--extra-flags', '--noenable-avx']
97 'test_args': ['--extra-flags', '--noenable-avx'],
126 {'name': 'benchmarks', 'variant': 'extra'},
128 {'name': 'mozilla', 'variant': 'extra'},
[all …]
/third_party/python/Modules/
D_elementtree.c23 /* An element can hold this many children without extra memory
201 ElementObjectExtra* extra; member
218 self->extra = PyObject_Malloc(sizeof(ElementObjectExtra)); in create_extra()
219 if (!self->extra) { in create_extra()
225 self->extra->attrib = attrib; in create_extra()
227 self->extra->length = 0; in create_extra()
228 self->extra->allocated = STATIC_CHILDREN; in create_extra()
229 self->extra->children = self->extra->_children; in create_extra()
235 dealloc_extra(ElementObjectExtra *extra) in dealloc_extra() argument
239 if (!extra) in dealloc_extra()
[all …]
/third_party/openssl/apps/
DCA.pl.in45 my %EXTRA;
50 # Split out "-extra-CMD value", and return new |@ARGV|. Fill in
51 # |EXTRA{CMD}| with list of values.
55 $EXTRA{$_} = '';
61 if ( $arg !~ m/-extra-([a-z0-9]+)/ ) {
65 $arg =~ s/-extra-//;
66 die("Unknown \"-${arg}-extra\" option, exiting")
68 $EXTRA{$arg} .= " " . shift;
124 …ewreq | -newreq-nodes | -xsign | -sign | -signCA | -signcert | -crl | -newca [-extra-cmd parameter]
135 . " $EXTRA{req}");
[all …]
/third_party/node/deps/openssl/openssl/apps/
DCA.pl.in45 my %EXTRA;
50 # Split out "-extra-CMD value", and return new |@ARGV|. Fill in
51 # |EXTRA{CMD}| with list of values.
55 $EXTRA{$_} = '';
61 if ( $arg !~ m/-extra-([a-z0-9]+)/ ) {
65 $arg =~ s/-extra-//;
66 die("Unknown \"-${arg}-extra\" option, exiting")
68 $EXTRA{$arg} .= " " . shift;
124 …ewreq | -newreq-nodes | -xsign | -sign | -signCA | -signcert | -crl | -newca [-extra-cmd parameter]
135 . " $EXTRA{req}");
[all …]
/third_party/python/Tools/c-analyzer/cpython/
D_analyzer.py72 # For now we ignore known.values() (i.e. "extra").
134 def analyze_resolved(resolved, decl, types, knowntypes, extra=None): argument
147 if extra is None:
148 extra = {}
149 elif 'unsupported' in extra:
150 raise NotImplementedError((decl, extra))
153 extra['unsupported'] = unsupported
155 return typedeps, extra
245 _, extra = found
246 if extra is None:
[all …]

12345678910>>...220