HomeSort by relevance Sort by last modified time
    Searched refs:items (Results 1 - 25 of 3061) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
ShortArray.java 27 public short[] items; field in class:ShortArray
46 items = new short[capacity];
55 items = new short[size];
56 System.arraycopy(array.items, 0, items, 0, size);
72 System.arraycopy(array, startIndex, items, 0, count);
77 short[] items = this.items; local
78 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f)));
83 short[] items = this.items; local
103 short[] items = this.items; local
132 short[] items = this.items; local
145 short[] items = this.items; local
153 short[] items = this.items; local
160 short[] items = this.items; local
167 short[] items = this.items; local
174 short[] items = this.items; local
187 short[] items = this.items; local
201 short[] items = this.items; local
218 short[] items = this.items; local
279 short[] items = this.items; local
290 short[] items = this.items; local
300 short[] items = this.items; local
329 short[] items = this.items; local
353 short[] items = this.items; local
367 short[] items = this.items; local
    [all...]
LongArray.java 27 public long[] items; field in class:LongArray
46 items = new long[capacity];
55 items = new long[size];
56 System.arraycopy(array.items, 0, items, 0, size);
72 System.arraycopy(array, startIndex, items, 0, count);
76 long[] items = this.items; local
77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f)));
96 long[] items = this.items; local
125 long[] items = this.items; local
138 long[] items = this.items; local
146 long[] items = this.items; local
153 long[] items = this.items; local
160 long[] items = this.items; local
167 long[] items = this.items; local
180 long[] items = this.items; local
194 long[] items = this.items; local
211 long[] items = this.items; local
272 long[] items = this.items; local
283 long[] items = this.items; local
293 long[] items = this.items; local
322 long[] items = this.items; local
346 long[] items = this.items; local
360 long[] items = this.items; local
    [all...]
IntArray.java 27 public int[] items; field in class:IntArray
46 items = new int[capacity];
55 items = new int[size];
56 System.arraycopy(array.items, 0, items, 0, size);
72 System.arraycopy(array, startIndex, items, 0, count);
76 int[] items = this.items; local
77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f)));
96 int[] items = this.items; local
125 int[] items = this.items; local
138 int[] items = this.items; local
146 int[] items = this.items; local
153 int[] items = this.items; local
160 int[] items = this.items; local
167 int[] items = this.items; local
180 int[] items = this.items; local
194 int[] items = this.items; local
211 int[] items = this.items; local
272 int[] items = this.items; local
283 int[] items = this.items; local
293 int[] items = this.items; local
322 int[] items = this.items; local
346 int[] items = this.items; local
360 int[] items = this.items; local
    [all...]
ByteArray.java 27 public byte[] items; field in class:ByteArray
46 items = new byte[capacity];
55 items = new byte[size];
56 System.arraycopy(array.items, 0, items, 0, size);
72 System.arraycopy(array, startIndex, items, 0, count);
76 byte[] items = this.items;
77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f)))
    [all...]
CharArray.java 27 public char[] items; field in class:CharArray
46 items = new char[capacity];
55 items = new char[size];
56 System.arraycopy(array.items, 0, items, 0, size);
72 System.arraycopy(array, startIndex, items, 0, count);
76 char[] items = this.items; local
77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f)));
96 char[] items = this.items; local
125 char[] items = this.items; local
138 char[] items = this.items; local
146 char[] items = this.items; local
153 char[] items = this.items; local
160 char[] items = this.items; local
167 char[] items = this.items; local
180 char[] items = this.items; local
194 char[] items = this.items; local
211 char[] items = this.items; local
272 char[] items = this.items; local
283 char[] items = this.items; local
293 char[] items = this.items; local
322 char[] items = this.items; local
346 char[] items = this.items; local
360 char[] items = this.items; local
    [all...]
BooleanArray.java 29 public boolean[] items; field in class:BooleanArray
48 items = new boolean[capacity];
57 items = new boolean[size];
58 System.arraycopy(array.items, 0, items, 0, size);
74 System.arraycopy(array, startIndex, items, 0, count);
78 boolean[] items = this.items;
79 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f)));
    [all...]
FloatArray.java 27 public float[] items; field in class:FloatArray
46 items = new float[capacity];
55 items = new float[size];
56 System.arraycopy(array.items, 0, items, 0, size);
72 System.arraycopy(array, startIndex, items, 0, count);
76 float[] items = this.items; local
77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f)));
96 float[] items = this.items; local
125 float[] items = this.items; local
138 float[] items = this.items; local
146 float[] items = this.items; local
153 float[] items = this.items; local
160 float[] items = this.items; local
167 float[] items = this.items; local
180 float[] items = this.items; local
194 float[] items = this.items; local
211 float[] items = this.items; local
272 float[] items = this.items; local
283 float[] items = this.items; local
293 float[] items = this.items; local
322 float[] items = this.items; local
361 float[] items = this.items; local
375 float[] items = this.items; local
    [all...]
Select.java 43 public <T> T select (T[] items, Comparator<T> comp, int kthLowest, int size) {
44 int idx = selectIndex(items, comp, kthLowest, size);
45 return items[idx];
48 public <T> int selectIndex (T[] items, Comparator<T> comp, int kthLowest, int size) {
58 idx = fastMin(items, comp, size);
61 idx = fastMax(items, comp, size);
65 idx = quickSelect.select(items, comp, kthLowest, size);
71 private <T> int fastMin (T[] items, Comparator<T> comp, int size) {
74 int comparison = comp.compare(items[i], items[lowestIdx])
    [all...]
OrderedSet.java 26 final Array<T> items; field in class:OrderedSet
30 items = new Array();
35 items = new Array(capacity);
40 items = new Array(capacity);
45 items = new Array(capacity);
46 items.addAll(set.items);
50 if (!contains(key)) items.add(key);
55 items.removeValue(key, false);
60 items.clear()
109 private Array<T> items; field in class:OrderedSet.OrderedSetIterator
    [all...]
Array.java 32 public T[] items; field in class:Array
55 items = (T[])new Object[capacity];
58 /** Creates a new array with {@link #items} of the specified type.
64 items = (T[])ArrayReflection.newInstance(arrayType, capacity);
67 /** Creates an ordered array with {@link #items} of the specified type and a capacity of 16. */
76 this(array.ordered, array.size, array.items.getClass().getComponentType());
78 System.arraycopy(array.items, 0, items, 0, size);
95 System.arraycopy(array, start, items, 0, size);
99 T[] items = this.items; local
119 T[] items = this.items; local
138 T[] items = this.items; local
151 T[] items = this.items; local
162 T[] items = this.items; local
179 T[] items = this.items; local
196 T[] items = this.items; local
212 T[] items = this.items; local
234 T[] items = this.items; local
249 T[] items = this.items; local
267 T[] items = this.items; local
316 T[] items = this.items; local
350 T[] items = this.items; local
395 T[] items = this.items; local
405 T[] items = this.items; local
    [all...]
  /external/libxml2/test/automata/
po 7 t 3 4 items
14 items
18 items
  /external/opencv3/modules/videostab/include/opencv2/videostab/
ring_buffer.hpp 57 template <typename T> inline T& at(int idx, std::vector<T> &items)
59 return items[cv::borderInterpolate(idx, static_cast<int>(items.size()), cv::BORDER_WRAP)];
62 template <typename T> inline const T& at(int idx, const std::vector<T> &items)
64 return items[cv::borderInterpolate(idx, static_cast<int>(items.size()), cv::BORDER_WRAP)];
  /ndk/tests/device/test-stlport_shared-exception/jni/
p11667.cpp 11 LIST() { nitems = 16; items = new T[nitems]; };
13 LIST(int u) { nitems = u; items = new T[nitems]; };
16 return items[i];
21 T* src = items;
32 if (items) delete[] items;
34 items = newlist;
39 T *items; member in class:LIST
  /ndk/tests/device/test-stlport_static-exception/jni/
p11667.cpp 11 LIST() { nitems = 16; items = new T[nitems]; };
13 LIST(int u) { nitems = u; items = new T[nitems]; };
16 return items[i];
21 T* src = items;
32 if (items) delete[] items;
34 items = newlist;
39 T *items; member in class:LIST
  /developers/build/prebuilts/gradle/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/common/dummydata/
Cheeses.java 161 ArrayList<String> items = new ArrayList<String>(); local
163 items.add(CHEESES[i]);
165 return items;
175 HashSet<String> items = new HashSet<String>(); local
180 while (items.size() < count) {
181 items.add(CHEESES[random.nextInt(CHEESES.length)]);
184 return new ArrayList<String>(items);
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/src/main/java/com/example/android/common/dummydata/
Cheeses.java 161 ArrayList<String> items = new ArrayList<String>(); local
163 items.add(CHEESES[i]);
165 return items;
175 HashSet<String> items = new HashSet<String>(); local
180 while (items.size() < count) {
181 items.add(CHEESES[random.nextInt(CHEESES.length)]);
184 return new ArrayList<String>(items);
  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/common/dummydata/
Cheeses.java 161 ArrayList<String> items = new ArrayList<String>(); local
163 items.add(CHEESES[i]);
165 return items;
175 HashSet<String> items = new HashSet<String>(); local
180 while (items.size() < count) {
181 items.add(CHEESES[random.nextInt(CHEESES.length)]);
184 return new ArrayList<String>(items);
  /developers/samples/android/common/src/java/com/example/android/common/dummydata/
Cheeses.java 161 ArrayList<String> items = new ArrayList<String>(); local
163 items.add(CHEESES[i]);
165 return items;
175 HashSet<String> items = new HashSet<String>(); local
180 while (items.size() < count) {
181 items.add(CHEESES[random.nextInt(CHEESES.length)]);
184 return new ArrayList<String>(items);
  /development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/dummydata/
Cheeses.java 161 ArrayList<String> items = new ArrayList<String>(); local
163 items.add(CHEESES[i]);
165 return items;
175 HashSet<String> items = new HashSet<String>(); local
180 while (items.size() < count) {
181 items.add(CHEESES[random.nextInt(CHEESES.length)]);
184 return new ArrayList<String>(items);
  /development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/dummydata/
Cheeses.java 161 ArrayList<String> items = new ArrayList<String>(); local
163 items.add(CHEESES[i]);
165 return items;
175 HashSet<String> items = new HashSet<String>(); local
180 while (items.size() < count) {
181 items.add(CHEESES[random.nextInt(CHEESES.length)]);
184 return new ArrayList<String>(items);
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/dummydata/
Cheeses.java 161 ArrayList<String> items = new ArrayList<String>(); local
163 items.add(CHEESES[i]);
165 return items;
175 HashSet<String> items = new HashSet<String>(); local
180 while (items.size() < count) {
181 items.add(CHEESES[random.nextInt(CHEESES.length)]);
184 return new ArrayList<String>(items);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
UniformListItem.java 26 * Class that represents a contiguous list of uniform items. Each
30 * <p>This class inherits its alignment from its items, bumped up to
31 * {@code 4} if the items have a looser alignment requirement. If
46 private final List<T> items; field in class:UniformListItem
53 * @param items {@code non-null and non-empty;} list of items to represent
55 public UniformListItem(ItemType itemType, List<T> items) {
56 super(getAlignment(items), writeSize(items));
62 this.items = items
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
UniformListItem.java 24 * Class that represents a contiguous list of uniform items. Each
28 * <p>This class inherits its alignment from its items, bumped up to
29 * {@code 4} if the items have a looser alignment requirement. If
44 private final List<T> items; field in class:UniformListItem
51 * @param items {@code non-null and non-empty;} list of items to represent
53 public UniformListItem(ItemType itemType, List<T> items) {
54 super(getAlignment(items), writeSize(items));
60 this.items = items
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
UniformListItem.java 26 * Class that represents a contiguous list of uniform items. Each
30 * <p>This class inherits its alignment from its items, bumped up to
31 * {@code 4} if the items have a looser alignment requirement. If
46 private final List<T> items; field in class:UniformListItem
53 * @param items {@code non-null and non-empty;} list of items to represent
55 public UniformListItem(ItemType itemType, List<T> items) {
56 super(getAlignment(items), writeSize(items));
62 this.items = items
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_pm_utils_list.c 73 uint32_t items=0; local
80 list->data[items].stpos = start;
81 list->data[items].edpos = end;
82 items++;
86 end += list->sc_ibuf[items].len;
88 list->data[items].stpos = start;
89 list->data[items].edpos = end;
90 items++;
92 while(items < list->num_items)
102 list->data[items].stpos = start
132 uint32_t flags=0, items=0; local
189 uint32_t items = list->num_items-1, byte_pos; local
    [all...]

Completed in 671 milliseconds

1 2 3 4 5 6 7 8 91011>>