Home
last modified time | relevance | path

Searched refs:TIntermPreprocessorDirective (Results 1 – 14 of 14) sorted by relevance

/external/angle/src/compiler/translator/
DIntermNode.h59 class TIntermPreprocessorDirective; variable
108 virtual TIntermPreprocessorDirective *getAsPreprocessorDirective() { return nullptr; } in getAsPreprocessorDirective()
998 class TIntermPreprocessorDirective final : public TIntermNode
1002 TIntermPreprocessorDirective(PreprocessorDirective directive, ImmutableString command);
1003 ~TIntermPreprocessorDirective() final;
1009 TIntermPreprocessorDirective *getAsPreprocessorDirective() final { return this; } in getAsPreprocessorDirective()
1016 TIntermPreprocessorDirective *deepCopy() const override in deepCopy()
1018 return new TIntermPreprocessorDirective(*this); in deepCopy()
1025 TIntermPreprocessorDirective(const TIntermPreprocessorDirective &);
DOutputGLSLBase.h77 void visitPreprocessorDirective(TIntermPreprocessorDirective *node) override;
DIntermNode.cpp3969 TIntermPreprocessorDirective::TIntermPreprocessorDirective(PreprocessorDirective directive, in TIntermPreprocessorDirective() function in sh::TIntermPreprocessorDirective
3974 TIntermPreprocessorDirective::TIntermPreprocessorDirective(const TIntermPreprocessorDirective &node) in TIntermPreprocessorDirective() function in sh::TIntermPreprocessorDirective
3975 : TIntermPreprocessorDirective(node.mDirective, node.mCommand) in TIntermPreprocessorDirective()
3978 TIntermPreprocessorDirective::~TIntermPreprocessorDirective() = default;
3980 size_t TIntermPreprocessorDirective::getChildCount() const in getChildCount()
3985 TIntermNode *TIntermPreprocessorDirective::getChildNode(size_t index) const in getChildNode()
DValidateAST.cpp46 void visitPreprocessorDirective(TIntermPreprocessorDirective *node) override;
642 void ValidateAST::visitPreprocessorDirective(TIntermPreprocessorDirective *node) in visitPreprocessorDirective()
DOutputGLSLBase.cpp1043 void TOutputGLSLBase::visitPreprocessorDirective(TIntermPreprocessorDirective *node) in visitPreprocessorDirective()
DOutputSPIRV.cpp210 void visitPreprocessorDirective(TIntermPreprocessorDirective *node) override;
5792 void OutputSPIRVTraverser::visitPreprocessorDirective(TIntermPreprocessorDirective *node) in visitPreprocessorDirective()
/external/angle/src/compiler/translator/tree_util/
DAsNode.h68 struct AsNode<TIntermPreprocessorDirective>
70 static ANGLE_INLINE TIntermPreprocessorDirective *exec(TIntermNode *node)
DIntermTraverse.cpp114 void TIntermPreprocessorDirective::traverse(TIntermTraverser *it) in traverse()
207 bool TIntermPreprocessorDirective::visit(Visit visit, TIntermTraverser *it) in visit()
DIntermTraverse.h68 virtual void visitPreprocessorDirective(TIntermPreprocessorDirective *node) {} in visitPreprocessorDirective()
/external/angle/src/compiler/translator/TranslatorMetalDirect/
DNodeType.h63 void visitPreprocessorDirective(TIntermPreprocessorDirective *) override in visitPreprocessorDirective() argument
DIntermRebuild.h217 virtual PreResult visitPreprocessorDirectivePre(TIntermPreprocessorDirective &node);
236 virtual PostResult visitPreprocessorDirectivePost(TIntermPreprocessorDirective &node);
DName.cpp209 void visitPreprocessorDirective(TIntermPreprocessorDirective *) override { UNREACHABLE(); } in visitPreprocessorDirective() argument
DIntermRebuild.cpp859 PreResult TIntermRebuild::visitPreprocessorDirectivePre(TIntermPreprocessorDirective &node) in visitPreprocessorDirectivePre()
952 PostResult TIntermRebuild::visitPreprocessorDirectivePost(TIntermPreprocessorDirective &node) in visitPreprocessorDirectivePost()
DSeparateCompoundExpressions.cpp519 PostResult visitPreprocessorDirectivePost(TIntermPreprocessorDirective &node) override in visitPreprocessorDirectivePost()