Searched defs:GraphWriter (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/SemaCXX/
H A Dmissing-namespace-qualifier-typo-corrections.cpp67 template <typename T> class GraphWriter {}; // expected-note 3{{declared here}} class in namespace:llvm
72 GraphWriter<S> x; //expected-error{{no template named 'GraphWriter'; did you mean 'llvm::GraphWriter'?}}
73 (void)new llvm::GraphWriter; // expected-error {{use of class template 'llvm::GraphWriter' requires template arguments}}
74 (void)new llvm::Graphwriter<S>; // expected-error {{no template named 'Graphwriter' in namespace 'llvm'; did you mean 'GraphWriter'?}}
/external/llvm/include/llvm/Support/
H A DGraphWriter.h1 //===-- llvm/Support/GraphWriter.h - Write graph to a .dot file -*- C++ -*-===//
57 class GraphWriter { class in namespace:llvm
96 GraphWriter(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) { function in class:llvm::GraphWriter
314 GraphWriter<GraphType> W(O, G, ShortNames);

Completed in 94 milliseconds