Uses of Interface
jdk.incubator.jextract.Declaration.Variable
Packages that use Declaration.Variable
-
Uses of Declaration.Variable in jdk.incubator.jextract
Methods in jdk.incubator.jextract that return Declaration.VariableModifier and TypeMethodDescriptionstatic Declaration.VariableDeclaration.bitfield(Position pos, String name, Type type, MemoryLayout layout) Creates a new bitfield declaration with given name, type and layout.static Declaration.VariableCreates a new field declaration with given name and type.static Declaration.VariableDeclaration.globalVariable(Position pos, String name, Type type) Creates a new global variable declaration with given name and type.static Declaration.VariableCreates a new parameter declaration with given name and type.Methods in jdk.incubator.jextract that return types with arguments of type Declaration.VariableModifier and TypeMethodDescriptionDeclaration.Function.parameters()The parameters associated with this function declaration.Methods in jdk.incubator.jextract with parameters of type Declaration.VariableModifier and TypeMethodDescriptionstatic Declaration.ScopedDeclaration.bitfields(Position pos, MemoryLayout layout, Declaration.Variable... bitfields) Creates a new bitfields group declaration with given name and layout.static Declaration.FunctionDeclaration.function(Position pos, String name, Type.Function type, Declaration.Variable... params) Creates a new function declaration with given name, type and parameter declarations.default RDeclaration.Visitor.visitVariable(Declaration.Variable d, P p) Visit a variable declaration.