Home
last modified time | relevance | path

Searched refs:Collection (Results 1 - 25 of 163) sorted by relevance

1234567

/third_party/protobuf/src/google/protobuf/stubs/
H A Dmap_util.h72 template <class Collection>
73 const typename Collection::value_type::second_type&
74 FindOrDie(const Collection& collection, in FindOrDie()
75 const typename Collection::value_type::first_type& key) { in FindOrDie()
76 typename Collection::const_iterator it = collection.find(key); in FindOrDie()
82 template <class Collection>
83 typename Collection::value_type::second_type&
84 FindOrDie(Collection& collection, // NOLINT in FindOrDie()
85 const typename Collection::value_type::first_type& key) { in FindOrDie()
86 typename Collection in FindOrDie()
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DFieldType.java42 DOUBLE(0, Collection.SCALAR, JavaType.DOUBLE),
43 FLOAT(1, Collection.SCALAR, JavaType.FLOAT),
44 INT64(2, Collection.SCALAR, JavaType.LONG),
45 UINT64(3, Collection.SCALAR, JavaType.LONG),
46 INT32(4, Collection.SCALAR, JavaType.INT),
47 FIXED64(5, Collection.SCALAR, JavaType.LONG),
48 FIXED32(6, Collection.SCALAR, JavaType.INT),
49 BOOL(7, Collection.SCALAR, JavaType.BOOLEAN),
50 STRING(8, Collection.SCALAR, JavaType.STRING),
51 MESSAGE(9, Collection
329 enum Collection { global() enum in FieldType
337 Collection(boolean isList) { Collection() method in FieldType.Collection
[all...]
H A DAbstractProtobufList.java35 import java.util.Collection;
109 public boolean addAll(Collection<? extends E> c) { in addAll()
115 public boolean addAll(int index, Collection<? extends E> c) { in addAll()
149 public boolean removeAll(Collection<?> c) { in removeAll()
155 public boolean retainAll(Collection<?> c) { in retainAll()
H A DMapField.java36 import java.util.Collection;
356 public Collection<V> values() { in values()
381 private static class MutatabilityAwareCollection<E> implements Collection<E> {
383 private final Collection<E> delegate;
385 MutatabilityAwareCollection(MutabilityOracle mutabilityOracle, Collection<E> delegate) { in MutatabilityAwareCollection()
433 public boolean containsAll(Collection<?> c) { in containsAll()
438 public boolean addAll(Collection<? extends E> c) { in addAll()
444 public boolean removeAll(Collection<?> c) { in removeAll()
450 public boolean retainAll(Collection<?> c) { in retainAll()
530 public boolean containsAll(Collection<
[all...]
H A DLazyStringList.java33 import java.util.Collection;
129 boolean addAllByteString(Collection<? extends ByteString> c); in addAllByteString()
139 boolean addAllByteArray(Collection<byte[]> c); in addAllByteArray()
151 * #addAll(Collection)} on that underlying byte arrays are copied instead of reference shared.
/third_party/typescript/tests/baselines/reference/
H A DtypeofStripsFreshness.js2 interface Collection<T> {
6 new <T>(): Collection<T>;
8 declare const Collection: CollectionStatic;
13 const result: Collection<All> = new Collection();
20 const result2: Collection<Both> = new Collection();
25 var result = new Collection();
27 var result2 = new Collection();
H A DgenericFunctionsWithOptionalParameters3.js2 class Collection<T> {
6 fold<T, S>(c?: Collection<T>, folder?: (s: S, t: T) => T, init?: S): T;
7 mapReduce<T, U, V>(c: Collection<T>, mapper: (x: T) => U, reducer: (y: U) => V): Collection<V>;
10 var c = new Collection<string>();
19 var Collection = /** @class */ (function () {
20 function Collection() {
22 Collection.prototype.add = function (x) { };
23 return Collection;
26 var c = new Collection();
[all...]
H A DdeclarationEmitDistributiveConditionalWithInfer.js4 subFun: <Collection, Field extends keyof Collection>()
5 => FlatArray<Collection[Field], 0>[]) => { };
18 export declare const fun: (subFun: <Collection, Field extends keyof Collection>() => (Collection[Field] extends infer T ? T extends Collection[Field] ? T extends readonly (infer InnerArr)[] ? InnerArr : T : never : never)[]) => void;
H A DtooFewArgumentsInGenericFunctionTypedArgument.js2 interface Collection<T, U> {
8 map<T, U, V>(c: Collection<T,U>, f: (x: T, y: U) => V): Collection<T, V>;
9 map<T, U>(c: Collection<T,U>, f: (x: T, y: U) => any): Collection<any, any>;
11 var c2: Collection<number, string>;
H A DcallbacksDontShareTypes.js2 interface Collection<T> {
8 map<T, U>(c: Collection<T>, f: (x: T) => U): Collection<U>;
9 map<T>(c: Collection<T>, f: (x: T) => any): Collection<any>;
13 var c2: Collection<number>;
H A DgenericCombinators2.js2 interface Collection<T, U> {
9 map<T, U>(c: Collection<T, U>, f: (x: T, y: U) => any): Collection<any, any>;
10 map<T, U, V>(c: Collection<T, U>, f: (x: T, y: U) => V): Collection<T, V>;
14 var c2: Collection<number, string>;
H A DcomparisonOfPartialDeepAndIndexedAccessTerminatesWithoutError.js5 interface Collection<T> {
6 sortBy(...iteratees: Many<PartialDeep<T>>[]): Collection<T>;
9 const x: Collection<{x: number}> = (null as any as Collection<{x: number, y: number}>);
H A DcontextualTypingOfGenericFunctionTypedArguments1.js2 interface Collection<T> {
9 forEach<T>(c: Collection<T>, f: (x: T) => Date): void;
12 var c2: Collection<number>;
H A DunderscoreMapFirst.js3 interface Collection<T> { }
4 interface List<T> extends Collection<T> {
13 interface Dictionary<T> extends Collection<T> {
17 list: Collection<T>,
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCollectionSet.java5 import java.util.Collection;
10 * A wrapper around java.util.Collection that implements java.util.Set. This class keeps a pointer to the
11 * Collection and does not persist any data on its own.
15 * IMPORTANT: The elements of the Collection *must* be unique! This class does not check.
19 private final Collection<E> data;
21 public CollectionSet(Collection<E> data) { in CollectionSet()
66 public boolean containsAll(Collection<?> c) { in containsAll()
71 public boolean addAll(Collection<? extends E> c) { in addAll()
76 public boolean retainAll(Collection<?> c) { in retainAll()
81 public boolean removeAll(Collection<
[all...]
H A DTimeZoneGenericNames.java16 import java.util.Collection;
640 private Collection<GenericMatchInfo> _matches;
673 public Collection<GenericMatchInfo> getMatches() { in getMatches()
709 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in findBestMatch()
745 Collection<GenericMatchInfo> localMatches = findLocal(text, start, genericTypes); in findBestMatch()
768 public Collection<GenericMatchInfo> find(String text, int start, EnumSet<GenericNameType> genericTypes) { in find()
773 Collection<GenericMatchInfo> results = findLocal(text, start, genericTypes); in find()
776 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in find()
838 private Collection<MatchInfo> findTimeZoneNames(String text, int start, EnumSet<GenericNameType> types) { in findTimeZoneNames()
839 Collection<MatchInf in findTimeZoneNames()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DCollectionSet.java6 import java.util.Collection;
11 * A wrapper around java.util.Collection that implements java.util.Set. This class keeps a pointer to the
12 * Collection and does not persist any data on its own.
16 * IMPORTANT: The elements of the Collection *must* be unique! This class does not check.
21 private final Collection<E> data;
23 public CollectionSet(Collection<E> data) { in CollectionSet()
68 public boolean containsAll(Collection<?> c) { in containsAll()
73 public boolean addAll(Collection<? extends E> c) { in addAll()
78 public boolean retainAll(Collection<?> c) { in retainAll()
83 public boolean removeAll(Collection<
[all...]
H A DTimeZoneGenericNames.java17 import java.util.Collection;
645 private Collection<GenericMatchInfo> _matches;
678 public Collection<GenericMatchInfo> getMatches() { in getMatches()
714 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in findBestMatch()
750 Collection<GenericMatchInfo> localMatches = findLocal(text, start, genericTypes); in findBestMatch()
773 public Collection<GenericMatchInfo> find(String text, int start, EnumSet<GenericNameType> genericTypes) { in find()
778 Collection<GenericMatchInfo> results = findLocal(text, start, genericTypes); in find()
781 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in find()
843 private Collection<MatchInfo> findTimeZoneNames(String text, int start, EnumSet<GenericNameType> types) { in findTimeZoneNames()
844 Collection<MatchInf in findTimeZoneNames()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/
H A DCollectionUtilities.java12 import java.util.Collection;
99 public static <T, U extends Collection<T>> U addAll(Iterator<T> source, U target) { in addAll()
138 public static <K,V> Map<K,V> removeAll(Map<K,V> m, Collection<K> itemsToRemove) { in removeAll()
153 public <T, U extends Collection<T>> T getFirst(U c) { in getFirst()
168 public static <T, U extends Collection<T>> T getBest(U c, Comparator<T> comp, int direction) { in getBest()
232 public static <T, U extends Collection<T>> U removeAll(U c, ObjectMatcher<T> f) { in removeAll()
248 public static <T, U extends Collection<T>> U retainAll(U c, ObjectMatcher<T> f) { in retainAll()
261 public static boolean containsSome(Collection a, Collection b) { in containsSome()
313 public static boolean containsAll(Collection
[all...]
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DCollectionUtilities.java11 import java.util.Collection;
96 public static <T, U extends Collection<T>> U addAll(Iterator<T> source, U target) { in addAll()
135 public static <K,V> Map<K,V> removeAll(Map<K,V> m, Collection<K> itemsToRemove) { in removeAll()
150 public <T, U extends Collection<T>> T getFirst(U c) { in getFirst()
165 public static <T, U extends Collection<T>> T getBest(U c, Comparator<T> comp, int direction) { in getBest()
229 public static <T, U extends Collection<T>> U removeAll(U c, ObjectMatcher<T> f) { in removeAll()
245 public static <T, U extends Collection<T>> U retainAll(U c, ObjectMatcher<T> f) { in retainAll()
258 public static boolean containsSome(Collection a, Collection b) { in containsSome()
310 public static boolean containsAll(Collection
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
H A DGlyphGroup.java6 import java.util.Collection;
24 GlyphGroup(Collection<Integer> glyphs) { in GlyphGroup()
30 static GlyphGroup inverseGlyphGroup(Collection<GlyphGroup> glyphGroups) { in inverseGlyphGroup()
43 void addAll(Collection<Integer> glyphs) { in addAll()
53 void copyTo(Collection<Integer> target) { in copyTo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h119 typedef std::vector<gsym::LineEntry> Collection; typedef in llvm::gsym::LineTable
120 Collection Lines; ///< All line entries in the line table.
205 Collection::const_iterator begin() const { return Lines.begin(); }
206 Collection::const_iterator end() const { return Lines.end(); }
H A DRange.h85 using Collection = std::vector<AddressRange>;
86 Collection Ranges;
101 Collection::const_iterator begin() const { return Ranges.begin(); }
102 Collection::const_iterator end() const { return Ranges.end(); }
/third_party/icu/tools/currency/src/com/ibm/icu/dev/tool/currency/
H A DCurrencyDataParser.java14 import java.util.Collection;
33 public static Collection<CurrencyDataEntry> parse(File dataFile, boolean historic) throws IOException { in parse()
34 Collection<CurrencyDataEntry> result = null; in parse()
77 Collection<CurrencyDataEntry> isoCurrencies = new LinkedList<CurrencyDataEntry>();
89 public Collection<CurrencyDataEntry> getParsedISOCurrencies() { in getParsedISOCurrencies()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DTestUtilities.java13 import java.util.Collection;
104 Collection a = new TreeSet(Arrays.asList(test[i])); in TestCollectionUtilities()
106 Collection b = new TreeSet(Arrays.asList(test[j])); in TestCollectionUtilities()
161 private void checkContainment(boolean c, Collection a, int relation, Collection b) { in checkContainment()

Completed in 14 milliseconds

1234567