Home
last modified time | relevance | path

Searched refs:Set (Results 1 – 25 of 3671) sorted by relevance

12345678910>>...147

/third_party/typescript/tests/baselines/reference/
DcontrolFlowInstanceof.types4 function f1(s: Set<string> | Set<number>) {
5 >f1 : (s: Set<string> | Set<number>) => void
6 >s : Set<string> | Set<number>
8 s = new Set<number>();
9 >s = new Set<number>() : Set<number>
10 >s : Set<string> | Set<number>
11 >new Set<number>() : Set<number>
12 >Set : SetConstructor
14 s; // Set<number>
15 >s : Set<number>
[all …]
DES5For-ofTypeCheck13.types2 const strSet: Set<string> = new Set()
3 >strSet : Set<string>
4 >new Set() : Set<string>
5 >Set : SetConstructor
8 >strSet.add('Hello') : Set<string>
9 >strSet.add : (value: string) => Set<string>
10 >strSet : Set<string>
11 >add : (value: string) => Set<string>
15 >strSet.add('World') : Set<string>
16 >strSet.add : (value: string) => Set<string>
[all …]
DcontrolFlowInstanceof.symbols4 function f1(s: Set<string> | Set<number>) {
7 >Set : Symbol(Set, Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.collection.d.ts, --, -…
8 >Set : Symbol(Set, Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.collection.d.ts, --, -…
10 s = new Set<number>();
12 >Set : Symbol(Set, Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.collection.d.ts, --, -…
14 s; // Set<number>
17 if (s instanceof Set) {
19 >Set : Symbol(Set, Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.collection.d.ts, --, -…
21 s; // Set<number>
24 s; // Set<number>
[all …]
/third_party/curl/tests/data/
Dtest44423 Set-Cookie: cookie-1=yes;
24 Set-Cookie: cookie-2=yes;
25 Set-Cookie: cookie-3=yes;
26 Set-Cookie: cookie-4=yes;
27 Set-Cookie: cookie-5=yes;
28 Set-Cookie: cookie-6=yes;
29 Set-Cookie: cookie-7=yes;
30 Set-Cookie: cookie-8=yes;
31 Set-Cookie: cookie-9=yes;
32 Set-Cookie: cookie-10=yes;
[all …]
Dtest3126 Set-Cookie: foobar=name; domain=anything.com; path=/ ; secure
27 Set-Cookie:ismatch=this ; domain=127.0.0.1; path=/silly/
28 Set-Cookie: overwrite=this ; domain=127.0.0.1; path=/overwrite/
29 Set-Cookie: overwrite=this2 ; domain=127.0.0.1; path=/overwrite
30 Set-Cookie: sec1value=secure1 ; domain=127.0.0.1; path=/secure1/ ; secure
31 Set-Cookie: sec2value=secure2 ; domain=127.0.0.1; path=/secure2/ ; secure=
32 Set-Cookie: sec3value=secure3 ; domain=127.0.0.1; path=/secure3/ ; secure=
33 Set-Cookie: sec4value=secure4 ; secure=; domain=127.0.0.1; path=/secure4/ ;
34 Set-Cookie: sec5value=secure5 ; secure; domain=127.0.0.1; path=/secure5/ ;
35 Set-Cookie: sec6value=secure6 ; secure ; domain=127.0.0.1; path=/secure6/ ;
[all …]
Dtest838 Set-Cookie: foobar=name; domain=%HOSTIP; path=/;
39 Set-Cookie: mismatch=this; domain=%HOSTIP; path="/silly/";
40 Set-Cookie: partmatch=present; domain=.0.0.1; path=/w;
41 Set-Cookie: duplicate=test; domain=.0.0.1; domain=.0.0.1; path=/donkey;
42 Set-Cookie: cookie=yes; path=/we;
43 Set-Cookie: cookie=perhaps; path=/we/want;
44 Set-Cookie: name with space=is weird but; path=/we/want;
45 Set-Cookie: trailingspace = removed; path=/we/want;
46 Set-Cookie: nocookie=yes; path=/WE;
47 Set-Cookie: blexp=yesyes; domain=%HOSTIP; domain=%HOSTIP; expiry=totally bad;
[all …]
Dtest156119 Set-Cookie: super=secret; domain=example.com; path=/%TESTNUMBER; secure;
20 Set-Cookie: supersuper=secret; domain=example.com; path=/%TESTNUMBER/login/; secure;
21 Set-Cookie: __Secure-SID=12345; Domain=example.com
22 Set-Cookie: __Secure-SID=12346; Secure; Domain=example.com
23 Set-Cookie: supersupersuper=secret; __Secure-SID=12346; Secure; Domain=example.com
24 Set-Cookie: __Host-SID=22345
25 Set-Cookie: __Host-SID=22346; Secure
26 Set-Cookie: __Host-SID=22347; Domain=example.com
27 Set-Cookie: __Host-SID=22348; Domain=example.com; Path=/
28 Set-Cookie: __Host-SID=22349; Secure; Domain=example.com; Path=/
[all …]
/third_party/eudev/src/shared/
Dset.h27 Set *internal_set_new(const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS);
31 static inline void set_free(Set *s) { in set_free()
35 static inline void set_free_free(Set *s) { in set_free_free()
41 static inline Set *set_copy(Set *s) { in set_copy()
42 return (Set*) internal_hashmap_copy(HASHMAP_BASE(s)); in set_copy()
45 int internal_set_ensure_allocated(Set **s, const struct hash_ops *hash_ops HASHMAP_DEBUG_PARAMS);
48 int set_put(Set *s, const void *key);
51 static inline void *set_get(Set *s, void *key) { in set_get()
56 static inline bool set_contains(Set *s, const void *key) { in set_contains()
60 static inline void *set_remove(Set *s, const void *key) { in set_remove()
[all …]
/third_party/boost/boost/mpl/set/aux_/
Diterator.hpp30 template< typename Set, typename Tail > struct s_iter;
32 template< typename Set, typename Tail > struct s_iter_get
34 has_key< Set,typename Tail::item_type_ >
35 , identity< s_iter<Set,Tail> >
36 , next< s_iter<Set,Tail> >
41 template< typename Set, typename Tail > struct s_iter_impl
48 typedef typename s_iter_get< Set,typename Tail::base >::type next;
54 template< typename Set, typename Tail >
55 struct next< s_iter<Set,Tail> >
56 : s_iter_get< Set,typename Tail::base >
[all …]
/third_party/node/test/parallel/
Dtest-util-isDeepStrictEqual.js60 const similar = new Set([
97 utilIsDeepStrict(new Set(), new Set());
100 utilIsDeepStrict(new Set([1, 2, 3]), new Set([1, 2, 3]));
101 notUtilIsDeepStrict(new Set([1, 2, 3]), new Set([1, 2, 3, 4]));
102 notUtilIsDeepStrict(new Set([1, 2, 3, 4]), new Set([1, 2, 3]));
103 utilIsDeepStrict(new Set(['1', '2', '3']), new Set(['1', '2', '3']));
104 utilIsDeepStrict(new Set([[1, 2], [3, 4]]), new Set([[3, 4], [1, 2]]));
113 { a: a, b: b, s: new Set([a, b]) },
114 { a: c, b: d, s: new Set([d, c]) }
126 notUtilIsDeepStrict(new Set([1]), [1]);
[all …]
Dtest-assert-deep.js155 const similar = new Set([
226 assertDeepAndStrictEqual(new Set(), new Set());
229 assertDeepAndStrictEqual(new Set([1, 2, 3]), new Set([1, 2, 3]));
230 assertNotDeepOrStrict(new Set([1, 2, 3]), new Set([1, 2, 3, 4]));
231 assertNotDeepOrStrict(new Set([1, 2, 3, 4]), new Set([1, 2, 3]));
232 assertDeepAndStrictEqual(new Set(['1', '2', '3']), new Set(['1', '2', '3']));
233 assertDeepAndStrictEqual(new Set([[1, 2], [3, 4]]), new Set([[3, 4], [1, 2]]));
234 assertNotDeepOrStrict(new Set([{ a: 0 }]), new Set([{ a: 1 }]));
235 assertNotDeepOrStrict(new Set([Symbol()]), new Set([Symbol()]));
244 { a: a, b: b, s: new Set([a, b]) },
[all …]
/third_party/libxml2/result/XPath/tests/
Dchaptersbase4 Object is a Node Set :
5 Set contains 1 nodes:
16 Object is a Node Set :
17 Set contains 1 nodes:
28 Object is a Node Set :
29 Set contains 1 nodes:
34 Object is a Node Set :
35 Set contains 6 nodes:
60 Object is a Node Set :
61 Set contains 1 nodes:
[all …]
Dsimplebase4 Object is a Node Set :
5 Set contains 1 nodes:
16 Object is a Node Set :
17 Set contains 1 nodes:
28 Object is a Node Set :
29 Set contains 1 nodes:
34 Object is a Node Set :
35 Set contains 2 nodes:
41 Object is a Node Set :
42 Set contains 1 nodes:
[all …]
Dsimpleabbr4 Object is a Node Set :
5 Set contains 1 nodes:
16 Object is a Node Set :
17 Set contains 1 nodes:
22 Object is a Node Set :
23 Set contains 1 nodes:
28 Object is a Node Set :
29 Set contains 2 nodes:
35 Object is a Node Set :
36 Set contains 1 nodes:
[all …]
Dchaptersprefol4 Object is a Node Set :
5 Set contains 0 nodes:
9 Object is a Node Set :
10 Set contains 0 nodes:
14 Object is a Node Set :
15 Set contains 0 nodes:
19 Object is a Node Set :
20 Set contains 0 nodes:
24 Object is a Node Set :
25 Set contains 10 nodes:
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dno-unsafe-assignment.md9 …pecific type. For example, it will error if you assign `Set<any>` to a variable declared as `Set<s…
30 const x: Set<string> = new Set<any>();
32 const x: Set<string[]> = new Set<any[]>();
33 const x: Set<Set<Set<string>>> = new Set<Set<Set<any>>>();
53 const x: Set<string> = new Set<string>();
55 const x: Set<string[]> = new Set<string[]>();
56 const x: Set<Set<Set<string>>> = new Set<Set<Set<string>>>();
66 const x: Set<unknown> = y as Set<any>;
/third_party/typescript/tests/cases/compiler/
DcontrolFlowInstanceof.ts10 function f1(s: Set<string> | Set<number>) {
11 s = new Set<number>();
13 if (s instanceof Set) {
20 function f2(s: Set<string> | Set<number>) {
21 s = new Set<number>();
30 function f3(s: Set<string> | Set<number>) {
32 if (s instanceof Set) {
40 function f4(s: Set<string> | Set<number>) {
41 s = new Set<number>();
43 if (s instanceof Set) {
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRelation.java22 import java.util.Set;
34 private Map<K, Set<V>> data;
36 Constructor<? extends Set<V>> setCreator;
39 public static <K, V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator) { in of()
43 …public static <K,V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setCo… in of()
47 public Relation(Map<K, Set<V>> map, Class<?> setCreator) { in Relation()
52 public Relation(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { in Relation()
56 this.setCreator = ((Class<? extends Set<V>>)setCreator).getConstructor(); in Relation()
59 … this.setCreator = ((Class<? extends Set<V>>)setCreator).getConstructor(Comparator.class); in Relation()
62 data = map == null ? new HashMap<K, Set<V>>() : map; in Relation()
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DRelation.java23 import java.util.Set;
36 private Map<K, Set<V>> data;
38 Constructor<? extends Set<V>> setCreator;
41 public static <K, V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator) { in of()
45 …public static <K,V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setCo… in of()
49 public Relation(Map<K, Set<V>> map, Class<?> setCreator) { in Relation()
54 public Relation(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { in Relation()
58 this.setCreator = ((Class<? extends Set<V>>)setCreator).getConstructor(); in Relation()
61 … this.setCreator = ((Class<? extends Set<V>>)setCreator).getConstructor(Comparator.class); in Relation()
64 data = map == null ? new HashMap<K, Set<V>>() : map; in Relation()
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/util/
Dbit_vector_test.cpp37 TEST(BitVectorTest, Set) { in TEST() argument
43 bvec.Set(i); in TEST()
62 EXPECT_FALSE(bvec.Set(i)); in TEST()
67 EXPECT_TRUE(bvec.Set(i)); in TEST()
74 bvec.Set(i); in TEST()
99 bvec.Set(i); in TEST()
115 bvec1.Set(3); in TEST()
116 bvec1.Set(4); in TEST()
119 bvec2.Set(2); in TEST()
120 bvec2.Set(4); in TEST()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/util/
Dbit_vector_test.cpp37 TEST(BitVectorTest, Set) { in TEST() argument
43 bvec.Set(i); in TEST()
62 EXPECT_FALSE(bvec.Set(i)); in TEST()
67 EXPECT_TRUE(bvec.Set(i)); in TEST()
74 bvec.Set(i); in TEST()
99 bvec.Set(i); in TEST()
115 bvec1.Set(3); in TEST()
116 bvec1.Set(4); in TEST()
119 bvec2.Set(2); in TEST()
120 bvec2.Set(4); in TEST()
[all …]
/third_party/spirv-tools/test/util/
Dbit_vector_test.cpp37 TEST(BitVectorTest, Set) { in TEST() argument
43 bvec.Set(i); in TEST()
62 EXPECT_FALSE(bvec.Set(i)); in TEST()
67 EXPECT_TRUE(bvec.Set(i)); in TEST()
74 bvec.Set(i); in TEST()
99 bvec.Set(i); in TEST()
115 bvec1.Set(3); in TEST()
116 bvec1.Set(4); in TEST()
119 bvec2.Set(2); in TEST()
120 bvec2.Set(4); in TEST()
[all …]
/third_party/python/Tools/peg_generator/pegen/
Dfirst_sets.py6 from typing import Set, Dict
42 self.first_sets: Dict[str, Set[str]] = dict()
43 self.in_process: Set[str] = set()
45 def calculate(self) -> Dict[str, Set[str]]:
50 def visit_Alt(self, item: Alt) -> Set[str]:
51 result: Set[str] = set()
52 to_remove: Set[str] = set()
77 def visit_Cut(self, item: Cut) -> Set[str]:
80 def visit_Group(self, item: Group) -> Set[str]:
83 def visit_PositiveLookahead(self, item: Lookahead) -> Set[str]:
[all …]
/third_party/boost/boost/parameter/aux_/
Dset.hpp36 template <typename Set, typename K>
40 ::boost::mp11::mp_empty<Set>
43 ::boost::mp11::mp_find<Set,K>
44 , ::boost::mp11::mp_size<Set>
62 template <typename Set, typename K>
63 struct insert_ : ::boost::mpl::push_front<Set,K>
76 template <typename Set, typename K>
79 typedef typename ::boost::mpl::find<Set,K>::type iter;
81 ::boost::is_same<iter,typename ::boost::mpl::end<Set>::type>
100 template <typename Set, typename K>
[all …]
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DRuleExtractor.java44 import java.util.Set;
48 private static Set<Rule> extract(LigatureSubst table) { in extract()
49 Set<Rule> allRules = new LinkedHashSet<Rule>(); in extract()
129 private static Set<Rule> extract(SingleSubst table) { in extract()
140 private static Set<Rule> extract(HeaderFmt1 fmt1Table) { in extract()
146 private static Set<Rule> extract(InnerArrayFmt2 fmt2Table) { in extract()
152 private static Set<Rule> extract(MultipleSubst table) { in extract()
153 Set<Rule> result = new LinkedHashSet<Rule>(); in extract()
170 private static Set<Rule> extract(AlternateSubst table) { in extract()
171 Set<Rule> result = new LinkedHashSet<Rule>(); in extract()
[all …]

12345678910>>...147