HomeSort by relevance Sort by last modified time
    Searched refs:array (Results 1376 - 1400 of 7929) sorted by null

<<51525354555657585960>>

  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
Platform.java 41 static <T> T[] clone(T[] array) {
42 return GwtPlatform.clone(array);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractMapTester.java 76 * @return an array of the proper size with {@code null} as the key of the
80 Map.Entry<K, V>[] array = createSamplesArray(); local
82 final Map.Entry<K, V> oldEntry = array[nullKeyLocation];
83 array[nullKeyLocation] = entry(null, oldEntry.getValue());
84 return array;
104 * @return an array of the proper size with {@code null} as the value of the
108 Map.Entry<K, V>[] array = createSamplesArray(); local
110 final Map.Entry<K, V> oldEntry = array[nullValueLocation];
111 array[nullValueLocation] = entry(oldEntry.getKey(), null);
112 return array;
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBasedPriorityBlockingQueue.java 356 * Returns an array containing all of the elements in this queue.
357 * The returned array elements are in no particular order.
359 * <p>The returned array will be "safe" in that no references to it are
361 * a new array). The caller is thus free to modify the returned array.
363 * <p>This method acts as bridge between array-based and collection-based
366 * @return an array containing all of the elements in this queue
459 * Returns an array containing all of the elements in this queue; the
460 * runtime type of the returned array is that of the specified array
525 final Object[] array; \/\/ Array of all elements field in class:MonitorBasedPriorityBlockingQueue.Itr
    [all...]
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
IsArrayContaining.java 12 * Matches if an array contains an item satisfying a nested matcher.
22 public boolean matchesSafely(T[] array) {
23 for (T item : array) {
39 .appendText("an array containing ")
44 * Creates a matcher for arrays that matches when the examined array contains at least one item
46 * of the examined array will stop as soon as a matching element is found.
  /external/icu/icu4c/source/common/unicode/
uobject.h 118 static void * GrowArray(void * array, int newSize );
119 static void FreeArray(void * array );
  /external/icu/icu4c/source/test/letest/
xmlreader.cpp 47 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize); local
63 sscanf(number, "%x", &array[count++]);
79 sscanf(number, "%x", &array[count]);
81 return array;
93 float *array = NEW_ARRAY(float, arraySize); local
109 sscanf(number, "%f", &array[count++]);
129 sscanf(number, "%f", &array[count]);
131 return array;
  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.cpp 51 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize); local
67 sscanf(number, "%x", &array[count++]);
83 sscanf(number, "%x", &array[count]);
85 return array;
97 float *array = NEW_ARRAY(float, arraySize); local
113 sscanf(number, "%f", &array[count++]);
133 sscanf(number, "%f", &array[count]);
135 return array;
  /external/junit-params/src/test/java/junitparams/
ObjectStringificationTest.java 61 String[] array = {"one", "two", null}; local
63 $(nullArray, "stringOne", primitiveArray, "stringTwo", array)
  /external/libavc/common/arm/
ih264_padding_neon.s 48 @* @brief pad at the top of a 2d array
51 @* The top row of a 2d array is replicated for pad_size times at the top
60 @* integer width of the array
63 @* integer -padding size of the array
117 @* Padding (luma block) at the left of a 2d array
120 @* The left column of a 2d array is replicated for pad_size times at the left
130 @* integer height of the array
133 @* integer width of the array
136 @* integer -padding size of the array
139 @* integer height of the array
    [all...]
  /external/libchrome/base/debug/
task_annotator.cc 7 #include <array>
53 std::array<const void*, kStackTaskTraceSnapshotSize> task_backtrace;
  /external/libchrome/base/trace_event/
memory_usage_estimator_unittest.cc 82 // std::array
84 std::array<Data, 10> array; local
85 EXPECT_EQ(170u, EstimateMemoryUsage(array));
90 Data array[10]; local
91 EXPECT_EQ(170u, EstimateMemoryUsage(array));
94 // C array
99 Item* array = new Item[7]; local
100 EXPECT_EQ(70u, EstimateMemoryUsage(array, 7));
101 delete[] array;
    [all...]
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
array.pass.cpp 12 // array
47 typedef char array[3]; typedef
54 test_array<array>();
  /external/mesa3d/src/gallium/drivers/trace/
tr_dump.c 550 trace_dump_writes("<array>");
558 trace_dump_writes("</array>");
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
AcctCommandHandlerTest.java 71 command1 = new Command(CommandNames.ACCT, array(ACCOUNT1));
72 command2 = new Command(CommandNames.ACCT, array(ACCOUNT2));
CwdCommandHandlerTest.java 69 command1 = new Command(CommandNames.CWD, array(DIR1));
70 command2 = new Command(CommandNames.CWD, array(DIR2));
DeleCommandHandlerTest.java 69 command1 = new Command(CommandNames.DELE, array(FILENAME1));
70 command2 = new Command(CommandNames.DELE, array(FILENAME2));
MkdCommandHandlerTest.java 69 command1 = new Command(CommandNames.MKD, array(DIR1));
70 command2 = new Command(CommandNames.MKD, array(DIR2));
ModeCommandHandlerTest.java 71 command1 = new Command(CommandNames.MODE, array(CODE1));
72 command2 = new Command(CommandNames.MODE, array(CODE2));
PassCommandHandlerTest.java 72 command1 = new Command(CommandNames.PASS, array(PASSWORD1));
73 command2 = new Command(CommandNames.PASS, array(PASSWORD2));
RestCommandHandlerTest.java 74 command1 = new Command(CommandNames.REST, array(MARKER1));
75 command2 = new Command(CommandNames.REST, array(MARKER2));
RmdCommandHandlerTest.java 68 command1 = new Command(CommandNames.RMD, array(DIR1));
69 command2 = new Command(CommandNames.RMD, array(DIR2));
RnfrCommandHandlerTest.java 68 command1 = new Command(CommandNames.RNFR, array(FILENAME1));
69 command2 = new Command(CommandNames.RNFR, array(FILENAME2));
RntoCommandHandlerTest.java 68 command1 = new Command(CommandNames.RNTO, array(FILENAME1));
69 command2 = new Command(CommandNames.RNTO, array(FILENAME2));
SiteCommandHandlerTest.java 70 command1 = new Command(CommandNames.SITE, array(PARAMETERS1));
71 command2 = new Command(CommandNames.SITE, array(PARAMETERS2));
SmntCommandHandlerTest.java 67 command1 = new Command(CommandNames.SMNT, array(DIR1));
68 command2 = new Command(CommandNames.SMNT, array(DIR2));

Completed in 838 milliseconds

<<51525354555657585960>>