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

  /external/chromium_org/third_party/angle/src/compiler/
InitializeParseContext.h 13 struct TParseContext;
14 extern void SetGlobalParseContext(TParseContext* context);
15 extern TParseContext* GetGlobalParseContext();
glslang.h 7 struct TParseContext;
8 extern int glslang_initialize(TParseContext* context);
9 extern int glslang_finalize(TParseContext* context);
14 TParseContext* context);
15 extern int glslang_parse(TParseContext* context);
InitializeParseContext.cpp 29 void SetGlobalParseContext(TParseContext* context)
35 TParseContext* GetGlobalParseContext()
38 return static_cast<TParseContext*>(OS_GetTLSValue(GlobalParseContextIndex));
UnfoldShortCircuit.h 22 UnfoldShortCircuit(TParseContext &context, OutputHLSL *outputHLSL);
32 TParseContext &mContext;
TranslatorHLSL.cpp 19 TParseContext& parseContext = *GetGlobalParseContext();
debug.cpp 24 TParseContext* parseContext = GetGlobalParseContext();
ParseContext.cpp 25 bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields, const TSourceLoc& line)
118 bool TParseContext::parseMatrixFields(const TString& compString, int matSize, TMatrixFields& fields, const TSourceLoc& line)
171 void TParseContext::recover()
178 void TParseContext::error(const TSourceLoc& loc,
190 void TParseContext::warning(const TSourceLoc& loc,
200 void TParseContext::trace(const char* str)
208 void TParseContext::assignError(const TSourceLoc& line, const char* op, TString left, TString right)
219 void TParseContext::unaryOpError(const TSourceLoc& line, const char* op, TString operand)
231 void TParseContext::binaryOpError(const TSourceLoc& line, const char* op, TString left, TString right)
240 bool TParseContext::precisionErrorCheck(const TSourceLoc& line, TPrecision precision, TBasicType type)
    [all...]
OutputHLSL.h 28 OutputHLSL(TParseContext &context, const ShBuiltInResources& resources, ShShaderOutput outputType);
73 TParseContext &mContext;
glslang.l 66 %option extra-type="TParseContext*"
293 void yyerror(YYLTYPE* lloc, TParseContext* context, const char* reason) {
314 int glslang_initialize(TParseContext* context) {
323 int glslang_finalize(TParseContext* context) {
334 TParseContext* context) {
ParseContext.h 27 struct TParseContext {
28 TParseContext(TSymbolTable& symt, TExtensionBehavior& ext, TIntermediate& interm, ShShaderType type, ShShaderSpec spec, int options, bool checksPrecErrors, const char* sourcePath, TInfoSink& is) :
132 TParseContext* context);
UnfoldShortCircuit.cpp 18 UnfoldShortCircuit::UnfoldShortCircuit(TParseContext &context, OutputHLSL *outputHLSL) : mContext(context), mOutputHLSL(outputHLSL)
glslang_tab.h 217 int yyparse (TParseContext* context);
Compiler.cpp 140 TParseContext parseContext(symbolTable, extensionBehavior, intermediate,
glslang_lex.cpp     [all...]
glslang_tab.cpp 299 int yyparse (TParseContext* context);
311 extern void yyerror(YYLTYPE* yylloc, TParseContext* context, const char* reason);
    [all...]
glslang.y 48 %parse-param {TParseContext* context}
89 extern void yyerror(YYLTYPE* yylloc, TParseContext* context, const char* reason);
    [all...]
OutputHLSL.cpp 31 OutputHLSL::OutputHLSL(TParseContext &context, const ShBuiltInResources& resources, ShShaderOutput outputType)
    [all...]

Completed in 876 milliseconds