/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/javassist/src/main/javassist/bytecode/ |
D | TypeAnnotationsAttribute.java | 116 pos = subWalker.typePath(pos); in annotationArray() 226 final int typePath(int pos) throws Exception { in typePath() method in TypeAnnotationsAttribute.SubWalker 228 return typePath(pos, len); in typePath() 231 int typePath(int pos, int pathLength) throws Exception { in typePath() method in TypeAnnotationsAttribute.SubWalker 235 typePath(pos, kind, index); in typePath() 242 void typePath(int pos, int typePathKind, int typeArgumentIndex) throws Exception {} in typePath() method in TypeAnnotationsAttribute.SubWalker 258 pos = sub.typePath(pos); in annotationArray() 282 pos = sub.typePath(pos); in annotationArray() 371 int typePath(int pos, int pathLength) throws Exception { in typePath() method in TypeAnnotationsAttribute.SubCopier 372 writer.typePath(pathLength); in typePath() [all …]
|
/external/desugar/java/com/google/devtools/build/android/desugar/scan/ |
D | PrefixReferenceScanner.java | 91 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument 247 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument 317 int typeRef, TypePath typePath, String desc, boolean visible) { in visitInsnAnnotation() argument 331 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTryCatchAnnotation() argument 345 TypePath typePath, in visitLocalVariableAnnotation() argument 370 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument
|
/external/deqp/modules/gles31/functional/ |
D | es31fProgramInterfaceDefinitionUtil.cpp | 718 static bool traverseVariablePath (std::vector<VariablePathComponent>& typePath, const char* subPath… in traverseVariablePath() argument 722 typePath.push_back(VariablePathComponent(&type)); in traverseVariablePath() 737 …return traverseVariablePath(typePath, subPath + tokenizer.getCurrentTokenEndLocation(), type.getSt… in traverseVariablePath() 754 …return traverseVariablePath(typePath, subPath + tokenizer.getCurrentTokenEndLocation(), type.getEl… in traverseVariablePath() 760 static bool traverseVariablePath (std::vector<VariablePathComponent>& typePath, const std::string& … in traverseVariablePath() argument 765 typePath.push_back(VariablePathComponent(&var)); in traverseVariablePath() 766 return traverseVariablePath(typePath, path.c_str() + var.name.length(), var.varType); in traverseVariablePath() 769 static bool traverseShaderVariablePath (std::vector<VariablePathComponent>& typePath, const Program… in traverseShaderVariablePath() argument 774 if (traverseVariablePath(typePath, path, shader->getDefaultBlock().variables[varNdx])) in traverseShaderVariablePath() 797 …typePath.push_back(VariablePathComponent(&shader->getDefaultBlock().interfaceBlocks[interfaceNdx])… in traverseShaderVariablePath() [all …]
|
D | es31fProgramInterfaceDefinitionUtil.hpp | 179 …Name (std::vector<ProgramInterfaceDefinition::VariablePathComponent>& typePath, const ProgramInt…
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
D | TypeAnnotationsWriter.java | 162 public void typePath(int pathLength) throws IOException { in typePath() method in TypeAnnotationsWriter
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | InterfaceDesugaring.java | 523 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument 524 AnnotationVisitor dest = super.visitTypeAnnotation(typeRef, typePath, desc, visible); in visitTypeAnnotation() 526 annotationOnlyDest.visitTypeAnnotation(typeRef, typePath, desc, visible); in visitTypeAnnotation()
|
D | Java7Compatibility.java | 235 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument
|
/external/turbine/javatests/com/google/turbine/lower/ |
D | LowerTest.java | 327 public void typePath() throws Exception { in typePath() method in LowerTest 356 int typeRef, TypePath typePath, String desc, boolean visible) { in typePath() 357 path[0] = typePath; in typePath()
|
D | IntegrationTestSupport.java | 267 .thenComparing(a -> String.valueOf(a.typePath)) in sortTypeAnnotations()
|
/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()
|