Home
last modified time | relevance | path

Searched refs:TypeDef (Results 1 – 10 of 10) sorted by relevance

/external/smali/dexlib2/accessorTestGenerator/src/main/java/org/jf/dexlib2/
DAccessorTestGenerator.java56 private static class TypeDef { class in AccessorTestGenerator
60 …public TypeDef(String name, UnaryOperation[] unaryOperations, BinaryOperation[] binaryOperations) { in TypeDef() method in AccessorTestGenerator.TypeDef
106 private static final TypeDef[] types = new TypeDef[] {
107 new TypeDef("boolean", new UnaryOperation[0], booleanOperations),
108 new TypeDef("byte", unaryOperations, integralOperations),
109 new TypeDef("char", unaryOperations, integralOperations),
110 new TypeDef("short", unaryOperations, integralOperations),
111 new TypeDef("int", unaryOperations, integralOperations),
112 new TypeDef("long", unaryOperations, integralOperations),
113 new TypeDef("float", unaryOperations, floatOperations),
[all …]
/external/syzkaller/pkg/ast/
Dast.go138 type TypeDef struct { struct
148 func (n *TypeDef) Info() (Pos, string, string) { argument
Dclone.go58 func (n *TypeDef) Clone() Node {
71 return &TypeDef{
Dwalk.go50 func (n *TypeDef) Walk(cb func(Node)) {
Dparser.go251 func (p *parser) parseTypeDef() *TypeDef {
276 return &TypeDef{
Dformat.go85 func (typedef *TypeDef) serialize(w io.Writer) {
/external/syzkaller/pkg/compiler/
Dcompiler.go58 typedefs: make(map[string]*ast.TypeDef),
123 typedefs map[string]*ast.TypeDef
299 case *ast.TypeDef:
Dcheck.go70 case *ast.Resource, *ast.Struct, *ast.TypeDef:
99 case *ast.TypeDef:
153 case *ast.TypeDef:
193 case *ast.TypeDef:
247 case *ast.Call, *ast.Struct, *ast.Resource, *ast.TypeDef:
Dconsts.go67 case *ast.Call, *ast.Struct, *ast.Resource, *ast.TypeDef:
178 case *ast.Resource, *ast.Struct, *ast.Call, *ast.TypeDef:
Dtypes.go828 builtinTypedefs = make(map[string]*ast.TypeDef)
887 case *ast.TypeDef: