HomeSort by relevance Sort by last modified time
    Searched defs:GraphWriter (Results 1 - 2 of 2) sorted by null

  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 67 template <typename T> class GraphWriter {}; // expected-note {{'llvm::GraphWriter' declared here}} \
68 // expected-note {{'GraphWriter' declared here}}
73 GraphWriter<S> x; //expected-error{{no template named 'GraphWriter'; did you mean 'llvm::GraphWriter'?}}
74 (void)new llvm::GraphWriter; // expected-error {{expected a type}}
75 (void)new llvm::Graphwriter<S>; // expected-error {{no template named 'Graphwriter' in namespace 'llvm'; did you mean 'GraphWriter'?}
    [all...]
  /external/llvm/include/llvm/Support/
GraphWriter.h 1 //===-- llvm/Support/GraphWriter.h - Write graph to a .dot file -*- C++ -*-===//
52 class GraphWriter {
91 GraphWriter(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) {
301 GraphWriter<GraphType> W(O, G, ShortNames);

Completed in 45 milliseconds