/third_party/json/include/nlohmann/detail/input/ |
D | input_adapters.hpp | 388 template<typename ContainerType, typename Enable = void> 391 template<typename ContainerType> 392 struct container_input_adapter_factory< ContainerType, 393 void_t<decltype(begin(std::declval<ContainerType>()), end(std::declval<ContainerType>()))>> 395 …er_type = decltype(input_adapter(begin(std::declval<ContainerType>()), end(std::declval<ContainerT… 397 static adapter_type create(const ContainerType& container) in create() 405 template<typename ContainerType> 406 …actory_impl::container_input_adapter_factory<ContainerType>::adapter_type input_adapter(const Cont… in input_adapter() 408 …return container_input_adapter_factory_impl::container_input_adapter_factory<ContainerType>::creat… in input_adapter()
|
/third_party/skia/third_party/externals/dawn/src/common/ |
D | StackContainer.h | 141 typedef TContainerType ContainerType; typedef 142 typedef typename ContainerType::value_type ContainedType; 158 ContainerType& container() { in container() 161 const ContainerType& container() const { in container() 168 ContainerType* operator->() { 171 const ContainerType* operator->() const { 184 ContainerType container_;
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | JsonTokenizer.cs | 202 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
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Remarks/ |
D | BitstreamRemarkSerializer.h | 58 BitstreamRemarkContainerType ContainerType; member 74 BitstreamRemarkSerializerHelper(BitstreamRemarkContainerType ContainerType); 173 BitstreamRemarkContainerType ContainerType, 178 TmpHelper.emplace(ContainerType); in MetaSerializer()
|
D | BitstreamRemarkParser.h | 37 Optional<uint8_t> ContainerType; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
D | BitstreamRemarkSerializer.cpp | 20 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()
|
D | BitstreamRemarkParser.cpp | 57 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()
|
D | BitstreamRemarkParser.h | 39 BitstreamRemarkContainerType ContainerType = member
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/ |
D | jsonToSpirv.h | 147 using ContainerType = std::vector<EValue>; 148 using iterator = typename ContainerType::iterator; 149 using const_iterator = typename ContainerType::const_iterator; 189 ContainerType values;
|
/third_party/spirv-headers/tools/buildHeaders/ |
D | jsonToSpirv.h | 140 using ContainerType = std::vector<EValue>; 141 using iterator = typename ContainerType::iterator; 142 using const_iterator = typename ContainerType::const_iterator; 182 ContainerType values;
|
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/ |
D | jsonToSpirv.h | 147 using ContainerType = std::vector<EValue>; 148 using iterator = typename ContainerType::iterator; 149 using const_iterator = typename ContainerType::const_iterator; 189 ContainerType values;
|
/third_party/googletest/googletest/test/ |
D | googletest-param-test-test.cc | 311 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()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | MessageReflection.java | 212 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()
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
D | rrRenderer.cpp | 509 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 …]
|
/third_party/vk-gl-cts/framework/qphelper/ |
D | qpTestLog.c | 63 } ContainerType; typedef 65 DE_INLINE deBool childContainersOk (ContainerType type) in childContainersOk() 78 ContainerType elements[MAX_CONTAINER_STACK_DEPTH]; 91 DE_INLINE deBool ContainerStack_push (ContainerStack* stack, ContainerType type) in ContainerStack_push() 105 DE_INLINE ContainerType ContainerStack_pop (ContainerStack* stack) in ContainerStack_pop() 112 DE_INLINE ContainerType ContainerStack_getTop (const ContainerStack* stack) in ContainerStack_getTop()
|
/third_party/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-param-util.h | 305 typedef typename ::std::vector<T> ContainerType; typedef 310 typename ContainerType::const_iterator iterator) in Iterator() 354 typename ContainerType::const_iterator iterator_; 366 const ContainerType container_;
|
/third_party/googletest/googletest/include/gtest/internal/ |
D | gtest-param-util.h | 307 typedef typename ::std::vector<T> ContainerType; typedef 312 typename ContainerType::const_iterator iterator) in Iterator() 356 typename ContainerType::const_iterator iterator_; 368 const ContainerType container_;
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceGlobalContext.cpp | 171 using ContainerType = typedef in Ice::__anonef5a58cb0111::TypePool 174 ContainerType Pool;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 379 template <typename ContainerType, typename Splitter> 381 ContainerType output = splitter; in TestConversionOperator()
|
/third_party/libabigail/src/ |
D | abg-dwarf-reader.cc | 1686 template <typename ContainerType> 1689 ContainerType primary_debug_info_container_; 1690 ContainerType alt_debug_info_container_; 1691 ContainerType type_unit_container_; 1702 ContainerType& 1705 ContainerType *result = 0; in get_container() 1731 const ContainerType& 1748 ContainerType& 1765 const ContainerType&
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 5715 template<typename ContainerType, typename Enable = void> 5718 template<typename ContainerType> 5719 struct container_input_adapter_factory< ContainerType, 5720 void_t<decltype(begin(std::declval<ContainerType>()), end(std::declval<ContainerType>()))>> 5722 …er_type = decltype(input_adapter(begin(std::declval<ContainerType>()), end(std::declval<ContainerT… 5724 static adapter_type create(const ContainerType& container) in create() 5732 template<typename ContainerType> 5733 …actory_impl::container_input_adapter_factory<ContainerType>::adapter_type input_adapter(const Cont… in input_adapter() 5735 …return container_input_adapter_factory_impl::container_input_adapter_factory<ContainerType>::creat… in input_adapter()
|
/third_party/cef/tools/distrib/gtest/ |
D | gtest.h | 8244 typedef typename ::std::vector<T> ContainerType; 8249 typename ContainerType::const_iterator iterator) 8293 typename ContainerType::const_iterator iterator_; 8305 const ContainerType container_;
|
/third_party/libabigail/ |
D | ChangeLog | 10324 (read_context::ContainerType::get_container): Fix
|