/third_party/vk-gl-cts/framework/delibs/decpp/ |
D | deAppendList.hpp | 51 template<typename ElementType> 58 void append (const ElementType& value); 65 AppendList (const AppendList<ElementType>&); 66 AppendList<ElementType>& operator= (const AppendList<ElementType>&); 71 ElementType* elements; 76 , elements (reinterpret_cast<ElementType*>(deAlignedMalloc(sizeof(ElementType)*size, in Block() 77 deAlign32((deUint32)alignOf<ElementType>(), (deUint32)sizeof(void*))))) in Block() 153 typedef Iterator<const ElementType> const_iterator; 154 typedef Iterator<ElementType> iterator; 163 template<typename ElementType> [all …]
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | ExperimentalApi.java | 34 import java.lang.annotation.ElementType; 54 ElementType.ANNOTATION_TYPE, 55 ElementType.CONSTRUCTOR, 56 ElementType.FIELD, 57 ElementType.METHOD, 58 ElementType.PACKAGE, 59 ElementType.TYPE
|
/third_party/icu/tools/currency/src/com/ibm/icu/dev/tool/currency/ |
D | CurrencyDataParser.java | 51 private enum ElementType { enum in CurrencyDataParser.Handler 63 ElementType(String elemName) { in ElementType() method in CurrencyDataParser.Handler.ElementType 67 public static ElementType forName(String name) { in forName() 68 for (ElementType type : values()) { in forName() 78 ElementType elem = ElementType.OTHER; 96 elem = ElementType.OTHER; in startElement() 99 elem = ElementType.forName(qName); in startElement() 101 elem = ElementType.OTHER; in startElement() 115 elem = ElementType.OTHER; in endElement()
|
/third_party/skia/third_party/externals/tint/src/resolver/ |
D | resolver_constants_test.cc | 39 EXPECT_EQ(sem->ConstantValue().ElementType(), sem->Type()); in TEST_F() 54 EXPECT_EQ(sem->ConstantValue().ElementType(), sem->Type()); in TEST_F() 69 EXPECT_EQ(sem->ConstantValue().ElementType(), sem->Type()); in TEST_F() 84 EXPECT_EQ(sem->ConstantValue().ElementType(), sem->Type()); in TEST_F() 101 EXPECT_TRUE(sem->ConstantValue().ElementType()->Is<sem::I32>()); in TEST_F() 120 EXPECT_TRUE(sem->ConstantValue().ElementType()->Is<sem::U32>()); in TEST_F() 139 EXPECT_TRUE(sem->ConstantValue().ElementType()->Is<sem::F32>()); in TEST_F() 158 EXPECT_TRUE(sem->ConstantValue().ElementType()->Is<sem::Bool>()); in TEST_F() 177 EXPECT_TRUE(sem->ConstantValue().ElementType()->Is<sem::I32>()); in TEST_F() 196 EXPECT_TRUE(sem->ConstantValue().ElementType()->Is<sem::U32>()); in TEST_F() [all …]
|
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | jit_pch.hpp | 142 static inline llvm::VectorType* getVectorType(llvm::Type *ElementType, unsigned NumElements) in getVectorType() argument 144 return llvm::VectorType::get(ElementType, NumElements, false); in getVectorType() 147 static inline llvm::VectorType* getVectorType(llvm::Type *ElementType, unsigned NumElements) in getVectorType() argument 149 return llvm::VectorType::get(ElementType, NumElements); in getVectorType()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | layout.h | 379 using ElementType = typename std::tuple_element<N, ElementTypes>::type; 407 Offset<N - 1>() + SizeOf<ElementType<N - 1>>::value * size_[N - 1], 475 CopyConst<Char, ElementType<N>>* Pointer(Char* p) const { 484 return reinterpret_cast<CopyConst<Char, ElementType<N>>*>(p + Offset<N>()); 525 return std::tuple<CopyConst<Char, ElementType<OffsetSeq>>*...>( 542 SliceType<CopyConst<Char, ElementType<N>>> Slice(Char* p) const { 543 return SliceType<CopyConst<Char, ElementType<N>>>(Pointer<N>(p), Size<N>()); 586 return std::tuple<SliceType<CopyConst<Char, ElementType<SizeSeq>>>...>( 600 SizeOf<ElementType<NumTypes - 1>>::value * size_[NumTypes - 1]; 624 Offset<N - 1>() + SizeOf<ElementType<N - 1>>::value * size_[N - 1]; [all …]
|
D | layout_test.cc | 88 TEST(Layout, ElementType) { in TEST() argument 91 SameType<int32_t, L::ElementType<0>>(); in TEST() 92 SameType<int32_t, decltype(L::Partial())::ElementType<0>>(); in TEST() 93 SameType<int32_t, decltype(L::Partial(0))::ElementType<0>>(); in TEST() 97 SameType<int32_t, L::ElementType<0>>(); in TEST() 98 SameType<int32_t, L::ElementType<1>>(); in TEST() 99 SameType<int32_t, decltype(L::Partial())::ElementType<0>>(); in TEST() 100 SameType<int32_t, decltype(L::Partial())::ElementType<1>>(); in TEST() 101 SameType<int32_t, decltype(L::Partial(0))::ElementType<0>>(); in TEST() 102 SameType<int32_t, decltype(L::Partial(0))::ElementType<1>>(); in TEST() [all …]
|
/third_party/abseil-cpp/absl/container/internal/ |
D | layout.h | 379 using ElementType = typename std::tuple_element<N, ElementTypes>::type; 407 Offset<N - 1>() + SizeOf<ElementType<N - 1>>() * size_[N - 1], 475 CopyConst<Char, ElementType<N>>* Pointer(Char* p) const { 484 return reinterpret_cast<CopyConst<Char, ElementType<N>>*>(p + Offset<N>()); 525 return std::tuple<CopyConst<Char, ElementType<OffsetSeq>>*...>( 542 SliceType<CopyConst<Char, ElementType<N>>> Slice(Char* p) const { 543 return SliceType<CopyConst<Char, ElementType<N>>>(Pointer<N>(p), Size<N>()); 586 return std::tuple<SliceType<CopyConst<Char, ElementType<SizeSeq>>>...>( 600 SizeOf<ElementType<NumTypes - 1>>() * size_[NumTypes - 1]; 624 Offset<N - 1>() + SizeOf<ElementType<N - 1>>() * size_[N - 1]; [all …]
|
D | layout_test.cc | 88 TEST(Layout, ElementType) { in TEST() argument 91 SameType<int32_t, L::ElementType<0>>(); in TEST() 92 SameType<int32_t, decltype(L::Partial())::ElementType<0>>(); in TEST() 93 SameType<int32_t, decltype(L::Partial(0))::ElementType<0>>(); in TEST() 97 SameType<int32_t, L::ElementType<0>>(); in TEST() 98 SameType<int32_t, L::ElementType<1>>(); in TEST() 99 SameType<int32_t, decltype(L::Partial())::ElementType<0>>(); in TEST() 100 SameType<int32_t, decltype(L::Partial())::ElementType<1>>(); in TEST() 101 SameType<int32_t, decltype(L::Partial(0))::ElementType<0>>(); in TEST() 102 SameType<int32_t, decltype(L::Partial(0))::ElementType<1>>(); in TEST() [all …]
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypesArraysTuples.ts | 82 type ElementType<T> = T extends Array<infer U> ? U : never; alias 85 type F<T> = ElementType<Mapped<T>>; 87 type R2 = ElementType<Mapped<[string, number, boolean]>>; // string | number | boolean 99 type Unconstrained<T> = ElementType<Mapped<T>>; 102 type Constrained<T extends any[]> = ElementType<Mapped<T>>;
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
D | structured_objectwriter.h | 76 template <typename ElementType> 77 ElementType* pop() { in pop() 78 return down_cast<ElementType*>(parent_.release()); in pop()
|
/third_party/typescript/tests/baselines/reference/ |
D | mappedTypesArraysTuples.js | 80 type ElementType<T> = T extends Array<infer U> ? U : never; 83 type F<T> = ElementType<Mapped<T>>; 85 type R2 = ElementType<Mapped<[string, number, boolean]>>; // string | number | boolean 97 type Unconstrained<T> = ElementType<Mapped<T>>; 100 type Constrained<T extends any[]> = ElementType<Mapped<T>>; 199 declare type ElementType<T> = T extends Array<infer U> ? U : never; 203 declare type F<T> = ElementType<Mapped<T>>; 205 declare type R2 = ElementType<Mapped<[string, number, boolean]>>; 209 declare type Unconstrained<T> = ElementType<Mapped<T>>; 211 declare type Constrained<T extends any[]> = ElementType<Mapped<T>>;
|
D | mappedTypesArraysTuples.symbols | 305 type ElementType<T> = T extends Array<infer U> ? U : never; 306 >ElementType : Symbol(ElementType, Decl(mappedTypesArraysTuples.ts, 74, 1)) 321 type F<T> = ElementType<Mapped<T>>; 324 >ElementType : Symbol(ElementType, Decl(mappedTypesArraysTuples.ts, 74, 1)) 332 type R2 = ElementType<Mapped<[string, number, boolean]>>; // string | number | boolean 334 >ElementType : Symbol(ElementType, Decl(mappedTypesArraysTuples.ts, 74, 1)) 365 type Unconstrained<T> = ElementType<Mapped<T>>; 368 >ElementType : Symbol(ElementType, Decl(mappedTypesArraysTuples.ts, 74, 1)) 376 type Constrained<T extends any[]> = ElementType<Mapped<T>>; 379 >ElementType : Symbol(ElementType, Decl(mappedTypesArraysTuples.ts, 74, 1))
|
D | mappedTypesArraysTuples.types | 225 type ElementType<T> = T extends Array<infer U> ? U : never; 226 >ElementType : ElementType<T> 231 type F<T> = ElementType<Mapped<T>>; 237 type R2 = ElementType<Mapped<[string, number, boolean]>>; // string | number | boolean 264 type Unconstrained<T> = ElementType<Mapped<T>>; 270 type Constrained<T extends any[]> = ElementType<Mapped<T>>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceBitVector.h | 39 using ElementType = uint64_t; 41 static constexpr SizeT NumBitsPerPos = sizeof(ElementType) * CHAR_BIT; 79 Reference(ElementType *D, SizeT B) : Data(D), Bit(B) { in Reference() 83 ElementType *const Data; 183 static constexpr ElementType _1 = ElementType(1); 186 ElementType Bits[BitsElements]; 218 const ElementType Mask = 219 (ElementType(1) << ((Prev + 1) - Pos * NumBitsPerPos)) - 1; 220 const ElementType B = Bits[Pos] & ~Mask; 237 Bits[Pos] ^= ~ElementType(0); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
D | insertelement.h | 21 template <typename VectorType, typename ElementType> 23 setElement(VectorType &Value, size_t Index, ElementType Element) { in setElement()
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/ |
D | text_editing.dart | 178 enum ElementType { 189 ElementType _getTypeFromElement(html.HtmlElement domElement) { 191 return ElementType.input; 194 return ElementType.textarea; 200 return ElementType.contentEditable; 227 ElementType get _elementType { 228 final ElementType type = _getTypeFromElement(domElement); 329 case ElementType.input: 338 case ElementType.textarea: 347 case ElementType.contentEditable: [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Type.cpp | 587 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) { in get() argument 588 assert(isValidElementType(ElementType) && "Invalid type for array element!"); in get() 590 LLVMContextImpl *pImpl = ElementType->getContext().pImpl; in get() 592 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)]; in get() 595 Entry = new (pImpl->Alloc) ArrayType(ElementType, NumElements); in get() 614 VectorType *VectorType::get(Type *ElementType, ElementCount EC) { in get() argument 616 assert(isValidElementType(ElementType) && "Element type of a VectorType must " in get() 620 LLVMContextImpl *pImpl = ElementType->getContext().pImpl; in get() 621 VectorType *&Entry = ElementType->getContext().pImpl in get() 622 ->VectorTypes[std::make_pair(ElementType, EC)]; in get() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 416 static ArrayType *get(Type *ElementType, uint64_t NumElements); 459 static VectorType *get(Type *ElementType, ElementCount EC); 460 static VectorType *get(Type *ElementType, unsigned NumElements, 462 return VectorType::get(ElementType, {NumElements, Scalable}); 590 static PointerType *get(Type *ElementType, unsigned AddressSpace); 594 static PointerType *getUnqual(Type *ElementType) { in getUnqual() argument 595 return PointerType::get(ElementType, 0); in getUnqual()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
D | span.h | 72 struct ElementType { struct 77 struct ElementType<T (&)[N]> { argument 82 using ElementT = typename ElementType<C>::type;
|
/third_party/abseil-cpp/absl/types/internal/ |
D | span.h | 72 struct ElementType { struct 77 struct ElementType<T (&)[N]> { argument 82 using ElementT = typename ElementType<C>::type;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | DerivedTypes.h | 353 static ArrayType *get(Type *ElementType, uint64_t NumElements); 377 static VectorType *get(Type *ElementType, unsigned NumElements); 454 static PointerType *get(Type *ElementType, unsigned AddressSpace); 458 static PointerType *getUnqual(Type *ElementType) { in getUnqual() argument 459 return PointerType::get(ElementType, 0); in getUnqual()
|
/third_party/skia/third_party/externals/tint/tools/src/list/ |
D | list.go | 48 ElementType() reflect.Type methodSpec 68 out := New(l.ElementType(), l.Count()) 135 func (l list) ElementType() reflect.Type { func
|
/third_party/skia/third_party/externals/tint/src/sem/ |
D | constant.h | 95 const sem::Type* ElementType() const { return elem_type_; } in ElementType() function 107 auto* elem_type = ElementType(); in WithScalarAt()
|
/third_party/boost/boost/spirit/repository/home/qi/operator/detail/ |
D | keywords.hpp | 100 typedef typename mpl::at<Elements,T>::type ElementType; in call() typedef 102 (!is_distinct<ElementType>::value) in call() 112 typedef typename mpl::at<Elements,T>::type ElementType; in call() typedef 114 (!is_distinct<ElementType>::value) in call()
|