Searched refs:implicitThis (Results 1 – 4 of 4) sorted by relevance
/external/deqp-deps/glslang/SPIRV/ |
D | spvIR.h | 310 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()
|
D | GlslangToSpv.cpp | 3769 … 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/ |
D | SymbolTable.h | 222 …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
|
D | SymbolTable.cpp | 329 implicitThis = copyOf.implicitThis; in TFunction()
|