HomeSort by relevance Sort by last modified time
    Searched refs:collections (Results 1 - 25 of 1427) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /tools/repohooks/rh/
__init__.py 20 import collections
24 Project = collections.namedtuple('Project', ['name', 'dir', 'remote'])
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyabc.i 4 %pythoncode {import collections};
5 %pythonabc(std::vector, collections.MutableSequence);
6 %pythonabc(std::list, collections.MutableSequence);
7 %pythonabc(std::map, collections.MutableMapping);
8 %pythonabc(std::multimap, collections.MutableMapping);
9 %pythonabc(std::set, collections.MutableSet);
10 %pythonabc(std::multiset, collections.MutableSet);
  /external/tensorflow/tensorflow/contrib/gan/python/
namedtuples.py 26 import collections
42 collections.namedtuple('GANModel', (
81 collections.namedtuple('InfoGANModel', GANModel._fields + (
103 collections.namedtuple('ACGANModel', GANModel._fields +
121 collections.namedtuple(
140 collections.namedtuple('GANLoss', (
153 collections.namedtuple('CycleGANLoss', ('loss_x2y', 'loss_y2x'))):
165 collections.namedtuple('GANTrainOps', (
180 collections.namedtuple('GANTrainSteps', (
  /external/chromium-trace/catapult/devil/devil/android/constants/
chrome.py 5 import collections
7 PackageInfo = collections.namedtuple(
  /development/gsi/gsi_util/gsi_util/checkers/
check_result.py 17 from collections import namedtuple
  /external/libmojo/third_party/catapult/devil/devil/android/constants/
chrome.py 5 import collections
7 PackageInfo = collections.namedtuple(
  /external/autotest/client/cros/image_comparison/
comparison_result.py 5 from collections import namedtuple
  /art/dexlayout/
dex_ir_builder.cc 29 Collections* collections,
47 Collections& collections = header->GetCollections(); local
48 collections.SetEagerlyAssignOffsets(eagerly_assign_offsets);
51 collections.SetStringIdsOffset(disk_header.string_ids_off_);
53 collections.CreateStringId(dex_file, i);
56 collections.SetTypeIdsOffset(disk_header.type_ids_off_);
58 collections.CreateTypeId(dex_file, i);
61 collections.SetProtoIdsOffset(disk_header.proto_ids_off_)
    [all...]
  /external/python/cpython3/Lib/test/
test_userdict.py 5 import collections
15 type2test = collections.UserDict
19 u = collections.UserDict()
20 u0 = collections.UserDict(d0)
21 u1 = collections.UserDict(d1)
22 u2 = collections.UserDict(d2)
24 uu = collections.UserDict(u)
25 uu0 = collections.UserDict(u0)
26 uu1 = collections.UserDict(u1)
27 uu2 = collections.UserDict(u2
    [all...]
  /external/autotest/site_utils/stats/
mysql_stats_unittest.py 5 import collections
22 mysql_stats.QueryAndEmit(collections.defaultdict(lambda: 0), connection)
  /external/chromium-trace/catapult/devil/devil/utils/
run_tests_helper.py 7 import collections
16 _WrappedLoggingArgs = collections.namedtuple(
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.2/
commons-collections-3.2.2.jar 
  /external/guice/extensions/persist/lib/
commons-collections.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /frameworks/native/cmds/installd/
matchgen.py 17 import collections, sys
63 trie = collections.defaultdict(lambda: collections.defaultdict(lambda: collections.defaultdict(lambda: collections.defaultdict(lambda: collections.defaultdict(lambda: collections.defaultdict(lambda: ""))))))
  /external/testng/src/main/java/org/testng/collections/
SetMultiMap.java 1 package org.testng.collections;
  /external/autotest/client/cros/video/
frame_checksum_utils.py 6 import collections
35 d = collections.OrderedDict()
  /external/autotest/server/site_tests/video_VDAStress/
generate_controlfiles.py 7 import collections
9 Testdata = collections.namedtuple('Testdata', 'gs, decoder, access')
  /external/autotest/site_utils/lxc/container_pool/
message.py 5 import collections
16 Message = collections.namedtuple('Message', ['type', 'args'])
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
CollectionAndMapModifyStreamTest.java 56 @DataProvider(name = "collections")
60 List<Collection<Integer>> collections = new ArrayList<>(); local
61 collections.add(new ArrayList<>(content));
62 collections.add(new LinkedList<>(content));
63 collections.add(new Vector<>(content));
65 collections.add(new HashSet<>(content));
66 collections.add(new LinkedHashSet<>(content));
67 collections.add(new TreeSet<>(content));
71 collections.add(stack);
72 collections.add(new PriorityQueue<>(content))
    [all...]
  /external/tensorflow/tensorflow/python/summary/
text_summary.py 35 def text_summary(name, tensor, collections=None):
50 collections: Optional list of ops.GraphKeys. The collections to add the
72 collections=collections)
  /tools/test/connectivity/acts/tests/google/power/tel/lab/temp/
liveplot.py 3 import collections
10 wave = collections.deque(np.zeros(HZ*T_SPAN), maxlen=HZ * T_SPAN)
11 buff = collections.deque(np.zeros(HZ*T_SPAN), maxlen=HZ * T_avg)
  /external/mockito/src/main/java/org/mockito/internal/invocation/finder/
VerifiableInvocationsFinder.java 8 import org.mockito.internal.util.collections.ListUtil;
9 import org.mockito.internal.util.collections.ListUtil.Filter;
  /external/tensorflow/tensorflow/python/eager/
imperative_grad.py 21 import collections
27 VSpace = collections.namedtuple(
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsMainParameter1.java 24 import org.testng.collections.Lists;

Completed in 880 milliseconds

1 2 3 4 5 6 7 8 91011>>