Lines Matching refs:StreamReader
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()
32 {"nodes" , StreamReader::BlockType::kComponents }, in block_type()
33 {"path" , StreamReader::BlockType::kActorPath }, in block_type()
34 {"polygon" , StreamReader::BlockType::kActorPolygon }, in block_type()
35 {"radialGradientFill" , StreamReader::BlockType::kRadialGradientFill }, in block_type()
36 {"radialGradientStroke", StreamReader::BlockType::kRadialGradientStroke }, in block_type()
37 {"rectangle" , StreamReader::BlockType::kActorRectangle }, in block_type()
38 {"shape" , StreamReader::BlockType::kActorShape }, in block_type()
39 {"star" , StreamReader::BlockType::kActorStar }, in block_type()
40 {"triangle" , StreamReader::BlockType::kActorTriangle }, in block_type()
43 const TypeMapEntry key = { type_name, StreamReader::BlockType::kUnknown }; in block_type()
53 : StreamReader::BlockType::kUnknown; in block_type()
56 class JsonReader final : public StreamReader {
252 std::unique_ptr<StreamReader> MakeJsonStreamReader(const char json[], size_t len) { in MakeJsonStreamReader()