Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,517 for receivers (0.29 sec)

  1. src/crypto/internal/edwards25519/field/fe.go

    // is not a cryptographically secure group, and should only be used to interact
    // with edwards25519.Point coordinates.
    //
    // This type works similarly to math/big.Int, and all arguments and receivers
    // are allowed to alias.
    //
    // The zero value is a valid zero element.
    type Element struct {
    	// An element t represents the integer
    	//     t.l0 + t.l1*2^51 + t.l2*2^102 + t.l3*2^153 + t.l4*2^204
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			continue
    		}
    		for _, decl := range f.Decls {
    			fn, ok := decl.(*ast.FuncDecl)
    			if !ok || fn.Recv != nil {
    				// Ignore non-functions or functions with receivers.
    				continue
    			}
    			switch {
    			case strings.HasPrefix(fn.Name.Name, "Example"):
    				checkExampleName(pass, fn)
    				checkExampleOutput(pass, fn, f.Comments)
    			case strings.HasPrefix(fn.Name.Name, "Test"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. src/text/template/exec.go

    	if !receiver.IsValid() {
    		if s.tmpl.option.missingKey == mapError { // Treat invalid value as missing map key.
    			s.errorf("nil data; no entry for key %q", fieldName)
    		}
    		return zero
    	}
    	typ := receiver.Type()
    	receiver, isNil := indirect(receiver)
    	if receiver.Kind() == reflect.Interface && isNil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    buildFunctionCall {
                        // NOTE: We only need to copy the explicit receiver and not the dispatch and extension receivers as only the explicit
                        // receiver is needed by the resolver. The dispatch and extension receivers are only assigned after resolution when a
                        // candidate is selected.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

        /**
         * We shouldn't expose imported callables as they may have different [org.jetbrains.kotlin.name.CallableId]s
         * than the original callables.
         * Resolved FIR has explicitly declared original objects receivers instead of such synthetic callables.
         */
        private inline fun <reified T : FirCallableSymbol<*>, R> T.unwrapImportedFromObjectOrStatic(builder: (T) -> R): R? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/iimport.go

    	if err != nil {
    		errorf("declReader.ReadByte: %v", err)
    	}
    	return x
    }
    
    func baseType(typ types.Type) *types.Named {
    	// pointer receivers are never types.Named types
    	if p, _ := typ.(*types.Pointer); p != nil {
    		typ = p.Elem()
    	}
    	// receiver base types are always (possibly generic) types.Named types
    	n, _ := typ.(*types.Named)
    	return n
    }
    
    const blankMarker = "$"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/schedule.go

    	inBlockUses []bool
    }
    
    func (h ValHeap) Len() int      { return len(h.a) }
    func (h ValHeap) Swap(i, j int) { a := h.a; a[i], a[j] = a[j], a[i] }
    
    func (h *ValHeap) Push(x interface{}) {
    	// Push and Pop use pointer receivers because they modify the slice's length,
    	// not just its contents.
    	v := x.(*Value)
    	h.a = append(h.a, v)
    }
    func (h *ValHeap) Pop() interface{} {
    	old := h.a
    	n := len(old)
    	x := old[n-1]
    	h.a = old[0 : n-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

    import org.jetbrains.kotlin.resolve.lazy.descriptors.LazyAnnotationDescriptor
    import org.jetbrains.kotlin.resolve.sam.SamConstructorDescriptor
    import org.jetbrains.kotlin.resolve.scopes.receivers.ImplicitContextReceiver
    import org.jetbrains.kotlin.resolve.source.PsiSourceElement
    import org.jetbrains.kotlin.resolve.source.getPsi
    import org.jetbrains.kotlin.synthetic.SyntheticJavaPropertyDescriptor
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/named.go

    }
    
    // Method returns the i'th method of named type t for 0 <= i < t.NumMethods().
    //
    // For an ordinary or instantiated type t, the receiver base type of this
    // method is the named type t. For an uninstantiated generic type t, each
    // method receiver is instantiated with its receiver type parameters.
    //
    // Methods are numbered deterministically: given the same list of source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    // special receiver type types.FakeRecvType().
    func IsInterfaceMethod(f *Type) bool {
    	return f.Recv().Type == FakeRecvType()
    }
    
    // IsMethodApplicable reports whether method m can be called on a
    // value of type t. This is necessary because we compute a single
    // method set for both T and *T, but some *T methods are not
    // applicable to T receivers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top