Java 类com.google.protobuf.Internal.IntList 实例源码

项目:play-store-api    文件:GeneratedMessageLite.java   
@Override
public IntList visitIntList(IntList mine, IntList other) {
  if (!mine.equals(other)) {
    throw NOT_EQUALS;
  }
  return mine;
}
项目:play-store-api    文件:GeneratedMessageLite.java   
@Override
public IntList visitIntList(IntList mine, IntList other) {
  int size = mine.size();
  int otherSize = other.size();
  if (size > 0 && otherSize > 0) {
    if (!mine.isModifiable()) {
      mine = mine.mutableCopyWithCapacity(size + otherSize);
    }
    mine.addAll(other);
  }

  return size > 0 ? mine : other;
}
项目:play-store-api    文件:IntArrayList.java   
@Override
public IntList mutableCopyWithCapacity(int capacity) {
  if (capacity < size) {
    throw new IllegalArgumentException();
  }
  return new IntArrayList(ArraysCompat.copyOf(array, capacity), size);
}
项目:bazel    文件:GeneratedMessageLite.java   
@Override
public IntList visitIntList(IntList mine, IntList other) {
  if (!mine.equals(other)) {
    throw NOT_EQUALS;
  }
  return mine;
}
项目:bazel    文件:GeneratedMessageLite.java   
@Override
public IntList visitIntList(IntList mine, IntList other) {
  int size = mine.size();
  int otherSize = other.size();
  if (size > 0 && otherSize > 0) {
    if (!mine.isModifiable()) {
      mine = mine.mutableCopyWithCapacity(size + otherSize);
    }
    mine.addAll(other);
  }

  return size > 0 ? mine : other;
}
项目:bazel    文件:IntArrayList.java   
@Override
public IntList mutableCopyWithCapacity(int capacity) {
  if (capacity < size) {
    throw new IllegalArgumentException();
  }
  return new IntArrayList(Arrays.copyOf(array, capacity), size);
}
项目:cfapi    文件:GeneratedMessageLite.java   
protected static IntList newIntList() {
  return new IntArrayList();
}
项目:cfapi    文件:GeneratedMessageLite.java   
protected static IntList newIntList(List<Integer> toCopy) {
  return new IntArrayList(toCopy);
}
项目:cfapi    文件:GeneratedMessageLite.java   
protected static IntList emptyIntList() {
  return IntArrayList.emptyList();
}
项目:play-store-api    文件:GeneratedMessageLite.java   
protected static IntList emptyIntList() {
  return IntArrayList.emptyList();
}
项目:play-store-api    文件:GeneratedMessageLite.java   
protected static IntList mutableCopy(IntList list) {
  int size = list.size();
  return list.mutableCopyWithCapacity(
      size == 0 ? AbstractProtobufList.DEFAULT_CAPACITY : size * 2);
}
项目:play-store-api    文件:GeneratedMessageLite.java   
@Override
public IntList visitIntList(IntList mine, IntList other) {
  hashCode = (53 * hashCode) + mine.hashCode();
  return mine;
}
项目:bazel    文件:GeneratedMessageLite.java   
protected static IntList emptyIntList() {
  return IntArrayList.emptyList();
}
项目:bazel    文件:GeneratedMessageLite.java   
protected static IntList mutableCopy(IntList list) {
  int size = list.size();
  return list.mutableCopyWithCapacity(
      size == 0 ? AbstractProtobufList.DEFAULT_CAPACITY : size * 2);
}
项目:bazel    文件:GeneratedMessageLite.java   
@Override
public IntList visitIntList(IntList mine, IntList other) {
  hashCode = (53 * hashCode) + mine.hashCode();
  return mine;
}
项目:play-store-api    文件:GeneratedMessageLite.java   
IntList visitIntList(IntList mine, IntList other);
项目:bazel    文件:GeneratedMessageLite.java   
IntList visitIntList(IntList mine, IntList other);