OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GraphWriter
(Results
1 - 9
of
9
) sorted by null
/external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp
67
template <typename T> class
GraphWriter
{}; // expected-note 3{{declared here}}
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/
DOTGraphTraits.h
11
// graphs generated by the
GraphWriter
.h file. The default implementation of
147
/// custom stuff necessary. The
GraphWriter
object, instantiated with your
151
template<typename GraphType, typename
GraphWriter
>
152
static void addCustomGraphFeatures(const GraphType &,
GraphWriter
&) {}
GraphWriter.h
1
//===-- llvm/Support/
GraphWriter
.h - Write graph to a .dot file -*- C++ -*-===//
56
class
GraphWriter
{
95
GraphWriter
(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) {
315
GraphWriter
<GraphType> W(O, G, ShortNames);
/external/llvm/lib/CodeGen/
ScheduleDAGPrinter.cpp
22
#include "llvm/Support/
GraphWriter
.h"
74
GraphWriter
<ScheduleDAG*> &GW) {
/external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h
123
virtual void getCustomGraphFeatures(
GraphWriter
<ScheduleDAG*> &GW) const;
SelectionDAGPrinter.cpp
24
#include "llvm/Support/
GraphWriter
.h"
135
GraphWriter
<SelectionDAG*> &GW) {
298
void ScheduleDAGSDNodes::getCustomGraphFeatures(
GraphWriter
<ScheduleDAG*> &GW) const {
/external/llvm/lib/Analysis/
RegionPrinter.cpp
102
static void printRegionCluster(const Region &R,
GraphWriter
<RegionInfo *> &GW,
135
GraphWriter
<RegionInfo *> &GW) {
/external/llvm/lib/Support/
Android.mk
33
GraphWriter
.cpp \
/external/llvm/include/llvm/CodeGen/
ScheduleDAG.h
41
template<class Graph> class
GraphWriter
;
606
virtual void addCustomGraphFeatures(
GraphWriter
<ScheduleDAG*> &) const {}
Completed in 285 milliseconds