Searched defs:ValueSpec (Results 1 – 8 of 8) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/ |
D | ast.go | 897 ValueSpec struct { struct 898 Doc *CommentGroup // associated documentation; or nil 899 Names []*Ident // value names (len(Names) > 0) 900 Type Expr // value type; or nil 901 Values []Expr // initial values; or nil 902 Comment *CommentGroup // line comments; or nil 924 func (s *ValueSpec) Pos() token.Pos { return s.Names[0].Pos() } 934 func (s *ValueSpec) End() token.Pos { 948 func (*ValueSpec) specNode() {}
|
/aosp_15_r20/external/executorch/exir/ |
H A D | types.py | 18 ValueSpec: TypeAlias = Union[LeafValueSpec, List["ValueSpec"], Tuple["ValueSpec", ...]] variable
|
H A D | tracer.py | 201 meta_type: Callable[..., Iterable[ValueSpec]] = tuple,
|
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/types/errors/ |
D | generrordocs.go | 68 func walkCodes(f func(string, *ast.ValueSpec)) {
|
D | codes_test.go | 47 func walkCodes(t *testing.T, f func(string, int, *ast.ValueSpec)) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/go/types/ |
D | resolver.go | 54 func (check *Checker) arityMatch(s, init *ast.ValueSpec) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/go/printer/ |
D | nodes.go | 1617 func (p *printer) valueSpec(s *ast.ValueSpec, keepType bool) {
|
/aosp_15_r20/external/executorch/exir/emit/ |
H A D | _emitter.py | 534 def _emit_spec(self, spec: ValueSpec) -> _EmitterValue:
|