Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FilterFile (0.19 sec)

  1. src/go/ast/filter.go

    // always removed. The [File.Comments] list is not changed.
    //
    // FilterFile reports whether there are any top-level declarations
    // left after filtering.
    func FilterFile(src *File, f Filter) bool {
    	return filterFile(src, f, false)
    }
    
    func filterFile(src *File, f Filter, export bool) bool {
    	j := 0
    	for _, d := range src.Decls {
    		if filterDecl(d, f, export) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

        static final String PROPERTIES_FILTER_FLAG = "filterProperties"
        static final String META_INF_FILTER_FLAG = "filterMetaInf"
        static final String FILE_FILTER_FLAG = "filterFile"
    
        enum Api {
            RUNTIME, ANNOTATION
        }
    
        class ProjectWithRuntimeClasspathNormalization {
            final TestFile root
            final TestFile buildCacheDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"File.Name", Field, 0},
    		{"File.Package", Field, 0},
    		{"File.Scope", Field, 0},
    		{"File.Unresolved", Field, 0},
    		{"FileExports", Func, 0},
    		{"Filter", Type, 0},
    		{"FilterDecl", Func, 0},
    		{"FilterFile", Func, 0},
    		{"FilterFuncDuplicates", Const, 0},
    		{"FilterImportDuplicates", Const, 0},
    		{"FilterPackage", Func, 0},
    		{"FilterUnassociatedComments", Const, 0},
    		{"ForStmt", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg go/ast, const SEND ChanDir
    pkg go/ast, const Typ ObjKind
    pkg go/ast, const Var ObjKind
    pkg go/ast, func FileExports(*File) bool
    pkg go/ast, func FilterDecl(Decl, Filter) bool
    pkg go/ast, func FilterFile(*File, Filter) bool
    pkg go/ast, func FilterPackage(*Package, Filter) bool
    pkg go/ast, func Fprint(io.Writer, *token.FileSet, interface{}, FieldFilter) error
    pkg go/ast, func Inspect(Node, func(Node) bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top