Home
last modified time | relevance | path

Searched refs:implicitThis (Results 1 – 4 of 4) sorted by relevance

/external/deqp-deps/glslang/SPIRV/
DspvIR.h310 void setImplicitThis() { implicitThis = true; } in setImplicitThis()
311 bool hasImplicitThis() const { return implicitThis; } in hasImplicitThis()
336 …bool implicitThis; // true if this is a member function expecting to be passed a 'this' as the fi… variable
397 : parent(parent), functionInstruction(id, resultType, OpFunction), implicitThis(false) in Function()
DGlslangToSpv.cpp3769 … bool implicitThis = (int)parameters.size() > 0 && parameters[0]->getAsSymbolNode()->getName() == in makeFunctions() local
3776 if (originalParam(paramType.getQualifier().storage, paramType, implicitThis && p == 0)) in makeFunctions()
3791 if (implicitThis) in makeFunctions()
/external/deqp-deps/glslang/glslang/MachineIndependent/
DSymbolTable.h222 …defined(false), prototyped(false), implicitThis(false), illegalImplicitThis(false), defaultParamCo… in TFunction()
227 …defined(false), prototyped(false), implicitThis(false), illegalImplicitThis(false), defaultParamCo… in TSymbol()
282 virtual void setImplicitThis() { assert(writable); implicitThis = true; } in setImplicitThis()
283 virtual bool hasImplicitThis() const { return implicitThis; } in hasImplicitThis()
312 bool implicitThis; // True if this function is allowed to see all members of 'this' variable
DSymbolTable.cpp329 implicitThis = copyOf.implicitThis; in TFunction()