Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 409 for Positions (0.2 sec)

  1. src/cmd/compile/internal/ssa/block.go

    	phielimValue(phi)
    }
    
    // LackingPos indicates whether b is a block whose position should be inherited
    // from its successors.  This is true if all the values within it have unreliable positions
    // and if it is "plain", meaning that there is no control flow that is also very likely
    // to correspond to a well-understood source position.
    func (b *Block) LackingPos() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    			return x
    		}
    	case constant.String:
    		return constant.StringVal(val)
    	}
    	return nil
    }
    
    // A valueMap maps a case value (of a basic Go type) to a list of positions
    // where the same case value appeared, together with the corresponding case
    // types.
    // Since two case values may have the same "underlying" value but different
    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/cover/cover.go

    }
    
    // seenPos2 tracks whether we have seen a token.Position pair.
    var seenPos2 = make(map[pos2]bool)
    
    // dedup takes a token.Position pair and returns a pair that does not
    // duplicate any existing pair. The returned pair will have the Offset
    // fields cleared.
    func dedup(p1, p2 token.Position) (r1, r2 token.Position) {
    	key := pos2{
    		p1: p1,
    		p2: p2,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RegularImmutableMap.java

       * equivalent to RegularImmutableSet, save that instead of having a hash table containing the
       * elements directly and null for empty positions, we store indices of the keys in the hash table,
       * and ABSENT for empty positions.  We then look up the keys in alternatingKeysAndValues.
       *
       * (The index actually stored is the index of the key in alternatingKeysAndValues, which is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/stmt.go

    		x.typ = Typ[Bool]
    		x.val = constant.MakeBool(true)
    		// TODO(gri) should have a better position here
    		pos := s.Rbrace
    		if len(s.Body) > 0 {
    			pos = s.Body[0].Pos()
    		}
    		x.expr = syntax.NewName(pos, "true")
    	}
    
    	check.multipleSwitchDefaults(s.Body)
    
    	seen := make(valueMap) // map of seen case values to positions and types
    	for i, clause := range s.Body {
    		if clause == 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)
  6. src/index/suffixarray/suffixarray_test.go

    		t.Errorf("test %q, lookup %q (n = %d): expected %d results; got %d", tc.name, s, n, len(exp), len(res))
    	}
    
    	// if n >= 0 the number of results is limited --- unless n >= all results,
    	// we may obtain different positions from the Index and from find (because
    	// Index may not find the results in the same order as find) => in general
    	// we cannot simply check that the res and exp lists are equal
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    	//     non-intersecting elements in `Y` are appended, retaining their partial order.
    	//   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Splitter.java

                    int separatorLength = separator.length();
    
                    positions:
                    for (int p = start, last = toSplit.length() - separatorLength; p <= last; p++) {
                      for (int i = 0; i < separatorLength; i++) {
                        if (toSplit.charAt(i + p) != separator.charAt(i)) {
                          continue positions;
                        }
                      }
                      return p;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/intervals.go

    	c.s[len(c.s)-1].st = pos
    	c.setLast(pos)
    	return nil
    }
    
    // Kill method should be invoked on instruction at position p if instr
    // should be treated as as having a kill (lifetime end) for the
    // resource. See the example in the comment at the beginning of this
    // file for an example. Note that if we see a kill at position K for a
    // resource currently live since J, this will result in a lifetime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Splitter.java

                    int separatorLength = separator.length();
    
                    positions:
                    for (int p = start, last = toSplit.length() - separatorLength; p <= last; p++) {
                      for (int i = 0; i < separatorLength; i++) {
                        if (toSplit.charAt(i + p) != separator.charAt(i)) {
                          continue positions;
                        }
                      }
                      return p;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top