Lines Matching refs:doc
1558 void Compare(Document* doc, const char* expected) { in Compare() argument
1560 doc->Write(CodeWriter::ForString(&output).get()); in Compare()
1589 unique_ptr<Document> doc = internals::BuildClientHeader(typenames_, *interface, options_); in TEST_F() local
1590 Compare(doc.get(), kExpectedComplexTypeClientHeaderOutput); in TEST_F()
1596 unique_ptr<Document> doc = internals::BuildClientSource(typenames_, *interface, options_); in TEST_F() local
1597 Compare(doc.get(), kExpectedComplexTypeClientSourceOutput); in TEST_F()
1603 unique_ptr<Document> doc = internals::BuildServerHeader(typenames_, *interface, options_); in TEST_F() local
1604 Compare(doc.get(), kExpectedComplexTypeServerHeaderOutput); in TEST_F()
1610 unique_ptr<Document> doc = internals::BuildServerSource(typenames_, *interface, options_); in TEST_F() local
1611 Compare(doc.get(), kExpectedComplexTypeServerSourceOutput); in TEST_F()
1617 unique_ptr<Document> doc = internals::BuildInterfaceHeader(typenames_, *interface, options_); in TEST_F() local
1618 Compare(doc.get(), kExpectedComplexTypeInterfaceHeaderOutput); in TEST_F()
1624 unique_ptr<Document> doc = internals::BuildInterfaceSource(typenames_, *interface, options_); in TEST_F() local
1625 Compare(doc.get(), kExpectedComplexTypeInterfaceSourceOutput); in TEST_F()
1640 unique_ptr<Document> doc = internals::BuildClientSource(typenames_, *interface, options_); in TEST_F() local
1641 Compare(doc.get(), kExpectedComplexTypeClientWithTraceSourceOutput); in TEST_F()
1647 unique_ptr<Document> doc = internals::BuildServerSource(typenames_, *interface, options_); in TEST_F() local
1648 Compare(doc.get(), kExpectedComplexTypeServerWithTraceSourceOutput); in TEST_F()
1711 unique_ptr<Document> doc = internals::BuildEnumHeader(typenames_, *enum_decl); in TEST_F() local
1712 Compare(doc.get(), kExpectedEnumHeaderOutput); in TEST_F()
1724 unique_ptr<Document> doc = internals::BuildEnumHeader(typenames_, *enum_decl); in TEST_F() local
1725 Compare(doc.get(), kExpectedEnumWithBackingTypeHeaderOutput); in TEST_F()