HomeSort by relevance Sort by last modified time
    Searched refs:infoSink (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Compiler.cpp 16 TInfoSink& infoSink, TSymbolTable& symbolTable)
18 TIntermediate intermediate(infoSink);
20 TParseContext parseContext(symbolTable, extBehavior, intermediate, type, spec, infoSink);
44 infoSink.info.message(EPrefixInternalError, "Unable to parse built-ins");
118 TIntermediate intermediate(infoSink);
120 shaderType, shaderSpec, infoSink);
127 infoSink.info.message(EPrefixInternalError, "Wrong symbol table level");
166 shaderType, shaderSpec, resources, infoSink, symbolTable);
171 infoSink.info.erase();
172 infoSink.obj.erase()
    [all...]
debug.cpp 31 parseContext->infoSink.debug << buf;
ShHandle.h 20 #include "compiler/InfoSink.h"
57 TInfoSink& getInfoSink() { return infoSink; }
87 TInfoSink infoSink; // Output sink.
SymbolTable.cpp 78 void TVariable::dump(TInfoSink& infoSink) const
80 infoSink.debug << getName().c_str() << ": " << type.getQualifierString() << " " << type.getPrecisionString() << " " << type.getBasicString();
82 infoSink.debug << "[0]";
84 infoSink.debug << "\n";
87 void TFunction::dump(TInfoSink &infoSink) const
89 infoSink.debug << getName().c_str() << ": " << returnType.getBasicString() << " " << getMangledName().c_str() << "\n";
92 void TSymbolTableLevel::dump(TInfoSink &infoSink) const
96 (*it).second->dump(infoSink);
99 void TSymbolTable::dump(TInfoSink &infoSink) const
102 infoSink.debug << "LEVEL " << level << "\n"
    [all...]
parseConst.cpp 22 infoSink(sink),
46 TInfoSink& infoSink;
64 infoSink.info.message(EPrefixInternalError, "Symbol Node found in constant constructor", node->getLine());
77 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine());
82 infoSink.info.message(EPrefixInternalError, "Binary Node found in constant constructor", node->getLine());
92 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine());
103 infoSink.info.message(EPrefixError, buf.c_str(), node->getLine());
147 infoSink.info.message(EPrefixInternalError, "Selection Node found in constant constructor", node->getLine());
209 infoSink.info.message(EPrefixInternalError, "Loop Node found in constant constructor", node->getLine());
216 infoSink.info.message(EPrefixInternalError, "Branch Node found in constant constructor", node->getLine())
    [all...]
ShaderLang.cpp 214 TInfoSink& infoSink = compiler->getInfoSink();
215 strcpy(infoLog, infoSink.info.c_str());
230 TInfoSink& infoSink = compiler->getInfoSink();
231 strcpy(objCode, infoSink.obj.c_str());
localintermediate.h 27 TIntermediate(TInfoSink& i) : infoSink(i) { }
52 TInfoSink& infoSink;
Intermediate.cpp 208 if (!node->promote(infoSink))
218 typedReturnNode = leftTempConstant->fold(node->getOp(), rightTempConstant, infoSink);
249 if (! node->promote(infoSink))
287 infoSink.info.message(EPrefixInternalError, "Bad type in AddUnaryMath", line);
355 if (! node->promote(infoSink))
359 TIntermTyped* newChild = childTempConstant->fold(op, 0, infoSink);
493 infoSink.info.message(EPrefixInternalError, "Bad promotion node", node->getLine());
502 infoSink.info.message(EPrefixInternalError, "Bad promotion node", node->getLine());
511 infoSink.info.message(EPrefixInternalError, "Bad promotion node", node->getLine());
516 infoSink.info.message(EPrefixInternalError, "Bad promotion type", node->getLine())
    [all...]
SymbolTable.h 35 #include "compiler/InfoSink.h"
52 virtual void dump(TInfoSink &infoSink) const = 0;
83 virtual void dump(TInfoSink &infoSink) const;
175 virtual void dump(TInfoSink &infoSink) const;
233 void dump(TInfoSink &infoSink) const;
312 void dump(TInfoSink &infoSink) const;
ParseHelper.h 34 intermediate(interm), symbolTable(symt), extensionBehavior(ext), infoSink(is), shaderType(type), shaderSpec(spec), treeRoot(0),
40 TInfoSink& infoSink;
ParseHelper.cpp 214 ReportInfo(infoSink.info, EPrefixError, loc, reason, token, extraInfo);
228 ReportInfo(infoSink.info, EPrefixWarning, loc, reason, token, extraInfo);
465 infoSink.info.message(EPrefixWarning, "Two consecutive underscores are reserved for future use.", line);
829 infoSink.info.message(EPrefixInternalError, "gl_MaxDrawBuffers not defined", line);
934 infoSink.info.message(EPrefixWarning, msg.c_str(), line);
    [all...]
glslang.l 261 context->infoSink.debug.message(EPrefixNone, msg);
481 context->infoSink.info.message(EPrefixWarning, msg.c_str(), yylineno);
intermOut.cpp 414 TOutputTraverser it(infoSink.info);
OutputHLSL.cpp 10 #include "compiler/InfoSink.h"
81 mContext.infoSink.obj << mHeader.c_str();
82 mContext.infoSink.obj << mBody.c_str();
    [all...]
glslang_lex.cpp     [all...]

Completed in 153 milliseconds