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

  /external/swiftshader/src/OpenGL/compiler/
intermediate.h 250 class TIntermTyped;
277 virtual TIntermTyped* getAsTyped() { return 0; }
305 class TIntermTyped : public TIntermNode {
307 TIntermTyped(const TType& t) : type(t) { }
308 virtual TIntermTyped* getAsTyped() { return this; }
338 static TIntermTyped *CreateIndexNode(int index);
355 TIntermNode *aInit, TIntermTyped* aCond, TIntermTyped* aExpr,
369 TIntermTyped* getCondition() { return cond; }
370 TIntermTyped* getExpression() { return expr;
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
intermediate.h 788 class TIntermTyped;
807 virtual glslang::TIntermTyped* getAsTyped() { return 0; }
819 virtual const glslang::TIntermTyped* getAsTyped() const { return 0; }
851 class TIntermTyped : public TIntermNode {
853 TIntermTyped(const TType& t) { type.shallowCopy(t); }
854 TIntermTyped(TBasicType basicType) { TType bt(basicType); type.shallowCopy(bt); }
855 virtual TIntermTyped* getAsTyped() { return this; }
856 virtual const TIntermTyped* getAsTyped() const { return this; }
876 TIntermTyped& operator=(const TIntermTyped&)
    [all...]

Completed in 49 milliseconds