Home
last modified time | relevance | path

Searched refs:nested (Results 1 – 25 of 1292) sorted by relevance

12345678910>>...52

/third_party/weston/clients/
Dnested.c59 struct nested { struct
104 struct nested *nested; member
149 void (* render_clients)(struct nested *nested, cairo_t *cr);
263 wl_display_flush_clients(surface->nested->child_display); in flush_surface_frame_callback_list()
269 struct nested *nested = data; in redraw_handler() local
274 widget_get_allocation(nested->widget, &allocation); in redraw_handler()
276 surface = window_get_surface(nested->window); in redraw_handler()
288 nested->renderer->render_clients(nested, cr); in redraw_handler()
299 struct nested *nested = data; in keyboard_focus_handler() local
301 window_schedule_redraw(nested->window); in keyboard_focus_handler()
[all …]
/third_party/typescript/tests/baselines/reference/
DdestructuringParameterDeclaration8.types5 >test : ({ method, nested: { p } }: { method?: 'x' | 'y'; nested?: { p: 'a' | 'b'; …
11 nested: { p = 'c' }
12 >nested : any
20 nested?: { p: 'a' | 'b' }
21 >nested : { p: 'a' | 'b'; }
35 >test : ({ method, nested: { p } }: { method?: "x" | "y"; nested?: { p: "a" | "b"; }; }) => void
38 test({ method: 'x', nested: { p: 'a' } })
39 >test({ method: 'x', nested: { p: 'a' } }) : void
40 >test : ({ method, nested: { p } }: { method?: "x" | "y"; nested?: { p: "a" | "b"; }; }) => void
41 >{ method: 'x', nested: { p: 'a' } } : { method: "x"; nested: { p: "a"; }; }
[all …]
Dcircular4.symbols8 export namespace nested {
9 >nested : Symbol(nested, Decl(a.ts, 1, 22))
11 export type T = ns2.nested.T;
14 >nested : Symbol(ns2.nested, Decl(b.ts, 1, 22))
15 >T : Symbol(ns2.nested.T, Decl(b.ts, 2, 27))
26 export namespace nested {
27 >nested : Symbol(nested, Decl(b.ts, 1, 22))
29 export type T = ns1.nested.T;
32 >nested : Symbol(ns1.nested, Decl(a.ts, 1, 22))
33 >T : Symbol(ns1.nested.T, Decl(a.ts, 2, 27))
DjsdocTemplateConstructorFunction2.types26 * @param {T} o.nested
29 …t.prototype.add = function(v, o) { this.u = v || o.nested return this.u} : (v: T, o: { neste…
35 >function(v, o) { this.u = v || o.nested return this.u} : (v: T, o: { nested: T; }) => T
37 >o : { nested: T; }
39 this.u = v || o.nested
40 >this.u = v || o.nested : T
44 >v || o.nested : T
46 >o.nested : T
47 >o : { nested: T; }
48 >nested : T
[all …]
DdestructuringParameterDeclaration8.symbols10 nested: { p = 'c' }
11 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 6, 23))
18 nested?: { p: 'a' | 'b' }
19 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 6, 23))
34 test({ method: 'x', nested: { p: 'a' } })
37 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 15, 19))
40 test({ method: 'z', nested: { p: 'b' } })
43 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 16, 19))
46 test({ method: 'one', nested: { p: 'a' } })
49 >nested : Symbol(nested, Decl(destructuringParameterDeclaration8.ts, 17, 21))
DdestructuringTypeGuardFlow.types12 nested: {
13 >nested : { a: number; b: string | null; }
24 const aFoo: foo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } };
26 >{ bar: 3, baz: "b", nested: { a: 1, b: "y" } } : { bar: number; baz: string; nested: { a: number; …
31 >nested : { a: number; b: string; }
38 if (aFoo.bar && aFoo.nested.b) {
39 >aFoo.bar && aFoo.nested.b : string | 0 | null
43 >aFoo.nested.b : string | null
44 >aFoo.nested : { a: number; b: string | null; }
46 >nested : { a: number; b: string | null; }
[all …]
DdestructuringParameterDeclaration8.js6 nested: { p = 'c' } property
9 nested?: { p: 'a' | 'b' }
17 test({ method: 'x', nested: { p: 'a' } }) property
18 test({ method: 'z', nested: { p: 'b' } }) property
19 test({ method: 'one', nested: { p: 'a' } }) property
26 …var _b = _a.method, method = _b === void 0 ? 'z' : _b, _c = _a.nested.p, p = _c === void 0 ? 'c' :…
31 test({ method: 'x', nested: { p: 'a' } }); property
32 test({ method: 'z', nested: { p: 'b' } }); property
33 test({ method: 'one', nested: { p: 'a' } }); property
DcommonJSReexport.types2 const { hardline } = require('./second').nested;
4 >require('./second').nested : typeof import("tests/cases/conformance/salsa/first")
5 >require('./second') : { nested: typeof import("tests/cases/conformance/salsa/first"); }
8 >nested : typeof import("tests/cases/conformance/salsa/first")
36 >module.exports = { nested: require('./first')} : { nested: typeof import("tests/cases/conformance…
37 >module.exports : { nested: typeof import("tests/cases/conformance/salsa/first"); }
38 >module : { exports: { nested: typeof import("tests/cases/conformance/salsa/first"); }; }
39 >exports : { nested: typeof import("tests/cases/conformance/salsa/first"); }
40 >{ nested: require('./first')} : { nested: typeof import("tests/cases/conformance/salsa/first"); }
42 nested: require('./first')
[all …]
DdestructuringTypeGuardFlow.symbols11 nested: {
12 >nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 2, 14))
22 const aFoo: foo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } };
27 >nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 9, 37))
31 if (aFoo.bar && aFoo.nested.b) {
35 >aFoo.nested.b : Symbol(b, Decl(destructuringTypeGuardFlow.ts, 4, 14))
36 >aFoo.nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 2, 14))
38 >nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 2, 14))
41 const { bar, baz, nested: {a, b: text} } = aFoo;
44 >nested : Symbol(nested, Decl(destructuringTypeGuardFlow.ts, 2, 14))
[all …]
DimportedAliasesInTypePositions.js4 export module elaborate.nested.mod.name {
13 import ReferredTo = RT_ALIAS.elaborate.nested.mod.name.ReferredTo;
28 var nested;
29 (function (nested) { argument
43 })(mod = nested.mod || (nested.mod = {}));
44 })(nested = elaborate.nested || (elaborate.nested = {}));
DdestructuringTypeGuardFlow.js5 nested: {
11 const aFoo: foo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } }; property
13 if (aFoo.bar && aFoo.nested.b) {
14 const { bar, baz, nested: {a, b: text} } = aFoo;
29 if (bBar.elem2 && bBar.elem2.bar && bBar.elem2.nested.b) {
30 const { bar, baz, nested: {a, b: text} } = bBar.elem2;
40 var aFoo = { bar: 3, baz: "b", nested: { a: 1, b: "y" } }; property
41 if (aFoo.bar && aFoo.nested.b) {
42 var bar = aFoo.bar, baz = aFoo.baz, _a = aFoo.nested, a = _a.a, text = _a.b;
50 if (bBar.elem2 && bBar.elem2.bar && bBar.elem2.nested.b) {
[all …]
DerrorSuperCalls.errors.txt2 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
3 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
4 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
5 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
6 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
7 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
8 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
9 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
11 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
12 …: error TS2337: Super calls are not permitted outside constructors or in nested functions inside c…
[all …]
DfilterNamespace_import.js8 export namespace nested {
23 let n: ns.nested.NestedClass = { a: '' };
38 var nested;
39 (function (nested) { argument
45 nested.NestedClass = NestedClass;
46 })(nested = ns.nested || (ns.nested = {}));
DimportedAliasesInTypePositions.types5 import ReferredTo = RT_ALIAS.elaborate.nested.mod.name.ReferredTo;
9 >nested : typeof RT_ALIAS.elaborate.nested
10 >mod : typeof RT_ALIAS.elaborate.nested.mod
11 >name : typeof RT_ALIAS.elaborate.nested.mod.name
25 export module elaborate.nested.mod.name {
27 >nested : typeof nested
DtypedefTagNested.symbols45 * @property {string} nested
49 var sala = { name: 'uppsala', not: 0, nested: "ok" };
53 >nested : Symbol(nested, Decl(a.js, 35, 37))
65 sala.nested
66 >sala.nested : Symbol(nested, Decl(a.js, 31, 3))
68 >nested : Symbol(nested, Decl(a.js, 31, 3))
DimportedAliasesInTypePositions.symbols5 import ReferredTo = RT_ALIAS.elaborate.nested.mod.name.ReferredTo;
9 >nested : Symbol(RT_ALIAS.elaborate.nested, Decl(file1.ts, 0, 24))
10 >mod : Symbol(RT_ALIAS.elaborate.nested.mod, Decl(file1.ts, 0, 31))
11 >name : Symbol(RT_ALIAS.elaborate.nested.mod.name, Decl(file1.ts, 0, 35))
26 export module elaborate.nested.mod.name {
28 >nested : Symbol(nested, Decl(file1.ts, 0, 24))
DintersectionTypeMembers.js31 nested: { doublyNested: { d: string; }, different: { e: number } };
34 nested: { doublyNested: { f: string; }, other: {g: number } };
37 nested: { property
49 nested: { doublyNested: { g: string; } }
53 nested: { doublyNested: { h: string; } }
57 nested: { property
85 nested: { property
95 nested: { property
DcommonJSReexport.symbols2 const { hardline } = require('./second').nested;
4 >require('./second').nested : Symbol(nested, Decl(second.js, 0, 18))
7 >nested : Symbol(nested, Decl(second.js, 0, 18))
35 nested: require('./first')
36 >nested : Symbol(nested, Decl(second.js, 0, 18))
Dcircular4.types6 export namespace nested {
7 export type T = ns2.nested.T;
10 >nested : any
19 export namespace nested {
20 export type T = ns1.nested.T;
23 >nested : any
DintersectionTypeMembers.types101 nested: { doublyNested: { d: string; }, different: { e: number } };
102 >nested : { doublyNested: { d: string;}; different: { e: number;}; }
109 nested: { doublyNested: { f: string; }, other: {g: number } };
110 >nested : { doublyNested: { f: string;}; other: { g: number;}; }
118nested: { doublyNested: { d: 'yes', f: 'no' }, differen…
120 nested: {
121 >nested : { doublyNested: { d: string; f: string; }; different: { e: number; }; other: { g: number;…
151 // Additional test case with >2 doubly nested members so fix for #31441 is tested w/ excess props
153 nested: { doublyNested: { g: string; } }
154 >nested : { doublyNested: { g: string;}; }
[all …]
DnestedFreshLiteral.types7 nested?: NestedSelector
8 >nested : NestedSelector | undefined
17 >{ nested: { prop: { colour: 'red' } }} : { nested: { prop: { colour: string; }; }; }
19 nested: { prop: { colour: 'red' } }
20 >nested : { prop: { colour: string; }; }
/third_party/libuv/test/
Dtest-callback-stack.c39 static int nested = 0; variable
56 ASSERT(nested == 0 && "close_cb must be called from a fresh stack"); in close_cb()
64 ASSERT(nested == 0 && "shutdown_cb must be called from a fresh stack"); in shutdown_cb()
71 ASSERT(nested == 0 && "read_cb must be called from a fresh stack"); in read_cb()
82 nested++; in read_cb()
84 nested--; in read_cb()
95 nested++; in read_cb()
102 nested--; in read_cb()
109 ASSERT(nested == 0 && "timer_cb must be called from a fresh stack"); in timer_cb()
113 nested++; in timer_cb()
[all …]
/third_party/boost/boost/spirit/home/classic/meta/
Drefactoring.hpp69 : binary(binary_), nested(nested_) {} in refactor_unary_parser()
80 parse(*this, scan, binary, nested); in parse()
85 typename NestedT::embed_t nested; member in boost::spirit::refactor_unary_parser
96 : nested(nested_) {} in refactor_unary_gen()
103 (subject.derived(), nested); in operator []()
107 typename NestedT::embed_t nested; member in boost::spirit::refactor_unary_gen
152 : binary(binary_), nested(nested_) {} in refactor_action_parser()
163 parse(*this, scan, binary, nested); in parse()
168 typename NestedT::embed_t nested; member in boost::spirit::refactor_action_parser
179 : nested(nested_) {} in refactor_action_gen()
[all …]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_move_unittest.cc54 const auto* nested = &message1.optional_nested_message(); in TEST() local
61 EXPECT_EQ(nested, &message2.optional_nested_message()); in TEST()
62 EXPECT_NE(nested, &message1.optional_nested_message()); in TEST()
68 const auto* nested = &message1.optional_nested_message(); in TEST() local
76 EXPECT_EQ(nested, &message2.optional_nested_message()); in TEST()
77 EXPECT_NE(nested, &message1.optional_nested_message()); in TEST()
94 const auto* nested = &message1_on_arena->optional_nested_message(); in TEST() local
101 EXPECT_EQ(nested, &message2_on_arena->optional_nested_message()); in TEST()
110 const auto* nested = &message1_on_arena->optional_nested_message(); in TEST() local
117 EXPECT_NE(nested, &message2_on_arena->optional_nested_message()); in TEST()
[all …]
/third_party/boost/boost/units/
Doperators.hpp51 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (+typeof_::make<X>()))
52 typedef typename nested::type type;
57 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (-typeof_::make<X>()))
58 typedef typename nested::type type;
63 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (typeof_::make<X>()+typeof_::make<Y>()))
64 typedef typename nested::type type;
69 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (typeof_::make<X>()-typeof_::make<Y>()))
70 typedef typename nested::type type;
75 BOOST_TYPEOF_NESTED_TYPEDEF_TPL(nested, (typeof_::make<X>()*typeof_::make<Y>()))
76 typedef typename nested::type type;
[all …]

12345678910>>...52