Lines Matching refs:parse
18 t = Attribute.parse('"hello"')
35 t = Attribute.parse("BAD_ATTR_DOES_NOT_EXIST")
47 a1 = Attribute.parse('"attr1"')
48 a2 = Attribute.parse('"attr2"')
49 a3 = Attribute.parse('"attr1"')
64 a1 = Attribute.parse('"attr1"')
65 a2 = Attribute.parse('"attr2"')
66 a3 = Attribute.parse('"attr1"')
82 a1 = Attribute.parse('"attr1"')
92 a1 = Attribute.parse("42")
93 a2 = Attribute.parse("[42]")
104 a1 = Attribute.parse('"attr1"')
118 a1 = Attribute.parse('"attr1"')
131 a1 = Attribute.parse('"attr1"')
137 tillegal = StringAttr(Attribute.parse("1.0"))
158 attr_parsed = Attribute.parse(str(attr_built))
166 fattr = FloatAttr(Attribute.parse("42.0 : f32"))
192 i_attr = IntegerAttr(Attribute.parse("42"))
197 si_attr = IntegerAttr(Attribute.parse("-1 : si8"))
200 ui_attr = IntegerAttr(Attribute.parse("255 : ui8"))
203 idx_attr = IntegerAttr(Attribute.parse("-1 : index"))
217 battr = BoolAttr(Attribute.parse("true"))
230 sattr = FlatSymbolRefAttr(Attribute.parse('@symbol'))
244 oattr = OpaqueAttr(Attribute.parse("#pytest_dummy.dummyattr<>"))
261 sattr = StringAttr(Attribute.parse('"stringattr"'))
277 a = Attribute.parse('"stringattr"')
291 raw = Attribute.parse("dense<[[0,1,2],[3,4,5]]> : vector<2x3xi32>")
306 raw = Attribute.parse("dense<[true,false,true,false]> : vector<4xi1>")
326 attr = DenseIntElementsAttr(Attribute.parse(attr_asm))
370 raw = Attribute.parse("dense<[0.0, 1.0, 2.0, 3.0]> : vector<4xf32>")
439 raw = Attribute.parse("vector<4xf32>")
451 raw = Attribute.parse("[42, true, vector<4xf32>]")
461 intAttr = Attribute.parse("42")
462 vecAttr = Attribute.parse("vector<4xf32>")