/external/skia/experimental/skrive/src/reader/ |
D | JsonReader.cpp | 19 StreamReader::BlockType block_type(const char* type_name) { in block_type() 22 StreamReader::BlockType block_type; in block_type() 24 {"artboard" , StreamReader::BlockType::kActorArtboard }, in block_type() 25 {"artboards" , StreamReader::BlockType::kArtboards }, in block_type() 26 {"colorFill" , StreamReader::BlockType::kColorFill }, in block_type() 27 {"colorStroke" , StreamReader::BlockType::kColorStroke }, in block_type() 28 {"ellipse" , StreamReader::BlockType::kActorEllipse }, in block_type() 29 {"gradientFill" , StreamReader::BlockType::kGradientFill }, in block_type() 30 {"gradientStroke" , StreamReader::BlockType::kGradientStroke }, in block_type() 31 {"node" , StreamReader::BlockType::kActorNode }, in block_type() [all …]
|
D | StreamReader.h | 29 enum class BlockType : uint8_t { enum 55 virtual BlockType openBlock() = 0; 90 if (fType != BlockType::kEoB) { in ~AutoBlock() 95 BlockType type() const { return fType; } in type() 99 BlockType fType;
|
D | BinaryReader.cpp | 109 BlockType openBlock() override { in openBlock() 119 return static_cast<BlockType>(block_type); in openBlock() 122 return BlockType::kEoB; in openBlock()
|
/external/skia/experimental/skrive/src/ |
D | Artboard.cpp | 35 case StreamReader::BlockType::kActorNode: in parse_component() 37 case StreamReader::BlockType::kActorShape: in parse_component() 39 case StreamReader::BlockType::kColorFill: in parse_component() 41 case StreamReader::BlockType::kColorStroke: in parse_component() 43 case StreamReader::BlockType::kActorEllipse: in parse_component() 45 case StreamReader::BlockType::kActorRectangle: in parse_component() 103 if (block.type() == StreamReader::BlockType::kEoB) { in parse_artboard() 108 case StreamReader::BlockType::kComponents: in parse_artboard()
|
D | SkRive.cpp | 25 if (block.type() == StreamReader::BlockType::kEoB) { in parse_artboards() 28 if (block.type() != StreamReader::BlockType::kActorArtboard) { in parse_artboards() 49 if (block.type() == StreamReader::BlockType::kEoB) { in parse_skrive() 54 case StreamReader::BlockType::kArtboards: in parse_skrive()
|
/external/skia/experimental/skrive/tests/ |
D | BinaryReader.cpp | 46 REPORTER_ASSERT(reporter, ab.type() == StreamReader::BlockType::kArtboards); in DEF_TEST() 51 REPORTER_ASSERT(reporter, ab.type() == StreamReader::BlockType::kActorArtboard); in DEF_TEST() 66 REPORTER_ASSERT(reporter, ab.type() == StreamReader::BlockType::kEoB); in DEF_TEST() 71 REPORTER_ASSERT(reporter, ab.type() == StreamReader::BlockType::kEoB); in DEF_TEST()
|
D | JsonReader.cpp | 36 REPORTER_ASSERT(reporter, ab.type() == StreamReader::BlockType::kArtboards); in DEF_TEST() 41 REPORTER_ASSERT(reporter, ab.type() == StreamReader::BlockType::kActorArtboard); in DEF_TEST() 56 REPORTER_ASSERT(reporter, ab.type() == StreamReader::BlockType::kEoB); in DEF_TEST() 61 REPORTER_ASSERT(reporter, ab.type() == StreamReader::BlockType::kEoB); in DEF_TEST()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz77support/ |
D | LZ77Compressor.java | 97 public enum BlockType { enum in LZ77Compressor.Block 100 public abstract BlockType getType(); in getType() 144 public BlockType getType() { in getType() 145 return BlockType.LITERAL; in getType() 177 public BlockType getType() { in getType() 178 return BlockType.BACK_REFERENCE; in getType() 189 public BlockType getType() { in getType() 190 return BlockType.EOD; in getType()
|
/external/puffin/src/ |
D | huffer.cc | 43 << BlockTypeToString(static_cast<BlockType>(type)); in HuffDeflate() 47 switch (static_cast<BlockType>(type)) { in HuffDeflate() 48 case BlockType::kUncompressed: in HuffDeflate() 70 case BlockType::kFixed: in HuffDeflate() 75 case BlockType::kDynamic: in HuffDeflate()
|
D | puffer.cc | 53 << BlockTypeToString(static_cast<BlockType>(type)); in PuffDeflate() 69 switch (static_cast<BlockType>(type)) { in PuffDeflate() 70 case BlockType::kUncompressed: { in PuffDeflate() 111 case BlockType::kFixed: in PuffDeflate() 120 case BlockType::kDynamic: in PuffDeflate()
|
D | huffman_table.h | 295 enum class BlockType : uint8_t { enum 301 std::string BlockTypeToString(BlockType type);
|
D | huffman_table.cc | 522 string BlockTypeToString(BlockType type) { in BlockTypeToString() 524 case BlockType::kUncompressed: in BlockTypeToString() 527 case BlockType::kFixed: in BlockTypeToString() 530 case BlockType::kDynamic: in BlockTypeToString()
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseBlock.h | 21 typedef Block<XprType, BlockRows, BlockCols, true> BlockType; typedef 23 enum { IsRowMajor = internal::traits<BlockType>::IsRowMajor }; 26 typedef SparseMatrixBase<BlockType> Base; 29 EIGEN_SPARSE_PUBLIC_INTERFACE(BlockType) in EIGEN_SPARSE_PUBLIC_INTERFACE() argument 100 typedef Block<SparseMatrixType, BlockRows, BlockCols, true> BlockType; typedef 104 enum { IsRowMajor = internal::traits<BlockType>::IsRowMajor }; 105 EIGEN_SPARSE_PUBLIC_INTERFACE(BlockType) 120 inline BlockType& operator=(const SparseMatrixBase<OtherDerived>& other) 214 inline BlockType& operator=(const BlockType& other) 216 return operator=<BlockType>(other); [all …]
|
/external/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 334 WebAssembly::BlockType parseBlockType(StringRef ID) { in parseBlockType() 336 return StringSwitch<WebAssembly::BlockType>(ID) in parseBlockType() 337 .Case("i32", WebAssembly::BlockType::I32) in parseBlockType() 338 .Case("i64", WebAssembly::BlockType::I64) in parseBlockType() 339 .Case("f32", WebAssembly::BlockType::F32) in parseBlockType() 340 .Case("f64", WebAssembly::BlockType::F64) in parseBlockType() 341 .Case("v128", WebAssembly::BlockType::V128) in parseBlockType() 342 .Case("funcref", WebAssembly::BlockType::Funcref) in parseBlockType() 343 .Case("externref", WebAssembly::BlockType::Externref) in parseBlockType() 344 .Case("exnref", WebAssembly::BlockType::Exnref) in parseBlockType() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 316 WebAssembly::BlockType parseBlockType(StringRef ID) { in parseBlockType() 318 return StringSwitch<WebAssembly::BlockType>(ID) in parseBlockType() 319 .Case("i32", WebAssembly::BlockType::I32) in parseBlockType() 320 .Case("i64", WebAssembly::BlockType::I64) in parseBlockType() 321 .Case("f32", WebAssembly::BlockType::F32) in parseBlockType() 322 .Case("f64", WebAssembly::BlockType::F64) in parseBlockType() 323 .Case("v128", WebAssembly::BlockType::V128) in parseBlockType() 324 .Case("exnref", WebAssembly::BlockType::Exnref) in parseBlockType() 325 .Case("void", WebAssembly::BlockType::Void) in parseBlockType() 326 .Default(WebAssembly::BlockType::Invalid); in parseBlockType() [all …]
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | block-ptr-type-crash.m | 13 typedef void (^BlockType)(); typedef 21 BlockType handler;
|
/external/eigen/Eigen/src/Core/ |
D | Block.h | 175 typedef Block<XprType, BlockRows, BlockCols, InnerPanel> BlockType; 179 typedef typename internal::dense_xpr_base<BlockType>::type Base; 180 EIGEN_DENSE_PUBLIC_INTERFACE(BlockType) 332 typedef Block<XprType, BlockRows, BlockCols, InnerPanel> BlockType; 339 typedef MapBase<BlockType> Base; 340 EIGEN_DENSE_PUBLIC_INTERFACE(BlockType) 393 return internal::traits<BlockType>::HasSameStorageOrderAsXprType 437 m_outerStride = internal::traits<BlockType>::HasSameStorageOrderAsXprType
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | basic_block.h | 29 enum BlockType : uint32_t { enum 71 bool is_type(BlockType type) const { in is_type() 80 void set_type(BlockType type) { in set_type()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/val/ |
D | basic_block.h | 29 enum BlockType : uint32_t { enum 71 bool is_type(BlockType type) const { in is_type() 80 void set_type(BlockType type) { in set_type()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | basic_block.h | 29 enum BlockType : uint32_t { enum 71 bool is_type(BlockType type) const { in is_type() 80 void set_type(BlockType type) { in set_type()
|
/external/eigen/Eigen/src/LU/ |
D | PartialPivLU.h | 352 typedef Block<MatrixType,Dynamic,Dynamic> BlockType; 460 BlockType A_0(lu,0,0,rows,k); 461 BlockType A_2(lu,0,k+bs,rows,tsize); 462 BlockType A11(lu,k,k,bs,bs); 463 BlockType A12(lu,k,k+bs,bs,tsize); 464 BlockType A21(lu,k+bs,k,trows,bs); 465 BlockType A22(lu,k+bs,k+bs,trows,tsize);
|
/external/skia/experimental/sktext/include/ |
D | Processor.h | 23 enum BlockType { enum 28 Block(BlockType type, TextRange range) in Block() 31 BlockType fType;
|
/external/angle/include/GLSLANG/ |
D | ShaderVars.h | 50 enum class BlockType enum 287 BlockType blockType;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyCFGStackify.cpp | 319 WebAssembly::BlockType ReturnType = WebAssembly::BlockType::Void; in placeBlockMarker() 324 ReturnType = WebAssembly::BlockType::I32; in placeBlockMarker() 410 .addImm(int64_t(WebAssembly::BlockType::Void)); in placeLoopMarker() 579 .addImm(int64_t(WebAssembly::BlockType::Void)); in placeTryMarker() 1133 .addImm(int64_t(WebAssembly::BlockType::Void)); in fixUnwindMismatches() 1237 WebAssembly::BlockType RetType = in fixEndsAtEndOfFunction() 1239 ? WebAssembly::BlockType::Multivalue in fixEndsAtEndOfFunction() 1240 : WebAssembly::BlockType( in fixEndsAtEndOfFunction()
|
/external/eigen/Eigen/src/QR/ |
D | HouseholderQR.h | 300 typedef Block<MatrixQR,Dynamic,Dynamic> BlockType; typedef 331 BlockType A11_21 = mat.block(k,k,brows,bs); 338 BlockType A21_22 = mat.block(k,k+bs,brows,tcols);
|