Home
last modified time | relevance | path

Searched defs:final (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/
DX86Operand.h31 struct X86Operand final : public MCParsedAsmOperand { struct
32 enum KindTy { Token, Register, Immediate, Memory, Prefix, DXRegister } Kind;
34 SMLoc StartLoc, EndLoc;
35 SMLoc OffsetOfLoc;
36 StringRef SymName;
37 void *OpDecl;
38 bool AddressOf;
39 bool CallOperand;
41 struct TokOp {
46 struct RegOp {
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_format_utils.h38 struct ImageFormatInitInfo final struct
45 struct BufferFormatInitInfo final argument
54 struct Format final : private angle::NonCopyable argument
58 bool valid() const { return internalFormat != 0; } in valid()
61 const angle::Format &angleFormat() const { return angle::Format::Get(angleFormatID); } in angleFormat()
64 const angle::Format &imageFormat() const { return angle::Format::Get(imageFormatID); } in imageFormat()
67 const angle::Format &bufferFormat() const { return angle::Format::Get(bufferFormatID); } in bufferFormat()
70 const gl::InternalFormat &getInternalFormatInfo(GLenum type) const in getInternalFormatInfo()
108 class FormatTable final : angle::NonCopyable argument
Dvk_cache_utils.h122 struct PackedAttachmentOpsDesc final struct
133 uint16_t finalLayout : 5; argument
138 class AttachmentOpsArray final argument
164 struct PackedAttribDesc final struct
183 struct VertexInputAttributes final argument
191 struct RasterizationStateBits final struct
208 struct PackedRasterizationAndMultisampleStateInfo final argument
225 struct StencilOps final struct
236 struct PackedStencilOpState final argument
246 struct DepthStencilEnableFlags final argument
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Dlsr.h16 struct LSR final : public UMemory { struct
17 static constexpr int32_t REGION_INDEX_LIMIT = 1001 + 26 * 26;
19 static constexpr int32_t EXPLICIT_LSR = 7;
20 static constexpr int32_t EXPLICIT_LANGUAGE = 4;
21 static constexpr int32_t EXPLICIT_SCRIPT = 2;
22 static constexpr int32_t EXPLICIT_REGION = 1;
23 static constexpr int32_t IMPLICIT_LSR = 0;
24 static constexpr int32_t DONT_CARE_FLAGS = 0;
26 const char *language;
27 const char *script;
[all …]
/third_party/icu/icu4c/source/common/
Dlsr.h16 struct LSR final : public UMemory { struct
17 static constexpr int32_t REGION_INDEX_LIMIT = 1001 + 26 * 26;
19 static constexpr int32_t EXPLICIT_LSR = 7;
20 static constexpr int32_t EXPLICIT_LANGUAGE = 4;
21 static constexpr int32_t EXPLICIT_SCRIPT = 2;
22 static constexpr int32_t EXPLICIT_REGION = 1;
23 static constexpr int32_t IMPLICIT_LSR = 0;
24 static constexpr int32_t DONT_CARE_FLAGS = 0;
26 const char *language;
27 const char *script;
[all …]
/third_party/node/deps/icu-small/source/common/
Dlsr.h16 struct LSR final : public UMemory { struct
17 static constexpr int32_t REGION_INDEX_LIMIT = 1001 + 26 * 26;
19 static constexpr int32_t EXPLICIT_LSR = 7;
20 static constexpr int32_t EXPLICIT_LANGUAGE = 4;
21 static constexpr int32_t EXPLICIT_SCRIPT = 2;
22 static constexpr int32_t EXPLICIT_REGION = 1;
23 static constexpr int32_t IMPLICIT_LSR = 0;
24 static constexpr int32_t DONT_CARE_FLAGS = 0;
26 const char *language;
27 const char *script;
[all …]
/third_party/skia/src/sksl/ir/
DSkSLIndexExpression.h20 struct IndexExpression final : public Expression { struct
21 inline static constexpr Kind kExpressionKind = Kind::kIndex;
23 IndexExpression(const Context& context, std::unique_ptr<Expression> base, in IndexExpression()
45 std::unique_ptr<Expression>& base() { in base()
49 const std::unique_ptr<Expression>& base() const { in base()
53 std::unique_ptr<Expression>& index() { in index()
57 const std::unique_ptr<Expression>& index() const { in index()
61 bool hasProperty(Property property) const override { in hasProperty()
65 std::unique_ptr<Expression> clone() const override { in clone()
71 String description() const override { in description()
[all …]
DSkSLSwizzle.h22 struct Swizzle final : public Expression { struct
23 inline static constexpr Kind kExpressionKind = Kind::kSwizzle;
25 Swizzle(const Context& context, std::unique_ptr<Expression> base, in Swizzle()
51 std::unique_ptr<Expression>& base() { in base()
55 const std::unique_ptr<Expression>& base() const { in base()
59 const ComponentArray& components() const { in components()
63 bool hasProperty(Property property) const override { in hasProperty()
67 std::unique_ptr<Expression> clone() const override { in clone()
72 String description() const override { in description()
81 Swizzle(const Type* type, std::unique_ptr<Expression> base, const ComponentArray& components) in Swizzle()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat.h24 struct Format final : private angle::NonCopyable struct
50 static const Format &Get(FormatID id) { return gFormatInfoTable[static_cast<int>(id)]; } in Get()
65 constexpr bool isInt() const { return isSint() || isUint(); } in isInt()
66 constexpr bool isNorm() const { return isSnorm() || isUnorm(); } in isNorm()
67 constexpr bool isPureInt() const { return isInt() && !isScaled; } in isPureInt()
71 FormatID id;
75 GLenum glInternalFormat;
80 GLenum fboImplementationInternalFormat;
82 rx::MipGenerationFunction mipGenerationFunction;
83 rx::PixelReadFunction pixelReadFunction;
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat.h24 struct Format final : private angle::NonCopyable struct
48 static const Format &Get(FormatID id) { return gFormatInfoTable[static_cast<int>(id)]; } in Get()
61 constexpr bool isInt() const { return isSint() || isUint(); } in isInt()
62 constexpr bool isNorm() const { return isSnorm() || isUnorm(); } in isNorm()
63 constexpr bool isPureInt() const { return isInt() && !isScaled; } in isPureInt()
67 FormatID id;
71 GLenum glInternalFormat;
76 GLenum fboImplementationInternalFormat;
78 rx::MipGenerationFunction mipGenerationFunction;
79 rx::PixelReadFunction pixelReadFunction;
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.h285 struct PackedAttachmentOpsDesc final struct
305 uint16_t finalLayout : 4; argument
313 class AttachmentOpsArray final argument
350 struct PackedAttribDesc final struct
369 struct VertexInputAttributes final argument
377 struct RasterizationStateBits final argument
397 struct PackedRasterizationAndMultisampleStateInfo final argument
414 struct StencilOps final argument
425 struct PackedStencilOpState final argument
435 struct DepthStencilEnableFlags final argument
[all …]
/third_party/node/src/
Dcares_wrap.h122 struct NodeAresTask final : public MemoryRetainer { struct
123 ChannelWrap* channel;
124 ares_socket_t sock;
148 class ChannelWrap final : public AsyncWrap { argument
218 struct ResponseData final { struct
226 class QueryWrap final : public AsyncWrap { argument
400 struct AnyTraits final { struct
408 struct ATraits final { struct
416 struct AaaaTraits final { argument
424 struct CaaTraits final { struct
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DAMDGPUMetadata.h121 struct Metadata final { struct
123 std::vector<uint32_t> mReqdWorkGroupSize = std::vector<uint32_t>();
125 std::vector<uint32_t> mWorkGroupSizeHint = std::vector<uint32_t>();
136 bool empty() const { in empty()
141 bool notEmpty() const { in notEmpty()
188 struct Metadata final { struct
194 uint32_t mSize = 0;
196 uint32_t mOffset = 0;
198 uint32_t mAlign = 0;
200 ValueKind mValueKind = ValueKind::Unknown;
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/common/
Dutilities.h130 struct UniformTypeInfo final : angle::NonCopyable struct
149 GLenum type;
150 GLenum componentType;
151 GLenum textureType;
152 GLenum transposedMatrixType;
153 GLenum boolVectorType;
154 SamplerFormat samplerFormat;
155 int rowCount;
156 int columnCount;
157 int componentCount;
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
Dtexture_format_table.h33 struct Format final : private angle::NonCopyable struct
53 GLenum internalFormat;
54 angle::FormatID formatID;
56 DXGI_FORMAT texFormat;
57 DXGI_FORMAT srvFormat;
58 DXGI_FORMAT uavFormat;
59 DXGI_FORMAT rtvFormat;
60 DXGI_FORMAT dsvFormat;
62 DXGI_FORMAT blitSRVFormat;
64 GLenum swizzleFormat;
[all …]
DQuery11.h41 struct QueryState final : private angle::NonCopyable struct
46 unsigned int getDataAttemptCount;
48 d3d11::Query query;
49 d3d11::Query beginTimestamp;
50 d3d11::Query endTimestamp;
51 bool finished;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
Dtexture_format_table.h33 struct Format final : private angle::NonCopyable struct
53 GLenum internalFormat;
54 angle::FormatID formatID;
56 DXGI_FORMAT texFormat;
57 DXGI_FORMAT srvFormat;
58 DXGI_FORMAT uavFormat;
59 DXGI_FORMAT rtvFormat;
60 DXGI_FORMAT dsvFormat;
62 DXGI_FORMAT blitSRVFormat;
64 GLenum swizzleFormat;
[all …]
DQuery11.h41 struct QueryState final : private angle::NonCopyable struct
46 unsigned int getDataAttemptCount;
48 d3d11::Query query;
49 d3d11::Query beginTimestamp;
50 d3d11::Query endTimestamp;
51 bool finished;
/third_party/skia/third_party/externals/dawn/src/tests/perf_tests/
DDawnPerfTestPlatform.h35 struct TraceEvent final { struct
36 TraceEvent() { in TraceEvent()
38 TraceEvent(char phaseIn, in TraceEvent()
46 char phase = 0;
47 dawn_platform::TraceCategory category;
48 const char* name = nullptr;
49 uint64_t id = 0;
50 std::string threadId;
51 double timestamp = 0;
/third_party/skia/third_party/externals/angle2/src/common/
Dutilities.h140 struct UniformTypeInfo final : angle::NonCopyable struct
158 GLenum type;
159 GLenum componentType;
160 GLenum textureType;
161 GLenum transposedMatrixType;
162 GLenum boolVectorType;
163 SamplerFormat samplerFormat;
164 int rowCount;
165 int columnCount;
166 int componentCount;
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
Dangletypes.h126 struct RasterizerState final struct
148 struct BlendState final argument
177 struct DepthStencilState final argument
183 bool depthTest;
184 GLenum depthFunc;
185 bool depthMask;
187 bool stencilTest;
188 GLenum stencilFunc;
189 GLuint stencilMask;
190 GLenum stencilFail;
[all …]
DVaryingPacking.h84 struct PackedVaryingRegister final struct
86 PackedVaryingRegister() in PackedVaryingRegister()
95 PackedVaryingRegister &operator=(const PackedVaryingRegister &) = default;
102 unsigned int sortOrder() const in sortOrder()
108 std::string tfVaryingName() const in tfVaryingName()
121 const PackedVarying *packedVarying;
124 unsigned int varyingArrayIndex;
149 class VaryingPacking final : angle::NonCopyable argument
DVertexAttribute.h74 struct VertexAttribute final : private angle::NonCopyable struct
78 VertexAttribute &operator=(VertexAttribute &&attrib);
82 GLint64 getCachedElementLimit() const { return mCachedElementLimit; } in getCachedElementLimit()
84 bool enabled; // For glEnable/DisableVertexAttribArray
85 const angle::Format *format;
87 const void *pointer;
88 GLuint relativeOffset;
90 GLuint vertexAttribArrayStride; // ONLY for queries of VERTEX_ATTRIB_ARRAY_STRIDE
91 GLuint bindingIndex;
/third_party/skia/third_party/externals/angle2/src/libANGLE/
Dangletypes.h213 struct RasterizerState final struct
239 struct BlendState final struct
262 struct DepthStencilState final argument
273 bool depthTest;
274 GLenum depthFunc;
275 bool depthMask;
277 bool stencilTest;
278 GLenum stencilFunc;
279 GLuint stencilMask;
280 GLenum stencilFail;
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DCFLAliasAnalysisUtils.h23 template <typename AAResult> struct FunctionHandle final : public CallbackVH { struct
24 FunctionHandle(Function *Fn, AAResult *Result) in FunctionHandle()
30 void deleted() override { removeSelfFromCache(); } in deleted()
31 void allUsesReplacedWith(Value *) override { removeSelfFromCache(); } in allUsesReplacedWith()
36 void removeSelfFromCache() { in removeSelfFromCache()

12345678910>>...12