Home
last modified time | relevance | path

Searched refs:IntMap (Results 1 – 12 of 12) sorted by relevance

/external/golang-protobuf/proto/proto3_proto/
Dproto3.pb.go325 type IntMap struct { struct
332 func (m *IntMap) Reset() { *m = IntMap{} } argument
333 func (m *IntMap) String() string { return proto.CompactTextString(m) } argument
334 func (*IntMap) ProtoMessage() {} argument
335 func (*IntMap) Descriptor() ([]byte, []int) { argument
339 func (m *IntMap) XXX_Unmarshal(b []byte) error { argument
342 func (m *IntMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument
345 func (m *IntMap) XXX_Merge(src proto.Message) { argument
348 func (m *IntMap) XXX_Size() int { argument
351 func (m *IntMap) XXX_DiscardUnknown() { argument
[all …]
Dproto3.proto83 message IntMap { message
88 repeated IntMap maps = 1;
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestIntMap.java15 import org.unicode.cldr.util.IntMap;
16 import org.unicode.cldr.util.IntMap.BasicIntMapFactory;
17 import org.unicode.cldr.util.IntMap.CompactStringIntMapFactory;
18 import org.unicode.cldr.util.IntMap.IntMapFactory;
60 IntMap<String> map = ((IntMapFactory<String>) factoryObject) in checkSamples()
/external/cldr/tools/java/org/unicode/cldr/util/
DIntMap.java27 public abstract class IntMap<T> { class
30 public IntMap<T> make(Collection<T> values); in make()
50 public static class BasicIntMap<T> extends IntMap<T> {
96 public static class CompactStringIntMap extends IntMap<String> {
DStateDictionaryBuilder.java17 import org.unicode.cldr.util.IntMap.BasicIntMapFactory;
18 import org.unicode.cldr.util.IntMap.IntMapFactory;
42 private IntMap<T> builtResults;
DCollationStringByteConverter.java26 .setIntMapFactory(new IntMap.CompactStringIntMapFactory()).make(map); in getDictionaryInfo()
DStateDictionary.java33 private final IntMap<T> builtResults;
55 IntMap<T> builtResults2, int builtMaxByteLength, in StateDictionary()
DLenientDateParser.java887 static final IntMap<String> ZONE_INT_MAP;
944 ZONE_INT_MAP = new IntMap.BasicIntMapFactory<String>().make(values);
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dprefilter_tree.cc311 IntMap regexps_map(static_cast<int>(prefilter_vec_.size())); in RegexpsGivenStrings()
316 for (IntMap::iterator it = regexps_map.begin(); in RegexpsGivenStrings()
327 IntMap* regexps) const { in PropagateMatch()
328 IntMap count(static_cast<int>(entries_.size())); in PropagateMatch()
329 IntMap work(static_cast<int>(entries_.size())); in PropagateMatch()
332 for (IntMap::iterator it = work.begin(); it != work.end(); ++it) { in PropagateMatch()
Dprefilter_tree.h61 typedef SparseArray<int> IntMap; typedef
97 IntMap* regexps) const;
/external/golang-protobuf/proto/
Dmap_test.go38 m.Maps = append(m.Maps, &ppb.IntMap{
/external/libchrome/base/containers/
Dflat_map_unittest.cc70 using IntMap = flat_map<int, int>; in TEST() typedef
73 IntMap map(std::move(vect)); in TEST()
78 IntMap map(std::move(vect), KEEP_LAST_OF_DUPES); in TEST()