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

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
SymbolTable.cpp 180 void TFunction::dump(TInfoSink& infoSink) const
208 TFunction::~TFunction()
236 TFunction* function = (*candidate).second->getAsFunction();
306 TFunction::TFunction(const TFunction& copyOf) : TSymbol(copyOf)
328 TFunction* TFunction::clone() const
330 TFunction *function = new TFunction(*this)
    [all...]
SymbolTable.h 78 class TFunction;
97 virtual TFunction* getAsFunction() { return 0; }
98 virtual const TFunction* getAsFunction() const { return 0; }
216 class TFunction : public TSymbol {
218 explicit TFunction(TOperator o) :
222 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull) :
231 virtual TFunction* clone() const override;
232 virtual ~TFunction();
234 virtual TFunction* getAsFunction() override { return this; }
235 virtual const TFunction* getAsFunction() const override { return this;
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
SymbolTable.cpp 186 TFunction::~TFunction()
211 bool TSymbolTableLevel::insertUnmangled(TFunction *function)
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();
212 bool insertUnmangled(TFunction *function);
406 TFunction *function = new TFunction(NewPoolTString(name), *rvalue, op, ext);
  /external/mesa3d/src/compiler/glsl/
lower_variable_index_to_cond_assign.cpp 234 /* make TFunction a template parameter if you need to use other generators */
235 typedef assignment_generator TFunction;
236 const TFunction& generator;
244 switch_generator(const TFunction& generator, ir_variable *index,

Completed in 81 milliseconds