Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,350 for DelUse (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    			b.stmt(s.Init)
    		}
    		then := b.newBlock(KindIfThen, s)
    		done := b.newBlock(KindIfDone, s)
    		_else := done
    		if s.Else != nil {
    			_else = b.newBlock(KindIfElse, s)
    		}
    		b.add(s.Cond)
    		b.ifelse(then, _else)
    		b.current = then
    		b.stmt(s.Body)
    		b.jump(done)
    
    		if s.Else != nil {
    			b.current = _else
    			b.stmt(s.Else)
    			b.jump(done)
    		}
    
    		b.current = done
    
    	case *ast.SwitchStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/tokens.go

    	_DotDotDot // ...
    
    	// keywords
    	_Break       // break
    	_Case        // case
    	_Chan        // chan
    	_Const       // const
    	_Continue    // continue
    	_Default     // default
    	_Defer       // defer
    	_Else        // else
    	_Fallthrough // fallthrough
    	_For         // for
    	_Func        // func
    	_Go          // go
    	_Goto        // goto
    	_If          // if
    	_Import      // import
    	_Interface   // interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		} else {
    			bElse = bEnd
    		}
    		s.condBranch(n.Cond, bThen, bElse, likely)
    
    		if len(n.Body) != 0 {
    			s.startBlock(bThen)
    			s.stmtList(n.Body)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    		if len(n.Else) != 0 {
    			s.startBlock(bElse)
    			s.stmtList(n.Else)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/printer.go

    		}
    		p.print(_Rbrace)
    
    	case *IfStmt:
    		p.print(_If, blank)
    		if n.Init != nil {
    			p.print(n.Init, _Semi, blank)
    		}
    		p.print(n.Cond, blank, n.Then)
    		if n.Else != nil {
    			p.print(blank, _Else, blank, n.Else)
    		}
    
    	case *SwitchStmt:
    		p.print(_Switch, blank)
    		if n.Init != nil {
    			p.print(n.Init, _Semi, blank)
    		}
    		if n.Tag != nil {
    			p.print(n.Tag, blank)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

          else_name =
              mapper.GetUniqueName(if_region.get_elseFuncNameAttr().getValue())
                  .str();
        } else {
          else_name = GetName(if_region, "_else");
        }
        else_name = ExtractSingleBlockRegion(
            symbol_table, if_region.getElseBranch(), else_name, extern_values,
            worklist, /*extern_values_passthrough=*/false,
            /*only_one_return_value=*/false);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/testdata/issue59563/repro.go

    	} else if x == 13 {
    		x += 13
    	} else if x == 14 {
    		x += 14
    	} else if x == 15 {
    		x += 15
    	} else if x == 16 {
    		x += 16
    	} else if x == 17 {
    		x += 17
    	} else if x == 18 {
    		x += 18
    	} else if x == 19 {
    		x += 19
    	} else if x == 20 {
    		x += 20
    	} else if x == 21 {
    		x += 21
    	} else if x == 22 {
    		x += 22
    	} else if x == 23 {
    		x += 23
    	} else if x == 24 {
    		x += 24
    	} else if x == 25 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/deepcopy.go

    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(string)
    			**out = **in
    		}
    	}
    
    	if in.Maximum != nil {
    		in, out := &in.Maximum, &out.Maximum
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(float64)
    			**out = **in
    		}
    	}
    
    	if in.Minimum != nil {
    		in, out := &in.Minimum, &out.Minimum
    		if *in == nil {
    			*out = nil
    		} else {
    			*out = new(float64)
    			**out = **in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/IncludeDirectivesSerializer.java

                } else if (tag == EMPTY_TOKENS) {
                    return SimpleExpression.EMPTY_EXPRESSIONS;
                } else if (tag == EMPTY_ARGS) {
                    return SimpleExpression.EMPTY_ARGS;
                } else if (tag == COMMA) {
                    return SimpleExpression.COMMA;
                } else if (tag == LEFT_PAREN) {
                    return SimpleExpression.LEFT_PAREN;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. src/cmd/internal/dwarf/putvarabbrevgen.go

    				} else {
    					return DW_ABRV_PUTVAR_START + 5
    				}
    			} else {
    				if withLoclist {
    					return DW_ABRV_PUTVAR_START + 6
    				} else {
    					return DW_ABRV_PUTVAR_START + 7
    				}
    			}
    		}
    	} else {
    		if concrete {
    			if withLoclist {
    				return DW_ABRV_PUTVAR_START + 8
    			} else {
    				return DW_ABRV_PUTVAR_START + 9
    			}
    		} else {
    			if v.ClosureOffset > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/ByteConversionUtil.java

            if (o == null) {
                return null;
            } else if (o instanceof Byte) {
                return (Byte) o;
            } else if (o instanceof Number) {
                return ((Number) o).byteValue();
            } else if (o instanceof String) {
                return toByte((String) o);
            } else if (o instanceof java.util.Date) {
                if (pattern != null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top