Home
last modified time | relevance | path

Searched refs:typePath (Results 1 – 13 of 13) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/annotation/
DTypeAnnotation.java37 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/
DTypeAnnotationsAttribute.java116 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/
DPrefixReferenceScanner.java91 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/
Des31fProgramInterfaceDefinitionUtil.cpp718 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()
797typePath.push_back(VariablePathComponent(&shader->getDefaultBlock().interfaceBlocks[interfaceNdx])… in traverseShaderVariablePath()
[all …]
Des31fProgramInterfaceDefinitionUtil.hpp179 …Name (std::vector<ProgramInterfaceDefinition::VariablePathComponent>& typePath, const ProgramInt…
/external/javassist/src/main/javassist/bytecode/annotation/
DTypeAnnotationsWriter.java162 public void typePath(int pathLength) throws IOException { in typePath() method in TypeAnnotationsWriter
/external/desugar/java/com/google/devtools/build/android/desugar/
DInterfaceDesugaring.java523 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()
DJava7Compatibility.java235 int typeRef, TypePath typePath, String desc, boolean visible) { in visitTypeAnnotation() argument
/external/turbine/javatests/com/google/turbine/lower/
DLowerTest.java327 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()
DIntegrationTestSupport.java267 .thenComparing(a -> String.valueOf(a.typePath)) in sortTypeAnnotations()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java809 typeAnnotation.typePath = new TypePathInfo[u1pathLength]; in visitTypeAnnotation()
814 typeAnnotation.typePath[index] = typePathInfo; in visitTypeAnnotation()
DProgramClassWriter.java626 dataOutput.writeByte(typeAnnotation.typePath.length); in visitTypeAnnotation()
/external/proguard/src/proguard/classfile/visitor/
DClassPrinter.java970 println("Type path (count = " + typeAnnotation.typePath.length + "):"); in visitTypeAnnotation()