HomeSort by relevance Sort by last modified time
    Searched defs:TFunction (Results 1 - 5 of 5) sorted by null

  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
SymbolTable.cpp 152 void TFunction::dump(TInfoSink& infoSink) const
180 TFunction::~TFunction()
208 TFunction* function = (*candidate).second->getAsFunction();
278 TFunction::TFunction(const TFunction& copyOf) : TSymbol(copyOf)
297 TFunction* TFunction::clone() const
299 TFunction *function = new TFunction(*this)
    [all...]
SymbolTable.h 78 class TFunction;
91 virtual TFunction* getAsFunction() { return 0; }
92 virtual const TFunction* getAsFunction() const { return 0; }
203 class TFunction : public TSymbol {
205 explicit TFunction(TOperator o) :
209 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull) :
214 virtual TFunction* clone() const;
215 virtual ~TFunction();
217 virtual TFunction* getAsFunction() { return this; }
218 virtual const TFunction* getAsFunction() const { return this;
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
SymbolTable.cpp 172 TFunction::~TFunction()
SymbolTable.h 139 class TFunction : public TSymbol
142 TFunction(TOperator o) :
148 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull, const char *ext = "") :
151 mangledName(TFunction::mangleName(*name)),
156 virtual ~TFunction();
415 TFunction *function = new TFunction(NewPoolTString(name), *rvalue, op, ext);
  /external/mesa3d/src/glsl/
lower_variable_index_to_cond_assign.cpp 227 /* make TFunction a template parameter if you need to use other generators */
228 typedef assignment_generator TFunction;
229 const TFunction& generator;
237 switch_generator(const TFunction& generator, ir_variable *index,

Completed in 233 milliseconds