OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:infoSink
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/
Diagnostics.h
17
TDiagnostics(TInfoSink&
infoSink
);
20
TInfoSink&
infoSink
() { return mInfoSink; }
Compiler.cpp
139
TIntermediate intermediate(
infoSink
);
142
sourcePath,
infoSink
);
159
success = detectCallDepth(root,
infoSink
, (compileOptions & SH_LIMIT_CALL_STACK_DEPTH) != 0);
209
infoSink
.info.prefix(EPrefixError);
210
infoSink
.info << "too many uniforms";
281
infoSink
.info.erase();
282
infoSink
.obj.erase();
283
infoSink
.debug.erase();
294
bool TCompiler::detectCallDepth(TIntermNode* root, TInfoSink&
infoSink
, bool limitCallStackDepth)
296
DetectCallDepth detect(
infoSink
, limitCallStackDepth, maxCallStackDepth)
[
all
...]
DetectCallDepth.h
69
TInfoSink& getInfoSink() { return
infoSink
; }
73
TInfoSink&
infoSink
;
Diagnostics.cpp
10
#include "compiler/
InfoSink
.h"
13
TDiagnostics::TDiagnostics(TInfoSink&
infoSink
) :
14
mInfoSink(
infoSink
),
parseConst.cpp
22
infoSink
(sink),
46
TInfoSink&
infoSink
;
64
infoSink
.info.message(EPrefixInternalError, node->getLine(), "Symbol Node found in constant constructor");
77
infoSink
.info.message(EPrefixError, node->getLine(), buf.c_str());
82
infoSink
.info.message(EPrefixInternalError, node->getLine(), "Binary Node found in constant constructor");
92
infoSink
.info.message(EPrefixError, node->getLine(), buf.c_str());
103
infoSink
.info.message(EPrefixError, node->getLine(), buf.c_str());
147
infoSink
.info.message(EPrefixInternalError, node->getLine(), "Selection Node found in constant constructor");
157
assert(
infoSink
.info.size() != 0);
216
infoSink
.info.message(EPrefixInternalError, node->getLine(), "Loop Node found in constant constructor")
[
all
...]
SymbolTable.cpp
130
void TVariable::dump(TInfoSink&
infoSink
) const
132
infoSink
.debug << getName().c_str() << ": " << type.getQualifierString() << " " << type.getPrecisionString() << " " << type.getBasicString();
134
infoSink
.debug << "[0]";
136
infoSink
.debug << "\n";
139
void TFunction::dump(TInfoSink &
infoSink
) const
141
infoSink
.debug << getName().c_str() << ": " << returnType.getBasicString() << " " << getMangledName().c_str() << "\n";
144
void TSymbolTableLevel::dump(TInfoSink &
infoSink
) const
148
(*it).second->dump(
infoSink
);
151
void TSymbolTable::dump(TInfoSink &
infoSink
) const
154
infoSink
.debug << "LEVEL " << level << "\n"
[
all
...]
ShHandle.h
22
#include "compiler/
InfoSink
.h"
70
TInfoSink& getInfoSink() { return
infoSink
; }
88
bool detectCallDepth(TIntermNode* root, TInfoSink&
infoSink
, bool limitCallStackDepth);
143
TInfoSink
infoSink
; // Output sink.
localintermediate.h
26
TIntermediate(TInfoSink& i) :
infoSink
(i) { }
54
TInfoSink&
infoSink
;
Intermediate.cpp
209
if (!node->promote(
infoSink
))
219
typedReturnNode = leftTempConstant->fold(node->getOp(), rightTempConstant,
infoSink
);
248
if (! node->promote(
infoSink
))
284
infoSink
.info.message(EPrefixInternalError, line, "Bad type in AddUnaryMath");
350
if (! node->promote(
infoSink
))
354
TIntermTyped* newChild = childTempConstant->fold(op, 0,
infoSink
);
485
infoSink
.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node");
494
infoSink
.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node");
503
infoSink
.info.message(EPrefixInternalError, node->getLine(), "Bad promotion node");
508
infoSink
.info.message(EPrefixInternalError, node->getLine(), "Bad promotion type")
[
all
...]
DetectCallDepth.cpp
8
#include "compiler/
InfoSink
.h"
72
DetectCallDepth::DetectCallDepth(TInfoSink&
infoSink
, bool limitCallStackDepth, int maxCallStackDepth)
75
infoSink
(
infoSink
),
SymbolTable.h
36
#include "compiler/
InfoSink
.h"
54
virtual void dump(TInfoSink &
infoSink
) const = 0;
86
virtual void dump(TInfoSink &
infoSink
) const;
169
virtual void dump(TInfoSink &
infoSink
) const;
229
void dump(TInfoSink &
infoSink
) const;
337
void dump(TInfoSink &
infoSink
) const;
ShaderLang.cpp
225
TInfoSink&
infoSink
= compiler->getInfoSink();
226
strcpy(infoLog,
infoSink
.info.c_str());
241
TInfoSink&
infoSink
= compiler->getInfoSink();
242
strcpy(objCode,
infoSink
.obj.c_str());
ParseContext.h
65
TInfoSink&
infoSink
() { return diagnostics.
infoSink
(); }
intermOut.cpp
421
TOutputTraverser it(
infoSink
.info);
OutputHLSL.cpp
12
#include "compiler/
InfoSink
.h"
121
mContext.
infoSink
().obj << mHeader.c_str();
122
mContext.
infoSink
().obj << mBody.c_str();
[
all
...]
Completed in 55 milliseconds