/external/deqp/framework/opengl/ |
D | gluVarType.hpp | 256 struct VariableDeclaration struct 258 …VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_ = STORAGE… 260 bool operator== (const VariableDeclaration& other) const; 261 bool operator!= (const VariableDeclaration& other) const; 280 std::vector<glu::VariableDeclaration> variables; argument 332 std::ostream& operator<< (std::ostream& str, const VariableDeclaration& decl);
|
D | gluVarType.cpp | 259 VariableDeclaration::VariableDeclaration (const VarType& varType_, const std::string& name_, Storag… in VariableDeclaration() function in glu::VariableDeclaration 269 bool VariableDeclaration::operator== (const VariableDeclaration& other) const in operator ==() 279 bool VariableDeclaration::operator!= (const VariableDeclaration& other) const in operator !=() 327 std::ostream& operator<< (std::ostream& str, const VariableDeclaration& decl) in operator <<()
|
/external/deqp/modules/gles31/functional/ |
D | es31fProgramInterfaceDefinitionUtil.hpp | 48 …VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.d… in VariablePathComponent() 59 …const glu::VariableDeclaration* getDeclaration (void) const { DE_ASSERT(isDeclaration()); return… in getDeclaration() 75 const glu::VariableDeclaration* declaration; 97 bool matchesFilter (const glu::VariableDeclaration& variable) const;
|
D | es31fSeparateShaderTests.cpp | 82 using glu::VariableDeclaration; 200 void printInputColor (ostringstream& oss, const VariableDeclaration& input) in printInputColor() 288 vector<VariableDeclaration> vtxOutputs; 289 vector<VariableDeclaration> frgInputs; 358 VariableDeclaration(varType, vtxName, STORAGE_OUT, getGluInterpolation(vtxCompatInterp), loc)); in genVaryingInterface() 360 VariableDeclaration(varType, frgName, STORAGE_IN, getGluInterpolation(frgInterp), loc)); in genVaryingInterface() 369 vector<VariableDeclaration> varyingCompatVtxOutputs (const VaryingInterface& varyings) in varyingCompatVtxOutputs() 371 vector<VariableDeclaration> outputs = varyings.vtxOutputs; in varyingCompatVtxOutputs() 402 oss << VariableDeclaration(varType, varName, STORAGE_UNIFORM) << ";\n"; in printFloatDeclaration() 404 oss << VariableDeclaration(varType, varName, STORAGE_CONST) in printFloatDeclaration() [all …]
|
D | es31fProgramInterfaceDefinition.hpp | 59 std::vector<glu::VariableDeclaration> variables;
|
D | es31fProgramInterfaceQueryTests.cpp | 547 …glu::VariableDeclaration variable (glu::VarType(basicType, getDataTypeDefaultPrecision(basi… in generateProgramDefinitionFromResource() 679 variable = glu::VariableDeclaration(glu::VarType(structPtr), "target"); in generateProgramDefinitionFromResource() 1694 …precedingInterfaceBlock.variables.push_back(glu::VariableDeclaration(glu::VarType(glu::TYPE_FLOAT_… in init() 1698 …precedingInterfaceBlock.variables.push_back(glu::VariableDeclaration(glu::VarType(glu::VarType(glu… in init() 1700 …precedingInterfaceBlock.variables.push_back(glu::VariableDeclaration(glu::VarType(glu::VarType(glu… in init() 1723 …targetInterfaceBlock.variables.push_back(glu::VariableDeclaration(glu::VarType(glu::TYPE_FLOAT_VEC… in init() 1728 …targetInterfaceBlock.variables.push_back(glu::VariableDeclaration(glu::VarType(glu::VarType(glu::T… in init() 1737 …targetInterfaceBlock.variables.push_back(glu::VariableDeclaration(glu::VarType(glu::VarType(struct… in init() 1742 …targetInterfaceBlock.variables.push_back(glu::VariableDeclaration(glu::VarType(glu::VarType(glu::T… in init() 1755 …trailingInterfaceBlock.variables.push_back(glu::VariableDeclaration(glu::VarType(glu::TYPE_FLOAT_V… in init() [all …]
|
D | es31fProgramInterfaceDefinitionUtil.cpp | 99 bool VariableSearchFilter::matchesFilter (const glu::VariableDeclaration& variable) const in matchesFilter() 733 …tor<VariablePathComponent>& typePath, const std::string& path, const glu::VariableDeclaration& var) in traverseVariablePath() 979 bool operator() (const glu::VariableDeclaration& d) const in operator ()()
|
D | es31fProgramInterfaceDefinition.cpp | 75 static bool containsMatchingSubtype (const std::vector<glu::VariableDeclaration>& decls, bool (*pre… in containsMatchingSubtype()
|
/external/v8/src/ast/ |
D | ast-literal-reindexer.cc | 14 void AstLiteralReindexer::VisitVariableDeclaration(VariableDeclaration* node) { in VisitVariableDeclaration()
|
D | ast-expression-rewriter.cc | 53 VariableDeclaration* node) { in VisitVariableDeclaration()
|
D | prettyprinter.cc | 67 void CallPrinter::VisitVariableDeclaration(VariableDeclaration* node) {} in VisitVariableDeclaration() 706 void AstPrinter::VisitVariableDeclaration(VariableDeclaration* node) { in VisitVariableDeclaration()
|
D | ast-traversal-visitor.h | 125 VariableDeclaration* decl) { in VisitVariableDeclaration()
|
D | ast-numbering.cc | 85 void AstNumberingVisitor::VisitVariableDeclaration(VariableDeclaration* node) { in VisitVariableDeclaration()
|
D | ast.h | 40 V(VariableDeclaration) \ 534 class VariableDeclaration final : public Declaration { 538 VariableDeclaration(VariableProxy* proxy, Scope* scope, int pos) in VariableDeclaration() function 3131 VariableDeclaration* NewVariableDeclaration(VariableProxy* proxy, in NewVariableDeclaration() 3133 return new (zone_) VariableDeclaration(proxy, scope, pos); in NewVariableDeclaration()
|
/external/v8/src/compiler/ |
D | ast-loop-assignment-analyzer.cc | 56 void ALAA::VisitVariableDeclaration(VariableDeclaration* leaf) {} in VisitVariableDeclaration()
|
/external/v8/src/parsing/ |
D | pattern-rewriter.cc | 691 NOT_A_PATTERN(VariableDeclaration)
|
/external/v8/testing/gmock/scripts/generator/cpp/ |
D | ast.py | 252 class VariableDeclaration(_GenericDeclaration): class 735 return VariableDeclaration(pos_token.start, pos_token.end,
|
/external/googletest/googlemock/scripts/generator/cpp/ |
D | ast.py | 252 class VariableDeclaration(_GenericDeclaration): class 735 return VariableDeclaration(pos_token.start, pos_token.end,
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
D | ast.py | 251 class VariableDeclaration(_GenericDeclaration): class 734 return VariableDeclaration(pos_token.start, pos_token.end,
|
/external/v8/src/crankshaft/ |
D | typing.cc | 789 void AstTyper::VisitVariableDeclaration(VariableDeclaration* declaration) { in VisitVariableDeclaration()
|
/external/deqp/modules/glshared/ |
D | glsShaderExecUtil.cpp | 307 …glu::VariableDeclaration decl (output.varType, outVarName, glu::STORAGE_OUT, glu::INTERPOLATION_L… in generateFragShaderOutputDecl()
|
/external/v8/src/asmjs/ |
D | asm-wasm-builder.cc | 111 void VisitVariableDeclaration(VariableDeclaration* decl) {} in VisitVariableDeclaration()
|
D | asm-typer.cc | 669 VariableDeclaration* var_decl = decl->AsVariableDeclaration(); in ValidateModule()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderExecutor.cpp | 211 …glu::VariableDeclaration decl (output.varType, outVarName, glu::STORAGE_OUT, glu::INTERPOLATION_L… in generateFragShaderOutputDecl()
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 792 void BytecodeGenerator::VisitVariableDeclaration(VariableDeclaration* decl) { in VisitVariableDeclaration()
|