HomeSort by relevance Sort by last modified time
    Searched refs:TInfoSink (Results 1 - 25 of 27) sorted by null

1 2

  /external/swiftshader/src/OpenGL/compiler/
Diagnostics.h 20 class TInfoSink;
25 TDiagnostics(TInfoSink& infoSink);
29 TInfoSink& infoSink() { return mInfoSink; }
52 TInfoSink& mInfoSink;
Compiler.h 87 TInfoSink& getInfoSink() { return infoSink; }
96 bool validateCallDepth(TIntermNode *root, TInfoSink &infoSink);
118 TInfoSink infoSink; // Output sink.
localintermediate.h 28 class TInfoSink;
33 TIntermediate(TInfoSink& i) : infoSink(i) { }
58 TInfoSink& infoSink;
Diagnostics.cpp 21 TDiagnostics::TDiagnostics(TInfoSink& infoSink) :
InfoSink.h 116 class TInfoSink {
parseConst.cpp 23 TConstTraverser(ConstantUnion* cUnion, bool singleConstParam, TOperator constructType, TInfoSink& sink, TType& t)
53 TInfoSink& infoSink;
Compiler.cpp 209 bool TCompiler::validateCallDepth(TIntermNode *root, TInfoSink &infoSink)
intermediate.h 253 class TInfoSink;
448 TIntermTyped* fold(TOperator, TIntermTyped*, TInfoSink&);
495 bool promote(TInfoSink&);
525 bool promote(TInfoSink&, const TType *funcReturnType);
ParseHelper.h 37 TParseContext(TSymbolTable& symt, TExtensionBehavior& ext, TIntermediate& interm, GLenum type, int options, bool checksPrecErrors, const char* sourcePath, TInfoSink& is) :
78 TInfoSink &infoSink() { return mDiagnostics.infoSink(); }
Intermediate.cpp 737 bool TIntermUnary::promote(TInfoSink&, const TType *funcReturnType)
799 bool TIntermBinary::promote(TInfoSink& infoSink)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
ShHandle.h 77 virtual TInfoSink& getInfoSink() { return infoSink; }
78 TInfoSink infoSink;
89 TCompiler(EShLanguage l, TInfoSink& sink) : infoSink(sink) , language(l), haveValidObjectCode(false) { }
92 virtual TInfoSink& getInfoSink() { return infoSink; }
99 TInfoSink& infoSink;
120 TLinker(EShExecutable e, TInfoSink& iSink) :
139 virtual TInfoSink& getInfoSink() { return infoSink; }
140 TInfoSink& infoSink;
InfoSink.h 139 class TInfoSink {
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/GenericCodeGen/
CodeGen.cpp 46 TInfoSink infoSink;
Link.cpp 50 TInfoSink infoSink;
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
localintermediate.h 45 class TInfoSink;
146 void output(TInfoSink&, bool tree);
313 void addToCallGraph(TInfoSink&, const TString& caller, const TString& callee);
314 void merge(TInfoSink&, TIntermediate&);
315 void finalCheck(TInfoSink&);
338 void error(TInfoSink& infoSink, const char*);
339 void mergeBodies(TInfoSink&, TIntermSequence& globals, const TIntermSequence& unitGlobals);
340 void mergeLinkerObjects(TInfoSink&, TIntermSequence& linkerObjects, const TIntermSequence& unitLinkerObjects);
342 void mergeErrorCheck(TInfoSink&, const TIntermSymbol&, const TIntermSymbol&, bool crossStage);
343 void checkCallGraphCycles(TInfoSink&)
    [all...]
SymbolTable.cpp 143 void TVariable::dump(TInfoSink& infoSink) const
152 void TFunction::dump(TInfoSink& infoSink) const
157 void TAnonMember::dump(TInfoSink& TInfoSink) const
159 TInfoSink.debug << "anonymous member " << getMemberNumber() << " of " << getAnonContainer().getName().c_str() << "\n";
162 void TSymbolTableLevel::dump(TInfoSink &infoSink) const
169 void TSymbolTable::dump(TInfoSink &infoSink) const
parseVersions.h 57 const SpvVersion& spvVersion, EShLanguage language, TInfoSink& infoSink,
111 TInfoSink& infoSink;
intermOut.cpp 79 TOutputTraverser(TInfoSink& i) : infoSink(i) { }
91 TInfoSink& infoSink;
101 static void OutputTreeText(TInfoSink& infoSink, const TIntermNode* node, const int depth)
126 TInfoSink& out = infoSink;
192 TInfoSink& out = infoSink;
380 TInfoSink& out = infoSink;
564 TInfoSink& out = infoSink;
595 static void OutputConstantUnion(TInfoSink& out, const TIntermTyped* node, const TConstUnionArray& constUnion, int depth)
    [all...]
SymbolTable.h 111 virtual void dump(TInfoSink &infoSink) const = 0;
165 virtual void dump(TInfoSink &infoSink) const;
241 virtual void dump(TInfoSink &infoSink) const;
286 virtual void dump(TInfoSink &infoSink) const;
444 void dump(TInfoSink &infoSink) const;
668 void dump(TInfoSink &infoSink) const;
ShaderLang.cpp 70 TBuiltInParseables* CreateBuiltInParseables(TInfoSink& infoSink, EShSource source)
172 bool InitializeSymbolTable(const TString& builtIns, int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TInfoSink& infoSink,
221 EShLanguage language, TInfoSink& infoSink, TSymbolTable** commonTable, TSymbolTable** symbolTables)
236 bool InitializeSymbolTables(TInfoSink& infoSink, TSymbolTable** commonTable, TSymbolTable** symbolTables, int version, EProfile profile, const SpvVersion& spvVersion, EShSource source)
273 bool AddContextSpecificSymbols(const TBuiltInResource* resources, TInfoSink& infoSink, TSymbolTable& symbolTable, int version,
299 TInfoSink infoSink;
364 bool DeduceVersionProfile(TInfoSink& infoSink, EShLanguage stage, bool versionNotFirst, int defaultVersion,
    [all...]
linkValidate.cpp 55 void TIntermediate::error(TInfoSink& infoSink, const char* message)
70 void TIntermediate::merge(TInfoSink& infoSink, TIntermediate& unit)
194 void TIntermediate::mergeBodies(TInfoSink& infoSink, TIntermSequence& globals, const TIntermSequence& unitGlobals)
218 void TIntermediate::mergeLinkerObjects(TInfoSink& infoSink, TIntermSequence& linkerObjects, const TIntermSequence& unitLinkerObjects)
278 void TIntermediate::mergeErrorCheck(TInfoSink& infoSink, const TIntermSymbol& symbol, const TIntermSymbol& unitSymbol, bool crossStage)
371 void TIntermediate::finalCheck(TInfoSink& infoSink)
489 void TIntermediate::checkCallGraphCycles(TInfoSink& infoSink)
569 void TIntermediate::inOutLocationCheck(TInfoSink& infoSink)
    [all...]
ParseHelper.h 78 TInfoSink& infoSink, bool forwardCompatible, EShMessages messages)
154 TParseContext(TSymbolTable&, TIntermediate&, bool parsingBuiltins, int version, EProfile, const SpvVersion& spvVersion, EShLanguage, TInfoSink&,
Intermediate.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Public/
ShaderLang.h 264 class TInfoSink;
413 TInfoSink* infoSink;
480 TInfoSink* infoSink;
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslParseHelper.h 47 int version, EProfile, const SpvVersion& spvVersion, EShLanguage, TInfoSink&,

Completed in 554 milliseconds

1 2