Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FieldFilter (0.2 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/filters/KotlinInternalFilter.groovy

    import japicmp.filter.BehaviorFilter
    import japicmp.filter.ClassFilter
    import japicmp.filter.FieldFilter
    import javassist.CtBehavior
    import javassist.CtClass
    import javassist.CtField
    
    /**
     * Matches Kotlin <code>internal</code> members.
     */
    class KotlinInternalFilter implements ClassFilter, FieldFilter, BehaviorFilter {
    
        @Override
        boolean matches(CtClass ctClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  2. src/go/ast/print.go

    // This file contains printing support for ASTs.
    
    package ast
    
    import (
    	"fmt"
    	"go/token"
    	"io"
    	"os"
    	"reflect"
    )
    
    // A FieldFilter may be provided to [Fprint] to control the output.
    type FieldFilter func(name string, value reflect.Value) bool
    
    // NotNilFilter is a [FieldFilter] that returns true for field values
    // that are not nil; it returns false otherwise.
    func NotNilFilter(_ string, v reflect.Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ExprStmt.X", Field, 0},
    		{"Field", Type, 0},
    		{"Field.Comment", Field, 0},
    		{"Field.Doc", Field, 0},
    		{"Field.Names", Field, 0},
    		{"Field.Tag", Field, 0},
    		{"Field.Type", Field, 0},
    		{"FieldFilter", Type, 0},
    		{"FieldList", Type, 0},
    		{"FieldList.Closing", Field, 0},
    		{"FieldList.List", Field, 0},
    		{"FieldList.Opening", Field, 0},
    		{"File", Type, 0},
    		{"File.Comments", Field, 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, 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)
    pkg go/ast, func IsExported(string) bool
    pkg go/ast, func MergePackageFiles(*Package, MergeMode) *File
    pkg go/ast, func NewIdent(string) *Ident
    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