Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for IncDec (0.15 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     *   // }
     *
     *   i++
     *   // partiallyAppliedSymbol: {
     *   //   symbol: `i`
     *   //   dispatchReceiver: null
     *   //   extensionReceiver: null
     *   // }
     *   // accessType: IncDec {
     *   //   kind: INC
     *   //   precedence: POSTFIX
     *   //   operationSymbol: Int.inc()
     *   // }
     * }
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/fmt.go

    		n := n.(*AssignStmt)
    		if n.Def && !complexinit {
    			fmt.Fprintf(s, "%v := %v", n.X, n.Y)
    		} else {
    			fmt.Fprintf(s, "%v = %v", n.X, n.Y)
    		}
    
    	case OASOP:
    		n := n.(*AssignOpStmt)
    		if n.IncDec {
    			if n.AsOp == OADD {
    				fmt.Fprintf(s, "%v++", n.X)
    			} else {
    				fmt.Fprintf(s, "%v--", n.X)
    			}
    			break
    		}
    
    		fmt.Fprintf(s, "%v %v= %v", n.X, n.AsOp, n.Y)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/typecheck.go

    	case ir.ODEREF:
    		n := n.(*ir.StarExpr)
    		return tcStar(n, top)
    
    	// x op= y
    	case ir.OASOP:
    		n := n.(*ir.AssignOpStmt)
    		n.X, n.Y = Expr(n.X), Expr(n.Y)
    		checkassign(n.X)
    		if n.IncDec && !okforarith[n.X.Type().Kind()] {
    			base.Errorf("invalid operation: %v (non-numeric type %v)", n, n.X.Type())
    			return n
    		}
    		switch n.AsOp {
    		case ir.OLSH, ir.ORSH:
    			n.X, n.Y, _ = tcShift(n, n.X, n.Y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    		p.As == AANDB || p.As == AANDL || p.As == AANDQ || p.As == AANDW
    
    	incDec := p.As == AINCB || p.As == AINCL || p.As == AINCQ || p.As == AINCW ||
    		p.As == ADECB || p.As == ADECL || p.As == ADECQ || p.As == ADECW
    
    	if !cmpAddSub && !testAnd && !incDec {
    		return false, 0
    	}
    
    	if !incDec {
    		var argOne obj.AddrType
    		var argTwo obj.AddrType
    		if cmp {
    			argOne = p.From.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    A send on a <code>nil</code> channel blocks forever.
    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    <h3 id="IncDec_statements">IncDec statements</h3>
    
    <p>
    The "++" and "--" statements increment or decrement their operands
    by the untyped <a href="#Constants">constant</a> <code>1</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. doc/go_spec.html

    A send on a <code>nil</code> channel blocks forever.
    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    <h3 id="IncDec_statements">IncDec statements</h3>
    
    <p>
    The "++" and "--" statements increment or decrement their operands
    by the untyped <a href="#Constants">constant</a> <code>1</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

    import javax.crypto.spec.SecretKeySpec;
    import javax.security.auth.kerberos.KerberosKey;
    
    import org.bouncycastle.asn1.*;
    
    import jcifs.pac.ASN1Util;
    import jcifs.pac.PACDecodingException;
    import jcifs.util.Encdec;
    
    
    @SuppressWarnings ( "javadoc" )
    public class KerberosEncData {
    
        private String userRealm;
        private String userPrincipalName;
        private ArrayList<InetAddress> userAddresses;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top