Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for _return (0.19 sec)

  1. src/cmd/compile/internal/syntax/tokens.go

    	_Go          // go
    	_Goto        // goto
    	_If          // if
    	_Import      // import
    	_Interface   // interface
    	_Map         // map
    	_Package     // package
    	_Range       // range
    	_Return      // return
    	_Select      // select
    	_Struct      // struct
    	_Switch      // switch
    	_Type        // type
    	_Var         // var
    
    	// empty line comment to exclude it from .String
    	tokenCount //
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    visitLabel(label2);
                    _ALOAD(0);
                    _INVOKESPECIAL(OBJECT_TYPE, "toString", RETURN_STRING);
                    _ARETURN();
                }});
            }
    
            private void generateServiceRegistrySupport() {
                // GENERATE private transient ServiceLookup services;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                }});
    
                //
                // Add `toString()`
                //
                publicMethod("toString", RETURN_STRING, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    // return this.name
                    _ALOAD(0);
                    _GETFIELD(generatedTypeName, NAME_FIELD, STRING);
                    _ARETURN();
                }});
    
                //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

            //   However, because of the type of the object returned by `getArchiveFile()` is a `Property`,
            //   we assume it's mutable, even though the _return type_ is `Provider`.
            //   We will produce the correct message after https://github.com/gradle/gradle/issues/26141 is fixed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        }
    
        public void _ARETURN() {
            super.visitInsn(ARETURN);
        }
    
        public void _IRETURN_OF(Type type) {
            super.visitInsn(type.getOpcode(IRETURN));
        }
    
        public void _IRETURN() {
            super.visitInsn(IRETURN);
        }
    
        public void _RETURN() {
            super.visitInsn(RETURN);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Goto, "goto", 0, 0},
    	{_If, "if", 0, 0},
    	{_Import, "import", 0, 0},
    	{_Interface, "interface", 0, 0},
    	{_Map, "map", 0, 0},
    	{_Package, "package", 0, 0},
    	{_Range, "range", 0, 0},
    	{_Return, "return", 0, 0},
    	{_Select, "select", 0, 0},
    	{_Struct, "struct", 0, 0},
    	{_Switch, "switch", 0, 0},
    	{_Type, "type", 0, 0},
    	{_Var, "var", 0, 0},
    }
    
    func TestComments(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/printer.go

    	}
    }
    
    func groupFor(d Decl) (token, *Group) {
    	switch d := d.(type) {
    	case *ImportDecl:
    		return _Import, d.Group
    	case *ConstDecl:
    		return _Const, d.Group
    	case *TypeDecl:
    		return _Type, d.Group
    	case *VarDecl:
    		return _Var, d.Group
    	case *FuncDecl:
    		return _Func, nil
    	default:
    		panic("unreachable")
    	}
    }
    
    type printGroup struct {
    	node
    	Tok   token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    		t.Key = p.type_()
    		p.want(_Rbrack)
    		t.Value = p.type_()
    		return t
    
    	case _Struct:
    		return p.structType()
    
    	case _Interface:
    		return p.interfaceType()
    
    	case _Name:
    		return p.qualifiedName(nil)
    
    	case _Lparen:
    		p.next()
    		t := p.type_()
    		p.want(_Rparen)
    		return t
    	}
    
    	return nil
    }
    
    func (p *parser) typeInstance(typ Expr) Expr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    			fatalf("%v", err)
    		}
    	}
    	return gccgoMangler(ppath)
    }
    
    // Return the package prefix when using gccgo.
    func (p *Package) gccgoSymbolPrefix() string {
    	if !*gccgo {
    		return ""
    	}
    
    	if *gccgopkgpath != "" {
    		return gccgoToSymbol(*gccgopkgpath)
    	}
    	if *gccgoprefix == "" && p.PackageName == "main" {
    		return "main"
    	}
    	prefix := gccgoToSymbol(*gccgoprefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/go/types/return.go

    			return true
    		}
    
    	case *ast.BlockStmt:
    		return check.isTerminatingList(s.List, "")
    
    	case *ast.IfStmt:
    		if s.Else != nil &&
    			check.isTerminating(s.Body, "") &&
    			check.isTerminating(s.Else, "") {
    			return true
    		}
    
    	case *ast.SwitchStmt:
    		return check.isTerminatingSwitch(s.Body, label)
    
    	case *ast.TypeSwitchStmt:
    		return check.isTerminatingSwitch(s.Body, label)
    
    	case *ast.SelectStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top