Home
last modified time | relevance | path

Searched full:container (Results 1 – 25 of 2700) sorted by relevance

12345678910>>...108

/third_party/flutter/flutter/packages/flutter/test/widgets/
Dframework_test.dart69 Container(
73 Container(
86 '- Container-[<1>]\n'
87 '- Container-[<2>]\n'
99 Container(
102 Container(
105 Container(
114 Container(
118 Container(
132 '- Container-[<1>]\n'
[all …]
Dlist_view_correction_test.dart18 Container(height: 400.0, child: const Text('1')),
19 Container(height: 400.0, child: const Text('2')),
20 Container(height: 400.0, child: const Text('3')),
21 Container(height: 400.0, child: const Text('4')),
22 Container(height: 400.0, child: const Text('5')),
23 Container(height: 400.0, child: const Text('6')),
41 Container(height: 200.0, child: const Text('1')),
42 Container(height: 400.0, child: const Text('2')),
43 Container(height: 400.0, child: const Text('3')),
44 Container(height: 400.0, child: const Text('4')),
[all …]
Dslivers_evil_test.dart25 Container(height: minExtent),
26 Expanded(child: Container()),
94 SliverToBoxAdapter(child: Container(height: 5.0)),
95 SliverToBoxAdapter(child: Container(height: 520.0)),
96 SliverToBoxAdapter(child: Container(height: 520.0)),
97 SliverToBoxAdapter(child: Container(height: 520.0)),
99 SliverToBoxAdapter(child: Container(height: 520.0)),
102 sliver: SliverToBoxAdapter(child: Container(height: 520.0)),
104 SliverToBoxAdapter(child: Container(height: 520.0)),
106 SliverToBoxAdapter(child: Container(height: 520.0)),
[all …]
Dinherited_test.dart52 Widget build(BuildContext context) => Container();
67 return Container();
94 child: Container(
99 return Container();
121 Container(
124 child: Container(
126 left: Container(
129 child: Container(
132 child: Container(
145 right: Container(
[all …]
Dreparent_state_test.dart24 return Container();
47 return Container();
61 Container(
64 Container(
88 Container(
94 Container(
113 child: Container(
116 child: Container(),
180 child: Container(
183 child: Container(),
[all …]
Dglobal_keys_duplicated_test.dart16 Container(key: const GlobalObjectKey(0)),
17 Container(key: const GlobalObjectKey(0)),
30 Container(child: Container(key: const GlobalObjectKey(0))),
31 Container(child: Container(key: const GlobalObjectKey(0))),
38 expect(error.toString(), contains('Container'));
47 Container(child: Container(key: const GlobalObjectKey(0))),
48 Container(key: const Key('x'), child: Container(key: const GlobalObjectKey(0))),
55 expect(error.toString(), contains('Container'));
56 expect(error.toString(), contains('Container-[<\'x\'>]'));
67 Container(child: Container(key: const GlobalObjectKey(0))),
[all …]
Dflex_test.dart15 child: Container(
28 child: Container(
80 child: Container(
84 Expanded(child: Container()),
85 Expanded(child: Container()),
86 Expanded(child: Container()),
87 Expanded(child: Container()),
88 Expanded(child: Container()),
89 Expanded(child: Container()),
97 child: Container(
[all …]
Dsyncing_test.dart48 Container(
49 child: Container(
52 child: Container(),
64 Container(
65 child: Container(
68 child: Container(),
77 await tester.pumpWidget(Container());
82 Container(
83 child: Container(
86 child: Container(),
[all …]
Dimage_rtl_test.dart51 child: Container(
68 expect(find.byType(Container), paints
82 expect(find.byType(Container), isNot(paints..scale()..scale()));
90 child: Container(
107 expect(find.byType(Container), paints
118 expect(find.byType(Container), isNot(paints..scale()));
126 child: Container(
142 expect(find.byType(Container), paints
153 expect(find.byType(Container), isNot(paints..scale()));
161 child: Container(
[all …]
/third_party/gn/src/base/
Dstl_util.h31 template <typename Container, typename Predicate>
32 void IterateAndEraseIf(Container& container, Predicate pred) { in IterateAndEraseIf() argument
33 for (auto it = container.begin(); it != container.end();) { in IterateAndEraseIf()
35 it = container.erase(it); in IterateAndEraseIf()
78 // Returns true if the container is sorted.
79 template <typename Container>
80 bool STLIsSorted(const Container& cont) { in STLIsSorted()
81 // Note: Use reverse iterator on container to ensure we only require in STLIsSorted()
84 std::less<typename Container::value_type>()) == in STLIsSorted()
122 // Returns true if the sorted container |a1| contains all elements of the sorted
[all …]
/third_party/typescript/tests/baselines/reference/
DintersectionReductionStrict.types258 type Container<Type extends string> = {
259 >Container : Container<Type>
265 const f2 = (t: Container<"a"> | (Container<"b"> & Container<"c">)): Container<"a"> => t;
266 >f2 : (t: Container<"a"> | (Container<"b"> & Container<"c">)) => Container<"a">
267 >(t: Container<"a"> | (Container<"b"> & Container<"c">)): Container<"a"> => t : (t: Container<"a"> …
268 >t : Container<"a">
269 >t : Container<"a">
271 const f3 = (t: Container<"a"> | (Container<"b"> & { dataB: boolean } & Container<"a">)): Container<…
272 >f3 : (t: Container<"a"> | (Container<"b"> & { dataB: boolean;} & Container<"a">)) => Container<…
273Container<"a"> | (Container<"b"> & { dataB: boolean } & Container<"a">)): Container<"a"> => t : (t…
[all …]
DintersectionReduction.types291 type Container<Type extends string> = {
292 >Container : Container<Type>
298 const f2 = (t: Container<"a"> | (Container<"b"> & Container<"c">)): Container<"a"> => t;
299 >f2 : (t: Container<"a"> | (Container<"b"> & Container<"c">)) => Container<"a">
300 >(t: Container<"a"> | (Container<"b"> & Container<"c">)): Container<"a"> => t : (t: Container<"a"> …
301 >t : Container<"a">
302 >t : Container<"a">
304 const f3 = (t: Container<"a"> | (Container<"b"> & { dataB: boolean } & Container<"a">)): Container<…
305 >f3 : (t: Container<"a"> | (Container<"b"> & { dataB: boolean;} & Container<"a">)) => Container<…
306Container<"a"> | (Container<"b"> & { dataB: boolean } & Container<"a">)): Container<"a"> => t : (t…
[all …]
DrecursiveGenericUnionType1.symbols5 export type Container<T> = T | {
6 >Container : Symbol(Container, Decl(recursiveGenericUnionType1.ts, 0, 22))
10 [i: string]: Container<T>;
12 >Container : Symbol(Container, Decl(recursiveGenericUnionType1.ts, 0, 22))
16 export type IStringContainer = Container<string>;
18 >Container : Symbol(Container, Decl(recursiveGenericUnionType1.ts, 0, 22))
24 export type Container<T> = T | {
25 >Container : Symbol(Container, Decl(recursiveGenericUnionType1.ts, 7, 22))
29 [i: string]: Container<T>;
31 >Container : Symbol(Container, Decl(recursiveGenericUnionType1.ts, 7, 22))
[all …]
DrecursiveGenericUnionType2.symbols5 export type Container<T> = T | {
6 >Container : Symbol(Container, Decl(recursiveGenericUnionType2.ts, 0, 22))
10 [i: string]: Container<T>[];
12 >Container : Symbol(Container, Decl(recursiveGenericUnionType2.ts, 0, 22))
16 export type IStringContainer = Container<string>;
18 >Container : Symbol(Container, Decl(recursiveGenericUnionType2.ts, 0, 22))
24 export type Container<T> = T | {
25 >Container : Symbol(Container, Decl(recursiveGenericUnionType2.ts, 7, 22))
29 [i: string]: Container<T>[];
31 >Container : Symbol(Container, Decl(recursiveGenericUnionType2.ts, 7, 22))
[all …]
DrecursiveGenericUnionType1.types3 export type Container<T> = T | {
4 >Container : Container<T>
6 [i: string]: Container<T>;
10 export type IStringContainer = Container<string>;
15 export type Container<T> = T | {
16 >Container : Container<T>
18 [i: string]: Container<T>;
22 export type IStringContainer = Container<string>;
26 var x: Test1.Container<number>;
27 >x : Test1.Container<number>
DrecursiveGenericUnionType2.types3 export type Container<T> = T | {
4 >Container : Container<T>
6 [i: string]: Container<T>[];
10 export type IStringContainer = Container<string>;
15 export type Container<T> = T | {
16 >Container : Container<T>
18 [i: string]: Container<T>[];
22 export type IStringContainer = Container<string>;
26 var x: Test1.Container<number>;
27 >x : Test1.Container<number>
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DAnyTest.java45 TestAny container = TestAny.newBuilder().setValue(Any.pack(message)).build(); in testAnyGeneratedApi() local
47 assertTrue(container.getValue().is(TestAllTypes.class)); in testAnyGeneratedApi()
48 assertFalse(container.getValue().is(TestAny.class)); in testAnyGeneratedApi()
50 TestAllTypes result = container.getValue().unpack(TestAllTypes.class); in testAnyGeneratedApi()
56 container.getValue().unpack(TestAny.class); in testAnyGeneratedApi()
63 TestAny.Builder containerBuilder = container.toBuilder(); in testAnyGeneratedApi()
65 container = containerBuilder.build(); in testAnyGeneratedApi()
67 container.getValue().unpack(TestAllTypes.class); in testAnyGeneratedApi()
79 TestAny container = TestAny.newBuilder().setValue(Any.pack(message, "xxx.com")).build(); in testCustomTypeUrls() local
82 "xxx.com/" + TestAllTypes.getDescriptor().getFullName(), container.getValue().getTypeUrl()); in testCustomTypeUrls()
[all …]
/third_party/alsa-utils/axfer/test/
DMakefile.am2 container-test \
6 container-test \
10 ../container.h \
11 ../container.c \
12 ../container-riff-wave.c \
13 ../container-au.c \
14 ../container-voc.c \
15 ../container-raw.c \
18 container-test.c
21 ../container.h \
[all …]
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
Djava_iterator.h38 template <typename ReturnType, typename Container,
39 typename ContainerBase = Container>
41 public RefCounted< PODIterator<ReturnType, Container> > {
43 explicit PODIterator(Container* container) : container_(container) {} in PODIterator() argument
59 Container* container() { return container_; } in container() function
62 Container* container_; // Dumb pointer is used to avoid circular ref-counting
65 template <typename ReturnType, typename Container,
66 typename ContainerBase = Container>
68 public RefCounted< RefIterator<ReturnType, Container> > {
70 explicit RefIterator(Container* container) : container_(container) {} in RefIterator() argument
[all …]
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
Djava_iterator.h38 template <typename ReturnType, typename Container,
39 typename ContainerBase = Container>
41 public RefCounted< PODIterator<ReturnType, Container> > {
43 explicit PODIterator(Container* container) : container_(container) {} in PODIterator() argument
59 Container* container() { return container_; } in container() function
62 Container* container_; // Dumb pointer is used to avoid circular ref-counting
65 template <typename ReturnType, typename Container,
66 typename ContainerBase = Container>
68 public RefCounted< RefIterator<ReturnType, Container> > {
70 explicit RefIterator(Container* container) : container_(container) {} in RefIterator() argument
[all …]
/third_party/libuv/test/
Dbenchmark-million-async.c33 static struct async_container* container; variable
47 i = fastrand() % ARRAY_SIZE(container->async_handles); in thread_cb()
48 uv_async_send(container->async_handles + i); in thread_cb()
54 container->async_events++; in async_cb()
65 for (i = 0; i < ARRAY_SIZE(container->async_handles); i++) { in timer_cb()
66 uv_async_t* handle = container->async_handles + i; in timer_cb()
69 container->handles_seen++; in timer_cb()
88 container = malloc(sizeof(*container)); in BENCHMARK_IMPL()
89 ASSERT_NOT_NULL(container); in BENCHMARK_IMPL()
90 container->async_events = 0; in BENCHMARK_IMPL()
[all …]
/third_party/skia/third_party/externals/microhttpd/src/microspdy/
Dstructures.c35 SPDYF_name_value_is_empty(struct SPDY_NameValue *container) in SPDYF_name_value_is_empty() argument
37 SPDYF_ASSERT(NULL != container, "NULL is not an empty container!"); in SPDYF_name_value_is_empty()
38 return (NULL == container->name && NULL == container->value) ? SPDY_YES : SPDY_NO; in SPDYF_name_value_is_empty()
56 SPDY_name_value_add (struct SPDY_NameValue *container, in SPDY_name_value_add() argument
67 if(NULL == container || NULL == name || NULL == value || 0 == (len = strlen(name))) in SPDY_name_value_add()
78 if(SPDYF_name_value_is_empty(container)) in SPDY_name_value_add()
80 //container is empty/just created in SPDY_name_value_add()
81 if (NULL == (container->name = strdup (name))) in SPDY_name_value_add()
85 if (NULL == (container->value = malloc(sizeof(char *)))) in SPDY_name_value_add()
87 free(container->name); in SPDY_name_value_add()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
Dcontainer.h16 // File: container.h
19 // This header file provides Container-based versions of algorithmic functions
31 // `absl::c_xx(container, ...) are equivalent to std:: functions such as
36 // For template parameter and variable naming, `C` indicates the container type
138 // Container-based version of absl::linear_search() for performing a linear
139 // search within a container.
153 // Container-based version of the <iterator> `std::distance()` function to
154 // return the number of elements within a container.
168 // Container-based version of the <algorithm> `std::all_of()` function to
169 // test a condition on all elements within a container.
[all …]
/third_party/json/test/src/
Dunit-byte_container_with_subtype.cpp39 SECTION("empty container")
41 nlohmann::byte_container_with_subtype<std::vector<std::uint8_t>> container; variable
43 CHECK(!container.has_subtype());
44 CHECK(container.subtype() == subtype_type(-1));
46 container.clear_subtype();
47 CHECK(!container.has_subtype());
48 CHECK(container.subtype() == subtype_type(-1));
50 container.set_subtype(42);
51 CHECK(container.has_subtype());
52 CHECK(container.subtype() == 42);
[all …]
/third_party/skia/third_party/externals/microhttpd/src/testspdy/
Dtest_struct_namevalue.c107 struct SPDY_NameValue *container; in main() local
114 if(NULL == (container = SPDY_name_value_create ())) in main()
119 if(NULL != SPDY_name_value_lookup (container, "anything", &ret)) in main()
124 if(SPDY_name_value_iterate (container, NULL, NULL) != 0) in main()
131 if(SPDY_YES != SPDY_name_value_add(container,pairs[i],pairs[i+1])) in main()
136 if(SPDY_name_value_iterate (container, NULL, NULL) != ((i / 2) + 1)) in main()
142 if(NULL != SPDY_name_value_lookup (container, "anything", &ret)) in main()
149 value = SPDY_name_value_lookup(container,pairs[i], &ret); in main()
158 SPDY_name_value_iterate (container, &iterate_cb, &cls); in main()
161 if(SPDY_name_value_iterate (container, &iterate_brake_cb, &cls) != brake_at) in main()
[all …]

12345678910>>...108