Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for _RETURN (0.1 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                    // Set this.name = param1
                    _ALOAD(0);
                    _ALOAD(1);
                    _PUTFIELD(generatedTypeName, NAME_FIELD, STRING);
                    // Done
                    _RETURN();
                }});
    
                //
                // Add `getName()`
                //
                publicMethod("getName", RETURN_STRING, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

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

    			if got.prec != want.prec {
    				t.Errorf("%s: got prec %d; want %d", src, got.prec, want.prec)
    				continue
    			}
    			nlsemi = want.tok == _IncOp
    
    		case _Rparen, _Rbrack, _Rbrace, _Break, _Continue, _Fallthrough, _Return:
    			nlsemi = true
    		}
    
    		if nlsemi {
    			got.next()
    			if got.tok != _Semi {
    				t.Errorf("%s: got tok %s; want ;", src, got.tok)
    				continue
    			}
    			if got.lit != "newline" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/printer.go

    // a semicolon is automatically inserted. Vice versa, a semicolon may
    // be omitted in those cases.
    func impliesSemi(tok token) bool {
    	switch tok {
    	case _Name,
    		_Break, _Continue, _Fallthrough, _Return,
    		/*_Inc, _Dec,*/ _Rparen, _Rbrack, _Rbrace: // TODO(gri) fix this
    		return true
    	}
    	return false
    }
    
    // TODO(gri) provide table of []byte values for all tokens to avoid repeated string conversion
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/scanner.go

    	}
    
    	// possibly a keyword
    	lit := s.segment()
    	if len(lit) >= 2 {
    		if tok := keywordMap[hash(lit)]; tok != 0 && tokStrFast(tok) == string(lit) {
    			s.nlsemi = contains(1<<_Break|1<<_Continue|1<<_Fallthrough|1<<_Return, tok)
    			s.tok = tok
    			return
    		}
    	}
    
    	s.nlsemi = true
    	s.lit = string(lit)
    	s.tok = _Name
    }
    
    // tokStrFast is a faster version of token.String, which assumes that tok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
Back to top