Home
last modified time | relevance | path

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

12345678910>>...112

/third_party/typescript/tests/baselines/reference/tsserver/projectReferences/
Ddoes-not-error-on-container-only-project.js2 Info 1 [00:01:11.000] Creating configuration project /user/username/projects/container/composite…
3 …nfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/u…
4 Info 3 [00:01:13.000] Config: /user/username/projects/container/compositeExec/tsconfig.json : {
6 "/user/username/projects/container/compositeExec/index.ts"
9 "outFile": "/user/username/projects/container/built/local/compositeExec.js",
12 "configFilePath": "/user/username/projects/container/compositeExec/tsconfig.json"
16 "path": "/user/username/projects/container/lib",
22 Info 4 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/composi…
23 Info 5 [00:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/container/com…
24 Info 6 [00:01:16.000] Config: /user/username/projects/container/lib/tsconfig.json : {
[all …]
Dcan-successfully-find-references-with-out-option.js8 "file": "/user/username/projects/container/compositeExec/index.ts"
25 //// [/user/username/projects/container/lib/tsconfig.json]
39 //// [/user/username/projects/container/lib/index.ts]
40 namespace container {
44 //// [/user/username/projects/container/exec/tsconfig.json]
58 //// [/user/username/projects/container/exec/index.ts]
59 namespace container {
65 //// [/user/username/projects/container/compositeExec/tsconfig.json]
81 //// [/user/username/projects/container/compositeExec/index.ts]
82 namespace container {
[all …]
Dancestor-and-project-ref-management.js8 "file": "/user/username/projects/container/compositeExec/index.ts"
25 //// [/user/username/projects/container/lib/tsconfig.json]
39 //// [/user/username/projects/container/lib/index.ts]
40 namespace container {
44 //// [/user/username/projects/container/exec/tsconfig.json]
58 //// [/user/username/projects/container/exec/index.ts]
59 namespace container {
65 //// [/user/username/projects/container/compositeExec/tsconfig.json]
81 //// [/user/username/projects/container/compositeExec/index.ts]
82 namespace 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/protobuf/java/core/src/test/java/com/google/protobuf/
DAnyTest.java29 TestAny container = TestAny.newBuilder().setValue(Any.pack(message)).build(); in testAnyGeneratedApi() local
31 assertThat(container.getValue().is(TestAllTypes.class)).isTrue(); in testAnyGeneratedApi()
32 assertThat(container.getValue().is(TestAny.class)).isFalse(); in testAnyGeneratedApi()
34 TestAllTypes result = container.getValue().unpack(TestAllTypes.class); in testAnyGeneratedApi()
39 container.getValue().unpack(TestAny.class); in testAnyGeneratedApi()
46 TestAny.Builder containerBuilder = container.toBuilder(); in testAnyGeneratedApi()
48 container = containerBuilder.build(); in testAnyGeneratedApi()
50 container.getValue().unpack(TestAllTypes.class); in testAnyGeneratedApi()
63 TestAny container = TestAny.newBuilder().setValue(Any.pack(message)).build(); in testAnyGeneratedExemplarApi() local
65 assertThat(container.getValue().isSameTypeAs(TestAllTypes.getDefaultInstance())).isTrue(); in testAnyGeneratedExemplarApi()
[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 …]
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.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 …]
DrecursiveGenericUnionType1.types3 export type Container<T> = T | {
4 >Container : Container<T>
6 [i: string]: Container<T>;
10 export type IStringContainer = Container<string>;
11 >IStringContainer : string | { [i: string]: Container<string>; }
15 export type Container<T> = T | {
16 >Container : Container<T>
18 [i: string]: Container<T>;
22 export type IStringContainer = Container<string>;
23 >IStringContainer : string | { [i: string]: Container<string>; }
[all …]
DrecursiveGenericUnionType2.types3 export type Container<T> = T | {
4 >Container : Container<T>
6 [i: string]: Container<T>[];
10 export type IStringContainer = Container<string>;
11 >IStringContainer : string | { [i: string]: Container<string>[]; }
15 export type Container<T> = T | {
16 >Container : Container<T>
18 [i: string]: Container<T>[];
22 export type IStringContainer = Container<string>;
23 >IStringContainer : string | { [i: string]: Container<string>[]; }
[all …]
DnumericStringLiteralTypes.types53 type Container<T> = {
54 >Container : Container<T>
60 type UnwrapContainers<T extends Container<unknown>[]> = { [K in keyof T]: T[K]['value'] };
63 declare function createContainer<T extends unknown>(value: T): Container<T>;
64 >createContainer : <T extends unknown>(value: T) => Container<T>
67 declare function f<T extends Container<unknown>[]>(containers: [...T], callback: (...values: Unwrap…
68 >f : <T extends Container<unknown>[]>(containers: [...T], callback: (...values: UnwrapContainers<T>…
74 >container1 : Container<string>
75 >createContainer('hi') : Container<string>
76 >createContainer : <T extends unknown>(value: T) => Container<T>
[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/rust/rust/tests/ui/nll/
Dissue-32382-index-assoc-type-with-lifetime.rs14 type Container: ?Sized; typedef
15 fn foobar_1( container: &Self::Container ) -> &str; in foobar_1()
16 fn foobar_2( container: &Self::Container ) -> &str; in foobar_2()
17 fn foobar_3( container: &Self::Container ) -> &str; in foobar_3()
26 type Container = [&'a str]; typedef
28 fn foobar_1<'r>( container: &'r [&'a str] ) -> &'r str { in foobar_1()
29 container[0] in foobar_1()
32 fn foobar_2<'r>( container: &'r Self::Container ) -> &'r str { in foobar_2()
33 container.index( 0 ) in foobar_2()
36 fn foobar_3<'r>( container: &'r Self::Container ) -> &'r str { in foobar_3()
[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/rust/rust/src/tools/rust-analyzer/crates/hir-def/src/nameres/
Ddiagnostics.rs54 container: LocalModuleId, in unresolved_module()
59 in_module: container, in unresolved_module()
65 container: LocalModuleId, in unresolved_extern_crate()
69 in_module: container, in unresolved_extern_crate()
75 container: LocalModuleId, in unresolved_import()
79 Self { in_module: container, kind: DefDiagnosticKind::UnresolvedImport { id, index } } in unresolved_import()
83 container: LocalModuleId, in unconfigured_code()
88 Self { in_module: container, kind: DefDiagnosticKind::UnconfiguredCode { ast, cfg, opts } } in unconfigured_code()
93 container: LocalModuleId, in unresolved_proc_macro()
97 Self { in_module: container, kind: DefDiagnosticKind::UnresolvedProcMacro { ast, krate } } in unresolved_proc_macro()
[all …]
/third_party/json/tests/src/
Dunit-byte_container_with_subtype.cpp19 SECTION("empty container")
21 nlohmann::byte_container_with_subtype<std::vector<std::uint8_t>> container; variable
23 CHECK(!container.has_subtype());
24 CHECK(container.subtype() == static_cast<subtype_type>(-1));
26 container.clear_subtype();
27 CHECK(!container.has_subtype());
28 CHECK(container.subtype() == static_cast<subtype_type>(-1));
30 container.set_subtype(42);
31 CHECK(container.has_subtype());
32 CHECK(container.subtype() == 42);
[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()
89 container = malloc(sizeof(*container)); in BENCHMARK_IMPL()
90 ASSERT_NOT_NULL(container); in BENCHMARK_IMPL()
91 container->async_events = 0; in BENCHMARK_IMPL()
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dgitlab-ci.yml29 # image doesn't exist yet, the container stage job generates it.
40 # repository's container registry, so that the image from the main
43 .debian-container-version:
47 .debian-container:
49 - .fdo.container-build@debian
50 - .container
51 - .debian-container-version
53 .container:
54 stage: container
56 - .container+build-rules
[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/protobuf/third_party/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
132 // Container-based version of absl::linear_search() for performing a linear
133 // search within a container.
150 // Container-based version of the <iterator> `std::distance()` function to
151 // return the number of elements within a container.
166 // Container-based version of the <algorithm> `std::all_of()` function to
167 // test if all elements within a container satisfy a condition.
[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/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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DDebugSubsectionRecord.cpp27 CodeViewContainer Container) in DebugSubsectionRecord() argument
28 : Container(Container), Kind(Kind), Data(Data) {} in DebugSubsectionRecord()
32 CodeViewContainer Container) { in initialize() argument
42 Info.Container = Container; in initialize()
56 std::shared_ptr<DebugSubsection> Subsection, CodeViewContainer Container) in DebugSubsectionRecordBuilder() argument
57 : Subsection(std::move(Subsection)), Container(Container) {} in DebugSubsectionRecordBuilder()
60 const DebugSubsectionRecord &Contents, CodeViewContainer Container) in DebugSubsectionRecordBuilder() argument
61 : Contents(Contents), Container(Container) {} in DebugSubsectionRecordBuilder()
67 // regardless of the container kind. in calculateSerializedLength()
72 assert(Writer.getOffset() % alignOf(Container) == 0 && in commit()
[all …]
/third_party/libabigail/.github/workflows/
Dbuild-container.yaml1 name: Build Deploy Container
35 # Dockerfiles to build, container names to use, and to tag as libabigail:latest?
36 container: [["Dockerfile.fedora", "ghcr.io/woodard/libabigail-fedora", true],
54 dockerfile: ${{ matrix.container[0] }}
55 uri: ${{ matrix.container[1] }}
56 isLatest: ${{ matrix.container[2] }}
63 run: docker pull ${uri}:latest || echo "No container to pull"
65 - name: Build Container
67 container=$uri:latest
68 docker build -f docker/${dockerfile} -t ${container} .
[all …]

12345678910>>...112