Lines Matching refs:baz

71     XURI baz;  field in RDFRepositoryTest
113 baz = URI.create(xContext, "uri:baz"); in before()
114 assertNotNull("baz", baz); in before()
207 Statement xFoo_FooBarBaz = new Statement(foo, bar, baz, foo); in check()
208 xFooGraph.addStatement(foo, bar, baz); in check()
224 Statement xFoo_BazBarLit = new Statement(baz, bar, lit, foo); in check()
225 xFooGraph.addStatement(baz, bar, lit); in check()
230 xFooEnum = xFooGraph.getStatements(baz, bar, null); in check()
235 new Statement(baz, bar, litlang, foo); in check()
236 xFooGraph.addStatement(baz, bar, litlang); in check()
242 xFooEnum = xFooGraph.getStatements(null, null, baz); in check()
247 new Statement(baz, bar, littype, foo); in check()
248 xFooGraph.addStatement(baz, bar, littype); in check()
254 xFooGraph.removeStatements(baz, bar, litlang); in check()
266 xFooGraph.addStatement(foo, bar, baz); in check()
272 xFooGraph.addStatement(foo, bar, baz); in check()
278 xFooGraph.addStatement(xFooGraph, bar, baz); in check()
301 xRep.importGraph(FileFormat.RDF_XML, xFooIn, baz, base); in check()
302 XNamedGraph xBazGraph = xRep.getGraph(baz); in check()
305 Statement xBaz_FooBarBaz = new Statement(foo, bar, baz, baz); in check()
306 Statement xBaz_BazBarLit = new Statement(baz, bar, lit, baz); in check()
308 new Statement(baz, bar, littype, baz); in check()
322 xRep.destroyGraph(baz); in check()
323 assertNull("baz graph zombie", xRep.getGraph(baz)); in check()
527 xRep.setStatementRDFa(foo, new XURI[] { foo, bar, baz }, xM, in checkRDFa()
531 Statement x_FooBazTRLit = new Statement(foo, baz, trlit, null); in checkRDFa()