Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for predeclared (0.38 sec)

  1. src/cmd/compile/internal/typecheck/func.go

    	default:
    		n.SetOp(ir.OCALLFUNC)
    		if t.Kind() != types.TFUNC {
    			if o := l; o.Name() != nil && types.BuiltinPkg.Lookup(o.Sym().Name).Def != nil {
    				// be more specific when the non-function
    				// name matches a predeclared function
    				base.Errorf("cannot call non-function %L, declared at %s",
    					l, base.FmtPos(o.Name().Pos()))
    			} else {
    				base.Errorf("cannot call non-function %L", l)
    			}
    			n.SetType(nil)
    			return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    					err.report()
    					continue L
    				}
    			}
    			seen[val] = append(seen[val], valueType{v.Pos(), v.typ})
    		}
    	}
    }
    
    // isNil reports whether the expression e denotes the predeclared value nil.
    func (check *Checker) isNil(e ast.Expr) bool {
    	// The only way to express the nil value is by literally writing nil (possibly in parentheses).
    	if name, _ := ast.Unparen(e).(*ast.Ident); name != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stmt.go

    					err.report()
    					continue L
    				}
    			}
    			seen[val] = append(seen[val], valueType{v.Pos(), v.typ})
    		}
    	}
    }
    
    // isNil reports whether the expression e denotes the predeclared value nil.
    func (check *Checker) isNil(e syntax.Expr) bool {
    	// The only way to express the nil value is by literally writing nil (possibly in parentheses).
    	if name, _ := syntax.Unparen(e).(*syntax.Name); name != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. doc/asm.html

    <h3 id="symbols">Symbols</h3>
    
    <p>
    Some symbols, such as <code>R1</code> or <code>LR</code>,
    are predefined and refer to registers.
    The exact set depends on the architecture.
    </p>
    
    <p>
    There are four predeclared symbols that refer to pseudo-registers.
    These are not real registers, but rather virtual registers maintained by
    the toolchain, such as a frame pointer.
    The set of pseudo-registers is the same for all architectures:
    </p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  5. guava/src/com/google/common/collect/DenseImmutableTable.java

                if (value != null) {
                  return Maps.immutableEntry(getKey(index), value);
                }
              }
              return endOfData();
            }
          };
        }
    
        // redeclare to help optimizers with b/310253115
        @SuppressWarnings("RedundantOverride")
        @J2ktIncompatible // serialization
        @Override
        @GwtIncompatible // serialization
        Object writeReplace() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/DenseImmutableTable.java

                if (value != null) {
                  return Maps.immutableEntry(getKey(index), value);
                }
              }
              return endOfData();
            }
          };
        }
    
        // redeclare to help optimizers with b/310253115
        @SuppressWarnings("RedundantOverride")
        @J2ktIncompatible // serialization
        @Override
        @GwtIncompatible // serialization
        Object writeReplace() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/plist.go

    	if s == nil {
    		// func _() { }
    		return
    	}
    	if s.Func() != nil {
    		ctxt.Diag("%s: symbol %s redeclared\n\t%s: other declaration of symbol %s", ctxt.PosTable.Pos(start), s.Name, ctxt.PosTable.Pos(s.Func().Text.Pos), s.Name)
    		return
    	}
    	s.NewFuncInfo()
    	if s.OnList() {
    		ctxt.Diag("%s: symbol %s redeclared", ctxt.PosTable.Pos(start), s.Name)
    		return
    	}
    	if strings.HasPrefix(s.Name, `"".`) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RegularImmutableBiMap.java

              }
    
              // redeclare to help optimizers with b/310253115
              @SuppressWarnings("RedundantOverride")
              @Override
              @J2ktIncompatible // serialization
              @GwtIncompatible // serialization
              Object writeReplace() {
                return super.writeReplace();
              }
            };
          }
    
          // redeclare to help optimizers with b/310253115
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularImmutableMap.java

            @Override
            public int size() {
              return size;
            }
    
            @Override
            public boolean isPartialView() {
              return true;
            }
    
            // redeclare to help optimizers with b/310253115
            @SuppressWarnings("RedundantOverride")
            @Override
            @J2ktIncompatible // serialization
            Object writeReplace() {
              return super.writeReplace();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/RegularImmutableMap.java

        }
    
        @Override
        boolean isPartialView() {
          return true;
        }
    
        @Override
        public int size() {
          return map.size();
        }
    
        // redeclare to help optimizers with b/310253115
        @SuppressWarnings("RedundantOverride")
        @Override
        @J2ktIncompatible // serialization
        @GwtIncompatible // serialization
        Object writeReplace() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top