Home
last modified time | relevance | path

Searched refs:ContainerType (Results 1 – 25 of 61) sorted by relevance

123

/external/tensorflow/tensorflow/core/example/
Dfeature_util.h297 template <typename ContainerType>
298 void AppendFeatureValues(const ContainerType& container, Feature* feature) {
299 using IteratorType = typename ContainerType::const_iterator;
313 template <typename ContainerType, typename ProtoType>
314 void AppendFeatureValues(const ContainerType& container, const string& key,
316 using IteratorType = typename ContainerType::const_iterator;
357 template <typename ContainerType>
358 void SetFeatureValues(const ContainerType& container, Feature* feature) {
359 using IteratorType = typename ContainerType::const_iterator;
374 template <typename ContainerType, typename ProtoType>
[all …]
/external/libchrome/base/containers/
Dstack_container.h143 typedef TContainerType ContainerType; typedef
144 typedef typename ContainerType::value_type ContainedType;
160 ContainerType& container() { return container_; } in container()
161 const ContainerType& container() const { return container_; } in container()
166 ContainerType* operator->() { return &container_; }
167 const ContainerType* operator->() const { return &container_; }
180 ContainerType container_;
/external/protobuf/csharp/src/Google.Protobuf/
DJsonTokenizer.cs202 private readonly Stack<ContainerType> containerStack = new Stack<ContainerType>();
210 containerStack.Push(ContainerType.Document); in JsonTextTokenizer()
266 containerStack.Push(ContainerType.Object); in NextImpl()
275 containerStack.Push(ContainerType.Array); in NextImpl()
587 case ContainerType.Object: in PopContainer()
590 case ContainerType.Array: in PopContainer()
593 case ContainerType.Document: in PopContainer()
601 private enum ContainerType enum in Google.Protobuf.JsonTokenizer.JsonTextTokenizer
/external/llvm-project/libcxx/test/support/
Dcontainer_debug_tests.h43 enum ContainerType { enum
61 constexpr bool isSequential(ContainerType CT) { in isSequential()
65 constexpr bool isAssociative(ContainerType CT) { in isAssociative()
69 constexpr bool isUnordered(ContainerType CT) { in isUnordered()
73 constexpr bool isSet(ContainerType CT) { in isSet()
80 constexpr bool isMap(ContainerType CT) { in isMap()
87 constexpr bool isMulti(ContainerType CT) { in isMulti()
124 template <class Container, ContainerType CT,
/external/llvm-project/llvm/include/llvm/Remarks/
DBitstreamRemarkSerializer.h58 BitstreamRemarkContainerType ContainerType; member
74 BitstreamRemarkSerializerHelper(BitstreamRemarkContainerType ContainerType);
173 BitstreamRemarkContainerType ContainerType,
178 TmpHelper.emplace(ContainerType); in MetaSerializer()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Remarks/
DBitstreamRemarkSerializer.h58 BitstreamRemarkContainerType ContainerType; member
74 BitstreamRemarkSerializerHelper(BitstreamRemarkContainerType ContainerType);
173 BitstreamRemarkContainerType ContainerType,
178 TmpHelper.emplace(ContainerType); in MetaSerializer()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
DBitstreamRemarkSerializer.cpp20 BitstreamRemarkContainerType ContainerType) in BitstreamRemarkSerializerHelper() argument
21 : Encoded(), R(), Bitstream(Encoded), ContainerType(ContainerType) {} in BitstreamRemarkSerializerHelper()
207 switch (ContainerType) { in setupBlockInfo()
243 R.push_back(static_cast<uint64_t>(ContainerType)); in emitMetaBlock()
246 switch (ContainerType) { in emitMetaBlock()
353 Helper.ContainerType == BitstreamRemarkContainerType::Standalone; in emit()
370 assert(Helper.ContainerType != in metaSerializer()
373 Helper.ContainerType == BitstreamRemarkContainerType::Standalone; in metaSerializer()
DBitstreamRemarkParser.cpp57 Parser.ContainerType = Record[1]; in parseRecord()
357 switch (ContainerType) { in parseMeta()
377 if (Optional<uint8_t> Type = Helper.ContainerType) { in processCommonMeta()
384 ContainerType = static_cast<BitstreamRemarkContainerType>(*Type); in processCommonMeta()
455 if (ContainerType != BitstreamRemarkContainerType::SeparateRemarksFile) in processExternalFilePath()
/external/llvm-project/llvm/lib/Remarks/
DBitstreamRemarkSerializer.cpp20 BitstreamRemarkContainerType ContainerType) in BitstreamRemarkSerializerHelper() argument
21 : Encoded(), R(), Bitstream(Encoded), ContainerType(ContainerType) {} in BitstreamRemarkSerializerHelper()
207 switch (ContainerType) { in setupBlockInfo()
243 R.push_back(static_cast<uint64_t>(ContainerType)); in emitMetaBlock()
246 switch (ContainerType) { in emitMetaBlock()
353 Helper.ContainerType == BitstreamRemarkContainerType::Standalone; in emit()
370 assert(Helper.ContainerType != in metaSerializer()
373 Helper.ContainerType == BitstreamRemarkContainerType::Standalone; in metaSerializer()
DBitstreamRemarkParser.cpp56 Parser.ContainerType = Record[1]; in parseRecord()
356 switch (ContainerType) { in parseMeta()
376 if (Optional<uint8_t> Type = Helper.ContainerType) { in processCommonMeta()
383 ContainerType = static_cast<BitstreamRemarkContainerType>(*Type); in processCommonMeta()
454 if (ContainerType != BitstreamRemarkContainerType::SeparateRemarksFile) in processExternalFilePath()
/external/libchrome/base/task_scheduler/
Dpriority_queue.h91 using ContainerType = std::priority_queue<SequenceAndSortKey>; variable
96 ContainerType container_;
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/
DjsonToSpirv.h144 using ContainerType = std::vector<EValue>;
145 using iterator = typename ContainerType::iterator;
146 using const_iterator = typename ContainerType::const_iterator;
186 ContainerType values;
/external/shaderc/spirv-headers/tools/buildHeaders/
DjsonToSpirv.h127 using ContainerType = std::vector<EValue>;
128 using iterator = typename ContainerType::iterator;
129 using const_iterator = typename ContainerType::const_iterator;
169 ContainerType values;
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/
DjsonToSpirv.h142 using ContainerType = std::vector<EValue>;
143 using iterator = typename ContainerType::iterator;
144 using const_iterator = typename ContainerType::const_iterator;
184 ContainerType values;
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-use-emplace-ignore-implicit-constructors.cpp101 template <typename ContainerType>
103 ContainerType v; in dependOnContainer()
/external/tensorflow/tensorflow/compiler/xla/
Dshape_tree.h71 template <typename ContainerType, typename IteratorType, typename ValueType>
73 template <typename ContainerType, typename IteratorType, typename ValueType>
342 template <typename ContainerType, typename IteratorType, typename ValueType>
346 ShapeTreeIterator(ContainerType* nodes, IteratorType node) in ShapeTreeIterator()
379 ContainerType* nodes_;
386 template <typename ContainerType, typename IteratorType, typename ValueType>
390 ShapeTreeLeafIterator(ContainerType* nodes, IteratorType node) in ShapeTreeLeafIterator()
433 ContainerType* nodes_;
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/test/
Dgoogletest-param-test-test.cc310 typedef ::std::vector<int> ContainerType; in TEST() typedef
311 ContainerType values; in TEST()
323 typedef ::std::vector<int> ContainerType; in TEST() typedef
324 ContainerType values; in TEST()
337 typedef ::std::vector<int> ContainerType; in TEST() typedef
338 ContainerType values; in TEST()
349 typedef ::std::vector<int> ContainerType; in TEST() typedef
350 ContainerType values; in TEST()
/external/googletest/googletest/test/
Dgoogletest-param-test-test.cc311 typedef ::std::vector<int> ContainerType; in TEST() typedef
312 ContainerType values; in TEST()
324 typedef ::std::vector<int> ContainerType; in TEST() typedef
325 ContainerType values; in TEST()
338 typedef ::std::vector<int> ContainerType; in TEST() typedef
339 ContainerType values; in TEST()
350 typedef ::std::vector<int> ContainerType; in TEST() typedef
351 ContainerType values; in TEST()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DMessageReflection.java212 enum ContainerType { enum
220 public ContainerType getContainerType(); in getContainerType()
414 public ContainerType getContainerType() { in getContainerType()
415 return ContainerType.MESSAGE; in getContainerType()
616 public ContainerType getContainerType() { in getContainerType()
617 return ContainerType.EXTENSION_SET; in getContainerType()
767 } else if (target.getContainerType() == MergeTarget.ContainerType.MESSAGE) { in mergeFieldFrom()
/external/deqp/framework/referencerenderer/
DrrRenderer.cpp509 template <typename ContainerType>
510 void flatshadeVertices (const Program& program, ContainerType& list) in flatshadeVertices()
517 for (typename ContainerType::iterator it = list.begin(); it != list.end(); ++it) in flatshadeVertices()
857 template <typename ContainerType>
858 void transformClipCoordsToWindowCoords (const RenderState& state, ContainerType& list) in transformClipCoordsToWindowCoords()
860 for (typename ContainerType::iterator it = list.begin(); it != list.end(); ++it) in transformClipCoordsToWindowCoords()
906 template <typename ContainerType>
907 void makeSharedVerticesDistinct (ContainerType& list, VertexPacketAllocator& vpalloc) in makeSharedVerticesDistinct()
911 for (typename ContainerType::iterator it = list.begin(); it != list.end(); ++it) in makeSharedVerticesDistinct()
933 template <typename ContainerType>
[all …]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-param-util.h283 typedef typename ::std::vector<T> ContainerType; typedef
288 typename ContainerType::const_iterator iterator) in Iterator()
333 typename ContainerType::const_iterator iterator_;
345 const ContainerType container_;
/external/llvm-project/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-param-util.h307 typedef typename ::std::vector<T> ContainerType; typedef
312 typename ContainerType::const_iterator iterator) in Iterator()
357 typename ContainerType::const_iterator iterator_;
369 const ContainerType container_;
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
Dgtest-param-util.h303 typedef typename ::std::vector<T> ContainerType; typedef
308 typename ContainerType::const_iterator iterator) in Iterator()
353 typename ContainerType::const_iterator iterator_;
365 const ContainerType container_;
/external/llvm-project/libcxx/test/libcxx/debug/containers/
Ddb_associative_container_tests.pass.cpp28 template <class Container, ContainerType CT>
/external/libcxx/test/libcxx/debug/containers/
Ddb_associative_container_tests.pass.cpp31 template <class Container, ContainerType CT>

123