/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A 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/dawn/src/common/ |
H A D | StackContainer.h | 135 // WATCH OUT: the ContainerType MUST use the proper StackAllocator for this 141 typedef TContainerType ContainerType; typedef in StackContainer 142 typedef typename ContainerType::value_type ContainedType; 158 ContainerType& container() { in container() 161 const ContainerType& container() const { in container() 168 ContainerType* operator->() { in operator ->() 171 const ContainerType* operator->() const { in operator ->() 184 ContainerType container_;
|
/third_party/json/include/nlohmann/detail/input/ |
H A D | input_adapters.hpp | 398 template<typename ContainerType, typename Enable = void> 401 template<typename ContainerType> 402 struct container_input_adapter_factory< ContainerType, 403 void_t<decltype(begin(std::declval<ContainerType>()), end(std::declval<ContainerType>()))>> 405 using adapter_type = decltype(input_adapter(begin(std::declval<ContainerType>()), end(std::declval<ContainerType>()))); 407 static adapter_type create(const ContainerType& container) 415 template<typename ContainerType> 416 typename container_input_adapter_factory_impl::container_input_adapter_factory<ContainerType> [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Remarks/ |
H A D | BitstreamRemarkSerializer.h | 58 BitstreamRemarkContainerType ContainerType; member 74 BitstreamRemarkSerializerHelper(BitstreamRemarkContainerType ContainerType); 171 /// Create a new meta serializer based on \p ContainerType. 173 BitstreamRemarkContainerType ContainerType, in BitstreamMetaSerializer() 178 TmpHelper.emplace(ContainerType); in BitstreamMetaSerializer()
|
H A D | BitstreamRemarkParser.h | 37 Optional<uint8_t> ContainerType; member
|
/third_party/backends/backend/genesys/ |
H A D | register.h | 70 using ContainerType = std::vector<RegisterType>; 71 using iterator = typename ContainerType::iterator; 72 using const_iterator = typename ContainerType::const_iterator; 201 using ContainerType = RegisterContainer<std::uint8_t>; 202 using iterator = typename ContainerType::iterator; 203 using const_iterator = typename ContainerType::const_iterator; 219 Genesys_Register_Set(Options opts) : registers_{static_cast<ContainerType::Options>(opts)} in Genesys_Register_Set() 224 const ContainerType& registers() const in registers() 311 ContainerType registers_;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
H A D | BitstreamRemarkSerializer.cpp | 20 BitstreamRemarkContainerType ContainerType) in BitstreamRemarkSerializerHelper() 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() 19 BitstreamRemarkSerializerHelper( BitstreamRemarkContainerType ContainerType) BitstreamRemarkSerializerHelper() argument
|
H A 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()
|
H A D | BitstreamRemarkParser.h | 39 BitstreamRemarkContainerType ContainerType = member
|
/third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/ |
H A 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/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/ |
H A 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/ |
H A D | jsonToSpirv.h | 154 using ContainerType = std::vector<EValue>; 155 using iterator = typename ContainerType::iterator; 156 using const_iterator = typename ContainerType::const_iterator; 197 ContainerType values;
|
/third_party/googletest/googletest/test/ |
H A D | googletest-param-test-test.cc | 308 typedef ::std::vector<int> ContainerType; in TEST() typedef 309 ContainerType values; in TEST() 321 typedef ::std::vector<int> ContainerType; in TEST() typedef 322 ContainerType values; in TEST() 335 typedef ::std::vector<int> ContainerType; in TEST() typedef 336 ContainerType values; in TEST() 347 typedef ::std::vector<int> ContainerType; in TEST() typedef 348 ContainerType values; in TEST()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A 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/ |
H A 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/ |
H A D | qpTestLog.c | 69 } ContainerType; typedef 71 DE_INLINE deBool childContainersOk (ContainerType type) in childContainersOk() 84 ContainerType elements[MAX_CONTAINER_STACK_DEPTH]; 97 DE_INLINE deBool ContainerStack_push (ContainerStack* stack, ContainerType type) in ContainerStack_push() 111 DE_INLINE ContainerType ContainerStack_pop (ContainerStack* stack) in ContainerStack_pop() 118 DE_INLINE ContainerType ContainerStack_getTop (const ContainerStack* stack) in ContainerStack_getTop()
|
/third_party/googletest/googletest/include/gtest/internal/ |
H A D | gtest-param-util.h | 312 typedef typename ::std::vector<T> ContainerType; typedef in testing::internal::ValuesInIteratorRangeGenerator 317 typename ContainerType::const_iterator iterator) in Iterator() 361 typename ContainerType::const_iterator iterator_; 373 const ContainerType container_;
|
/third_party/mesa3d/src/gtest/include/gtest/internal/ |
H A D | gtest-param-util.h | 305 typedef typename ::std::vector<T> ContainerType; typedef in testing::internal::ValuesInIteratorRangeGenerator 310 typename ContainerType::const_iterator iterator) in Iterator() 354 typename ContainerType::const_iterator iterator_; 366 const ContainerType container_;
|
/third_party/node/deps/googletest/include/gtest/internal/ |
H A D | gtest-param-util.h | 312 typedef typename ::std::vector<T> ContainerType; typedef in testing::internal::ValuesInIteratorRangeGenerator 317 typename ContainerType::const_iterator iterator) in Iterator() 361 typename ContainerType::const_iterator iterator_; 373 const ContainerType container_;
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceGlobalContext.cpp | 171 using ContainerType = 174 ContainerType Pool;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | str_split_test.cc | 379 template <typename ContainerType, typename Splitter> 381 ContainerType output = splitter; in TestConversionOperator()
|
/third_party/libabigail/src/ |
H A 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/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.h | 3048 template <class ContainerType> 3049 TNode<Uint32T> LoadDetailsByKeyIndex(TNode<ContainerType> container, 3054 template <class ContainerType> 3055 TNode<Object> LoadValueByKeyIndex(TNode<ContainerType> container, 3060 template <class ContainerType> 3061 void StoreDetailsByKeyIndex(TNode<ContainerType> container, 3065 template <class ContainerType> 3067 TNode<ContainerType> container, TNode<IntPtrT> key_index,
|
H A D | code-stub-assembler.cc | 8321 template <class ContainerType> 8323 TNode<ContainerType> container, TNode<IntPtrT> key_index) { 8324 static_assert(!std::is_same<ContainerType, DescriptorArray>::value, 8327 (ContainerType::kEntryValueIndex - ContainerType::kEntryKeyIndex) * 8341 template <class ContainerType> 8343 TNode<ContainerType> container, TNode<IntPtrT> key_index) { 8344 static_assert(!std::is_same<ContainerType, DescriptorArray>::value, 8347 (ContainerType::kEntryDetailsIndex - ContainerType [all...] |
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 5595 template<typename ContainerType, typename Enable = void> 5598 template<typename ContainerType> 5599 struct container_input_adapter_factory< ContainerType, 5600 void_t<decltype(begin(std::declval<ContainerType>()), end(std::declval<ContainerType>()))>> 5602 using adapter_type = decltype(input_adapter(begin(std::declval<ContainerType>()), end(std::declval<ContainerType>()))); 5604 static adapter_type create(const ContainerType& container) 5612 template<typename ContainerType> 5613 typename container_input_adapter_factory_impl::container_input_adapter_factory<ContainerType> [all...] |