Searched refs:typePath (Results 1 – 6 of 6) sorted by relevance
/external/proguard/src/proguard/classfile/attribute/annotation/ |
D | TypeAnnotation.java | 37 public TypePathInfo[] typePath; field in TypeAnnotation 55 TypePathInfo[] typePath) in TypeAnnotation() argument 60 this.typePath = typePath; in TypeAnnotation() 113 for (int index = 0; index < typePath.length; index++) in typePathInfosAccept() 117 typePathVisitor.visitTypePathInfo(clazz, this, typePath[index]); in typePathInfosAccept() 127 for (int index = 0; index < typePath.length; index++) in typePathInfosAccept() 131 typePathVisitor.visitTypePathInfo(clazz, field, this, typePath[index]); in typePathInfosAccept() 141 for (int index = 0; index < typePath.length; index++) in typePathInfosAccept() 145 typePathVisitor.visitTypePathInfo(clazz, method, this, typePath[index]); in typePathInfosAccept() 155 for (int index = 0; index < typePath.length; index++) in typePathInfosAccept() [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fProgramInterfaceDefinitionUtil.cpp | 691 static bool traverseVariablePath (std::vector<VariablePathComponent>& typePath, const char* subPath… in traverseVariablePath() argument 695 typePath.push_back(VariablePathComponent(&type)); in traverseVariablePath() 710 …return traverseVariablePath(typePath, subPath + tokenizer.getCurrentTokenEndLocation(), type.getSt… in traverseVariablePath() 727 …return traverseVariablePath(typePath, subPath + tokenizer.getCurrentTokenEndLocation(), type.getEl… in traverseVariablePath() 733 static bool traverseVariablePath (std::vector<VariablePathComponent>& typePath, const std::string& … in traverseVariablePath() argument 738 typePath.push_back(VariablePathComponent(&var)); in traverseVariablePath() 739 return traverseVariablePath(typePath, path.c_str() + var.name.length(), var.varType); in traverseVariablePath() 742 static bool traverseShaderVariablePath (std::vector<VariablePathComponent>& typePath, const Program… in traverseShaderVariablePath() argument 747 if (traverseVariablePath(typePath, path, shader->getDefaultBlock().variables[varNdx])) in traverseShaderVariablePath() 770 …typePath.push_back(VariablePathComponent(&shader->getDefaultBlock().interfaceBlocks[interfaceNdx])… in traverseShaderVariablePath() [all …]
|
D | es31fProgramInterfaceDefinitionUtil.hpp | 178 …Name (std::vector<ProgramInterfaceDefinition::VariablePathComponent>& typePath, const ProgramInt…
|
/external/proguard/src/proguard/classfile/io/ |
D | ProgramClassReader.java | 809 typeAnnotation.typePath = new TypePathInfo[u1pathLength]; in visitTypeAnnotation() 814 typeAnnotation.typePath[index] = typePathInfo; in visitTypeAnnotation()
|
D | ProgramClassWriter.java | 626 dataOutput.writeByte(typeAnnotation.typePath.length); in visitTypeAnnotation()
|
/external/proguard/src/proguard/classfile/visitor/ |
D | ClassPrinter.java | 970 println("Type path (count = " + typeAnnotation.typePath.length + "):"); in visitTypeAnnotation()
|