Home
last modified time | relevance | path

Searched refs:BlockType (Results 1 - 25 of 40) sorted by relevance

12

/third_party/skia/experimental/skrive/src/reader/
H A DJsonReader.cpp19 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 in block_type()
[all...]
H A DStreamReader.h29 enum class BlockType : uint8_t { class in skrive::internal::StreamReader
55 virtual BlockType openBlock() = 0;
90 if (fType != BlockType::kEoB) { in ~AutoBlock()
95 BlockType type() const { return fType; } in type()
99 BlockType fType;
H A DBinaryReader.cpp109 BlockType openBlock() override {
119 return static_cast<BlockType>(block_type);
122 return BlockType::kEoB;
/third_party/skia/experimental/skrive/src/
H A DArtboard.cpp35 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()
H A DSkRive.cpp25 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()
/third_party/skia/experimental/skrive/tests/
H A DJsonReader.cpp36 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()
H A DBinaryReader.cpp46 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp316 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 in parseBlockType()
[all...]
/third_party/node/deps/v8/src/handles/
H A Dglobal-handles.cc47 using BlockType = NodeBlock<_NodeType>;
122 const BlockType* block = reinterpret_cast<const BlockType*>(firstNode); in From()
131 BlockType* block = reinterpret_cast<BlockType*>(firstNode); in From()
143 void GlobalHandles::NodeBlock<NodeType>::ListAdd(BlockType** top) { in ListAdd()
144 BlockType* old_top = *top; in ListAdd()
160 void GlobalHandles::NodeBlock<NodeType>::ListRemove(BlockType** top) { in ListRemove()
168 template <class BlockType>
171 using NodeType = typename BlockType
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dbasic_block.h29 enum BlockType : uint32_t {
71 bool is_type(BlockType type) const { in is_type()
80 void set_type(BlockType type) { in set_type()
H A Dfunction.h108 /// Returns true if the \p merge_block_id is a BlockType of \p type
109 bool IsBlockType(uint32_t merge_block_id, BlockType type) const;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dbasic_block.h29 enum BlockType : uint32_t {
71 bool is_type(BlockType type) const { in is_type()
80 void set_type(BlockType type) { in set_type()
H A Dfunction.h108 /// Returns true if the \p merge_block_id is a BlockType of \p type
109 bool IsBlockType(uint32_t merge_block_id, BlockType type) const;
/third_party/skia/third_party/externals/angle2/include/GLSLANG/
H A DShaderVars.h54 enum class BlockType class
60 const char *BlockTypeToString(BlockType type);
293 BlockType blockType;
/third_party/spirv-tools/source/val/
H A Dbasic_block.h29 enum BlockType : uint32_t {
94 bool is_type(BlockType type) const { in is_type()
108 void set_type(BlockType type) { in set_type()
H A Dfunction.h110 /// Returns true if the \p merge_block_id is a BlockType of \p type
111 bool IsBlockType(uint32_t merge_block_id, BlockType type) const;
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dmacro_checker_file.py167 class BlockType(Enum): class
175 """Return a BlockType if the given line is a block delimiter.
180 return BlockType.REF_PAGE_LIKE
182 return BlockType.CODE
184 return BlockType.BOX
603 new_block_type = BlockType.lineToBlockType(line)
612 if new_block_type != BlockType.REF_PAGE_LIKE and self.prev_line_ref_page_tag:
659 if block_type == BlockType.REF_PAGE_LIKE:
676 if block_type == BlockType.CODE:
691 if old_top.block_type == BlockType
[all...]
/third_party/skia/experimental/sktext/include/
H A DTypes.h169 enum BlockType { enum
190 : type(BlockType::kFontChain) in FontBlock()
201 BlockType type;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp319 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 =
1239 ? WebAssembly::BlockType::Multivalue
1240 : WebAssembly::BlockType(
H A DWebAssemblyMCInstLower.cpp260 auto BT = static_cast<WebAssembly::BlockType>(MO.getImm()); in lower()
261 assert(BT != WebAssembly::BlockType::Invalid); in lower()
262 if (BT == WebAssembly::BlockType::Multivalue) { in lower()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp257 const MVT BlockType = getOptimalRepmovsType(Subtarget, Align); in emitConstantSizeRepmov() local
258 const uint64_t BlockBytes = BlockType.getSizeInBits() / 8; in emitConstantSizeRepmov()
263 DAG.getIntPtrConstant(BlockCount, dl), BlockType); in emitConstantSizeRepmov()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DCollectVariables.cpp41 BlockType GetBlockType(TQualifier qualifier) in GetBlockType()
46 return BlockType::BLOCK_UNIFORM; in GetBlockType()
48 return BlockType::BLOCK_BUFFER; in GetBlockType()
51 return BlockType::BLOCK_UNIFORM; in GetBlockType()
1007 if (interfaceBlock->blockType == BlockType::BLOCK_UNIFORM || in recordInterfaceBlock()
1008 interfaceBlock->blockType == BlockType::BLOCK_BUFFER) in recordInterfaceBlock()
H A DShaderLang.cpp1002 const char *BlockTypeToString(BlockType type) in BlockTypeToString()
1006 case BlockType::BLOCK_BUFFER: in BlockTypeToString()
1008 case BlockType::BLOCK_UNIFORM: in BlockTypeToString()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktOpaqueTypeIndexingTests.cpp1121 enum BlockType enum
1148 BlockType blockType,
1158 const BlockType m_blockType;
1168 BlockType blockType, in BlockArrayIndexingCaseInstance()
1382 BlockType blockType,
1397 const BlockType m_blockType;
1405 BlockType blockType, in BlockArrayIndexingCase()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H A DvktOpaqueTypeIndexingTests.cpp1125 enum BlockType enum
1152 BlockType blockType,
1162 const BlockType m_blockType;
1172 BlockType blockType, in BlockArrayIndexingCaseInstance()
1387 BlockType blockType,
1402 const BlockType m_blockType;
1411 BlockType blockType, in BlockArrayIndexingCase()

Completed in 33 milliseconds

12