Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for FieldList (0.21 sec)

  1. src/main/java/org/codelibs/fess/util/FacetResponse.java

            return queryCountMap;
        }
    
        /**
         * @return the fieldList
         */
        public List<Field> getFieldList() {
            return fieldList;
        }
    
        @Override
        public String toString() {
            return "FacetResponse [queryCountMap=" + queryCountMap + ", fieldList=" + fieldList + "]";
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            }
    
            final List<String> fieldList = new ArrayList<>(item1.getFields().length + item2.getFields().length);
            Collections.addAll(fieldList, item1.getFields());
            for (final String field : item2.getFields()) {
                if (!fieldList.contains(field)) {
                    fieldList.add(field);
                }
            }
            mergedItem.fields = fieldList.toArray(new String[fieldList.size()]);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. src/go/ast/ast.go

    		TypeParams *FieldList // type parameters; or nil
    		Params     *FieldList // (incoming) parameters; non-nil
    		Results    *FieldList // (outgoing) results; or nil
    	}
    
    	// An InterfaceType node represents an interface type.
    	InterfaceType struct {
    		Interface  token.Pos  // position of "interface" keyword
    		Methods    *FieldList // list of embedded interfaces, methods, or types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/nodes.go

    	}
    
    	// []Elem
    	SliceType struct {
    		Elem Expr
    		expr
    	}
    
    	// ...Elem
    	DotsType struct {
    		Elem Expr
    		expr
    	}
    
    	// struct { FieldList[0] TagList[0]; FieldList[1] TagList[1]; ... }
    	StructType struct {
    		FieldList []*Field
    		TagList   []*BasicLit // i >= len(TagList) || TagList[i] == nil means no tag for field i
    		expr
    	}
    
    	// Name Type
    	//      Type
    	Field struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/go/parser/resolver.go

    	r.declareList(typ.Results, ast.Var)
    }
    
    func (r *resolver) resolveList(list *ast.FieldList) {
    	if list == nil {
    		return
    	}
    	for _, f := range list.List {
    		if f.Type != nil {
    			ast.Walk(r, f.Type)
    		}
    	}
    }
    
    func (r *resolver) declareList(list *ast.FieldList, kind ast.ObjKind) {
    	if list == nil {
    		return
    	}
    	for _, f := range list.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/struct.go

    // Implementation
    
    func (s *Struct) markComplete() {
    	if s.fields == nil {
    		s.fields = make([]*Var, 0)
    	}
    }
    
    func (check *Checker) structType(styp *Struct, e *syntax.StructType) {
    	if e.FieldList == nil {
    		styp.markComplete()
    		return
    	}
    
    	// struct fields and tags
    	var fields []*Var
    	var tags []string
    
    	// for double-declaration checks
    	var fset objset
    
    	// current field typ and tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    			tok(n.Ellipsis, len("...")))
    
    	case *ast.EmptyStmt:
    		// nop
    
    	case *ast.ExprStmt:
    		// nop
    
    	case *ast.Field:
    		// TODO(adonovan): Field.{Doc,Comment,Tag}?
    
    	case *ast.FieldList:
    		children = append(children,
    			tok(n.Opening, len("(")), // or len("[")
    			tok(n.Closing, len(")"))) // or len("]")
    
    	case *ast.File:
    		// TODO test: Doc
    		children = append(children,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    	if p.trace {
    		defer un(trace(p, "Result"))
    	}
    
    	if p.tok == token.LPAREN {
    		return p.parseParameters(scope, false)
    	}
    
    	typ := p.tryType()
    	if typ != nil {
    		list := make([]*ast.Field, 1)
    		list[0] = &ast.Field{Type: typ}
    		return &ast.FieldList{List: list}
    	}
    
    	return nil
    }
    
    func (p *parser) parseSignature(scope *ast.Scope) (params, results *ast.FieldList) {
    	if p.trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/cmd/doc/pkg.go

    		typ.Methods = trimUnexportedFields(typ.Methods, true)
    	}
    }
    
    // trimUnexportedFields returns the field list trimmed of unexported fields.
    func trimUnexportedFields(fields *ast.FieldList, isInterface bool) *ast.FieldList {
    	what := "methods"
    	if !isInterface {
    		what = "fields"
    	}
    
    	trimmed := false
    	list := make([]*ast.Field, 0, len(fields.List))
    	for _, field := range fields.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/printer.go

    	case *StructType:
    		p.print(_Struct)
    		if len(n.FieldList) > 0 && p.linebreaks {
    			p.print(blank)
    		}
    		p.print(_Lbrace)
    		if len(n.FieldList) > 0 {
    			if p.linebreaks {
    				p.print(newline, indent)
    				p.printFieldList(n.FieldList, n.TagList, _Semi)
    				p.print(outdent, newline)
    			} else {
    				p.printFieldList(n.FieldList, n.TagList, _Semi)
    			}
    		}
    		p.print(_Rbrace)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top