Home
last modified time | relevance | path

Searched refs:SkipObjectResolution (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/go/parser/
Dperformance_test.go35 …if _, err := ParseFile(token.NewFileSet(), "", src, ParseComments|SkipObjectResolution); err != ni…
46 file, err := ParseFile(fset, "", src, SkipObjectResolution)
Dinterface.go56SkipObjectResolution // skip deprecated identifier resolution; see Pa… const
Dparser_test.go677 _, err := ParseFile(fset, "", input, ParseComments|SkipObjectResolution)
Dparser.go2908 if p.mode&SkipObjectResolution == 0 {
/aosp_15_r20/prebuilts/go/linux-x86/src/go/internal/srcimporter/
Dsrcimporter.go185 files[i], errors[i] = parser.ParseFile(p.fset, filepath, src, parser.SkipObjectResolution)
243 …arser.ParseFile(p.fset, filepath.Join(tmpdir, "_cgo_gotypes.go"), nil, parser.SkipObjectResolution)
/aosp_15_r20/prebuilts/go/linux-x86/src/go/format/
Dformat.go41 const parserMode = parser.ParseComments | parser.SkipObjectResolution
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/cgo/
Dast.go56 ast1 := parse(abspath, src, parser.SkipObjectResolution|parser.ParseComments)
57 ast2 := parse(abspath, src, parser.SkipObjectResolution)
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/
Dbuildtag.go40 … f, err := parser.ParseFile(pass.Fset, name, nil, parser.ParseComments|parser.SkipObjectResolution)
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/
Dcgocall.go184 f, err := parser.ParseFile(fset, filename, nil, parser.SkipObjectResolution)
/aosp_15_r20/prebuilts/go/linux-x86/api/
Dgo1.17.txt29 pkg go/parser, const SkipObjectResolution = 64
30 pkg go/parser, const SkipObjectResolution Mode
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/gofmt/
Dgofmt.go86 parserMode |= parser.SkipObjectResolution
/aosp_15_r20/prebuilts/go/linux-x86/src/go/printer/
Dprinter_test.go834 …rser.ParseFile(fset, fname, src, parser.ParseComments|parser.AllErrors|parser.SkipObjectResolution)
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/load/
Dtest.go723 …r := parser.ParseFile(testFileSet, filename, src, parser.ParseComments|parser.SkipObjectResolution)
/aosp_15_r20/external/bazelbuild-rules_go/third_party/
H A Dorg_golang_x_tools-deletegopls.patch19304 -// The parser.SkipObjectResolution mode flag is not supported before Go 1.17.
19321 -const skipObjectResolution = parser.SkipObjectResolution