Examples of removeKey()


Examples of com.gs.collections.impl.map.mutable.primitive.ShortFloatHashMap.removeKey()

    public ImmutableShortFloatMap newWithoutKey(short key)
    {
        MutableShortFloatMap map = new ShortFloatHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortFloatMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.ShortIntHashMap.removeKey()

    public ImmutableShortIntMap newWithoutKey(short key)
    {
        MutableShortIntMap map = new ShortIntHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortIntMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.ShortLongHashMap.removeKey()

    public ImmutableShortLongMap newWithoutKey(short key)
    {
        MutableShortLongMap map = new ShortLongHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortLongMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

Examples of com.gs.collections.impl.map.mutable.primitive.ShortShortHashMap.removeKey()

    public ImmutableShortShortMap newWithoutKey(short key)
    {
        MutableShortShortMap map = new ShortShortHashMap(this.size());
        map.putAll(this);
        map.removeKey(key);
        return map.toImmutable();
    }

    public ImmutableShortShortMap newWithoutAllKeys(ShortIterable keys)
    {
View Full Code Here

Examples of fr.soleil.comete.widget.Label.removeKey()

        Collection<Label> labelCollection = labelMap.values();
        Iterator<Label> labelIterator = labelCollection.iterator();

        while (labelIterator.hasNext()) {
            Label label = labelIterator.next();
            label.removeKey(TangoDAOFactory.class.getName());
        }

        scanDeadTime.removeKey(TangoDAOFactory.class.getName());

        if (scanServerName == null || scanServerName.isEmpty()) {
View Full Code Here

Examples of org.apache.mahout.math.map.OpenIntIntHashMap.removeKey()

        case REMOVE:
          assertEquals(reference.containsKey(k), base.containsKey(k));

          Integer removed = reference.remove(k);
          if (removed == null) {
            assertEquals(false, base.removeKey(k));
          } else {
            assertEquals(removed.intValue(), base.get(k));
            assertEquals(true, base.removeKey(k));
          }
          break;
View Full Code Here

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.util.SimpleLookupTable.removeKey()

}
void storeAnnotationHolder(Binding binding, AnnotationHolder holder) {
  if (holder == null) {
    SimpleLookupTable store = storedAnnotations(false);
    if (store != null)
      store.removeKey(binding);
  } else {
    SimpleLookupTable store = storedAnnotations(true);
    if (store != null)
      store.put(binding, holder);
  }
View Full Code Here

Examples of org.eclipse.jdt.internal.compiler.util.SimpleLookupTable.removeKey()

void storeAnnotationHolder(Binding binding, AnnotationHolder holder) {
  if (holder == null) {
    SimpleLookupTable store = storedAnnotations(false);
    if (store != null)
      store.removeKey(binding);
  } else {
    SimpleLookupTable store = storedAnnotations(true);
    if (store != null)
      store.put(binding, holder);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.