HomeSort by relevance Sort by last modified time
    Searched full:array (Results 376 - 400 of 22317) sorted by null

<<11121314151617181920>>

  /packages/apps/InCallUI/res/values/
array.xml 18 <!-- Array resources for the Phone app. -->
26 <array name="incoming_call_widget_audio_without_sms_targets">
31 </array>
32 <array name="incoming_call_widget_audio_without_sms_target_descriptions">
37 </array>
38 <array name="incoming_call_widget_audio_without_sms_direction_descriptions">
43 </array>
49 <array name="incoming_call_widget_audio_with_sms_targets">
54 </array>
55 <array name="incoming_call_widget_audio_with_sms_target_descriptions"
    [all...]
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 21 * \brief Vertex array and buffer unaligned access stress tests
73 Array::Usage usages[] = {Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW};
76 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE}
    [all...]
  /external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp 21 * \brief Vertex array and buffer tests
72 Array::Usage usages[] = {Array::USAGE_STATIC_DRAW, Array::USAGE_STREAM_DRAW, Array::USAGE_DYNAMIC_DRAW};
75 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE}
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTSort.h 28 /* Sifts a broken heap. The input array is a heap from root to bottom
31 * Sinks a hole from array[root] to leaf and then sifts the original array[root] element
39 * @param root the one based index into array of the out-of-place root of the heap.
40 * @param bottom the one based index in the array of the last entry in the heap.
43 void SkTHeapSort_SiftUp(T array[], size_t root, size_t bottom, C lessThan) {
44 T x = array[root-1];
48 if (j < bottom && lessThan(array[j-1], array[j])) {
51 array[root-1] = array[j-1]
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
sort.h 36 // data [in/out] A pointer to an array of intrinsic type.
38 // num_of_elements The number of elements in the array.
39 // data_type Enum corresponding to the type of the array.
44 // Sorts arbitrary data types. This requires an array of intrinsically typed
45 // key values which will be used to sort the data array. There must be a
50 // data [in/out] A pointer to an array of arbitrary type.
52 // key [in] A pointer to an array of keys used to sort the
53 // data array.
55 // size_of_element The size, in bytes, of the data array.
56 // key_type Enum corresponding to the type of the key array
    [all...]
  /external/chromium_org/v8/test/mjsunit/
apply.js 39 assertSame(this, f0.apply(this, new Array(1)), "2b");
40 assertSame(this, f0.apply(this, new Array(2)), "2c");
41 assertSame(this, f0.apply(this, new Array(4242)), "2d");
44 assertSame(this, f0.apply(null, new Array(1)), "3b");
45 assertSame(this, f0.apply(null, new Array(2)), "3c");
46 assertSame(this, f0.apply(this, new Array(4242)), "3d");
49 assertSame(this, f0.apply(void 0, new Array(1)), "4b");
50 assertSame(this, f0.apply(void 0, new Array(2)), "4c");
55 assertEquals(void 0, f1.apply(this, new Array(1)), "5b");
56 assertEquals(void 0, f1.apply(this, new Array(2)), "5c")
    [all...]
array-literal-transitions.js 45 // IC and Crankshaft support for smi-only elements in dynamic array literals.
137 return new Array();
145 var array = deopt_array(false);
149 array = deopt_array(false);
161 array = deopt_array_literal_all_smis(4);
162 assertEquals(0, array[0]);
163 assertEquals(1, array[1]);
164 assertEquals(4, array[2]);
166 array = deopt_array_literal_all_smis(5);
167 array = deopt_array_literal_all_smis(6)
    [all...]
  /external/chromium_org/v8/test/webkit/
array-constructor-host-call-expected.txt 24 This tests that array construction via a host call works.
29 PASS array instanceof Array is true
30 PASS array.length is 100
31 PASS array instanceof Array is true
32 PASS array.length is 100
33 PASS array instanceof Array is true
34 PASS array.length is 10
    [all...]
array-sort-small-sparse-array-with-large-length.js 25 "Tests that we can quickly sort a small sparse array that has a large length."
28 var array = []; variable
29 array[10000000] = 42;
30 array.sort();
32 for (var s in array) {
33 debug("array[" + s + "] = " + array[s]);
36 result += array[s];
39 shouldBe("array.length", "10000001");
40 shouldBe("array[0]", "42")
    [all...]
  /external/skia/src/core/
SkTSort.h 28 /* Sifts a broken heap. The input array is a heap from root to bottom
31 * Sinks a hole from array[root] to leaf and then sifts the original array[root] element
39 * @param root the one based index into array of the out-of-place root of the heap.
40 * @param bottom the one based index in the array of the last entry in the heap.
43 void SkTHeapSort_SiftUp(T array[], size_t root, size_t bottom, C lessThan) {
44 T x = array[root-1];
48 if (j < bottom && lessThan(array[j-1], array[j])) {
51 array[root-1] = array[j-1]
    [all...]
  /external/webrtc/src/system_wrappers/interface/
sort.h 36 // data [in/out] A pointer to an array of intrinsic type.
38 // numOfElements The number of elements in the array.
39 // dataType Enum corresponding to the type of the array.
44 // Sorts arbitrary data types. This requires an array of intrinsically typed
45 // key values which will be used to sort the data array. There must be a
50 // data [in/out] A pointer to an array of arbitrary type.
52 // key [in] A pointer to an array of keys used to sort the
53 // data array.
55 // sizeOfElement The size, in bytes, of the data array.
56 // keyType Enum corresponding to the type of the key array
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Ints.java 116 * {@code array}.
118 * @param array an array of {@code int} values, possibly empty
120 * @return {@code true} if {@code array[i] == target} for some value of {@code
123 public static boolean contains(int[] array, int target) {
124 for (int value : array) {
134 * {@code array}.
136 * @param array an array of {@code int} values, possibly empty
138 * @return the least index {@code i} for which {@code array[i] == target}, o
383 int[] array = new int[len]; local
415 final int[] array; field in class:Ints.IntArrayAsList
    [all...]
Shorts.java 117 * {@code array}.
119 * @param array an array of {@code short} values, possibly empty
121 * @return {@code true} if {@code array[i] == target} for some value of {@code
124 public static boolean contains(short[] array, short target) {
125 for (short value : array) {
135 * {@code array}.
137 * @param array an array of {@code short} values, possibly empty
139 * @return the least index {@code i} for which {@code array[i] == target}, o
385 short[] array = new short[len]; local
417 final short[] array; field in class:Shorts.ShortArrayAsList
    [all...]
Chars.java 112 * {@code array}.
114 * @param array an array of {@code char} values, possibly empty
116 * @return {@code true} if {@code array[i] == target} for some value of {@code
119 public static boolean contains(char[] array, char target) {
120 for (char value : array) {
130 * {@code array}.
132 * @param array an array of {@code char} values, possibly empty
134 * @return the least index {@code i} for which {@code array[i] == target}, o
381 char[] array = new char[len]; local
413 final char[] array; field in class:Chars.CharArrayAsList
    [all...]
  /packages/apps/Settings/res/values/
arrays.xml 25 <string-array name="timezone_filters">
40 </string-array>
43 <string-array name="date_format_values" translatable="false">
49 </string-array>
52 <string-array name="screen_timeout_entries">
60 </string-array>
63 <string-array name="screen_timeout_values" translatable="false">
78 </string-array>
81 <string-array name="dream_timeout_entries">
90 </string-array>
    [all...]
  /external/chromium_org/ppapi/proxy/
raw_var_data_unittest.cc 105 // TODO(raymes): add tests for shmem type array buffers.
109 // Empty array.
110 scoped_refptr<ArrayVar> array(new ArrayVar);
111 ScopedPPVar release_array(ScopedPPVar::PassRef(), array->GetPPVar());
112 EXPECT_TRUE(WriteReadAndCompare(array->GetPPVar()));
116 // Array with primitives.
117 array->Set(index++, PP_MakeUndefined());
118 array->Set(index++, PP_MakeNull());
119 array->Set(index++, PP_MakeInt32(100));
120 array->Set(index++, PP_MakeBool(PP_FALSE))
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/java/
jritypes.h 149 * Specific Scalar Array Types
154 ** is to allow Java runtime implementations to optimize boolean array
162 #define JRI_GetByteArrayLength(env, array) \
163 JRI_GetScalarArrayLength(env, array)
164 #define JRI_GetByteArrayElements(env, array) \
165 JRI_GetScalarArrayElements(env, array)
169 #define JRI_GetCharArrayLength(env, array) \
170 JRI_GetScalarArrayLength(env, array)
171 #define JRI_GetCharArrayElements(env, array) \
172 ((jchar*)JRI_GetScalarArrayElements(env, array))
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Doubles.java 98 * {@code array}. Note that this always returns {@code false} when {@code
101 * @param array an array of {@code double} values, possibly empty
103 * @return {@code true} if {@code array[i] == target} for some value of {@code
106 public static boolean contains(double[] array, double target) {
107 for (double value : array) {
117 * {@code array}. Note that this always returns {@code -1} when {@code target}
120 * @param array an array of {@code double} values, possibly empty
122 * @return the least index {@code i} for which {@code array[i] == target}, o
375 double[] array = new double[len]; local
410 final double[] array; field in class:Doubles.DoubleArrayAsList
    [all...]
Floats.java 95 * {@code array}. Note that this always returns {@code false} when {@code
98 * @param array an array of {@code float} values, possibly empty
100 * @return {@code true} if {@code array[i] == target} for some value of {@code
103 public static boolean contains(float[] array, float target) {
104 for (float value : array) {
114 * {@code array}. Note that this always returns {@code -1} when {@code target}
117 * @param array an array of {@code float} values, possibly empty
119 * @return the least index {@code i} for which {@code array[i] == target}, o
372 float[] array = new float[len]; local
407 final float[] array; field in class:Floats.FloatArrayAsList
    [all...]
  /packages/apps/Settings/res/values-af/
arrays.xml 23 <string-array name="timezone_filters">
31 </string-array>
32 <string-array name="screen_timeout_entries">
40 </string-array>
41 <string-array name="dream_timeout_entries">
50 </string-array>
51 <string-array name="lock_after_timeout_entries">
61 </string-array>
62 <string-array name="entries_font_size">
67 </string-array>
    [all...]
  /packages/apps/Settings/res/values-am/
arrays.xml 23 <string-array name="timezone_filters">
31 </string-array>
32 <string-array name="screen_timeout_entries">
40 </string-array>
41 <string-array name="dream_timeout_entries">
50 </string-array>
51 <string-array name="lock_after_timeout_entries">
61 </string-array>
62 <string-array name="entries_font_size">
67 </string-array>
    [all...]
  /packages/apps/Settings/res/values-ar/
arrays.xml 23 <string-array name="timezone_filters">
31 </string-array>
32 <string-array name="screen_timeout_entries">
40 </string-array>
41 <string-array name="dream_timeout_entries">
50 </string-array>
51 <string-array name="lock_after_timeout_entries">
61 </string-array>
62 <string-array name="entries_font_size">
67 </string-array>
    [all...]
  /packages/apps/Settings/res/values-bg/
arrays.xml 23 <string-array name="timezone_filters">
31 </string-array>
32 <string-array name="screen_timeout_entries">
40 </string-array>
41 <string-array name="dream_timeout_entries">
50 </string-array>
51 <string-array name="lock_after_timeout_entries">
61 </string-array>
62 <string-array name="entries_font_size">
67 </string-array>
    [all...]
  /packages/apps/Settings/res/values-bn-rBD/
arrays.xml 23 <string-array name="timezone_filters">
31 </string-array>
32 <string-array name="screen_timeout_entries">
40 </string-array>
41 <string-array name="dream_timeout_entries">
50 </string-array>
51 <string-array name="lock_after_timeout_entries">
61 </string-array>
62 <string-array name="entries_font_size">
67 </string-array>
    [all...]
  /packages/apps/Settings/res/values-ca/
arrays.xml 23 <string-array name="timezone_filters">
31 </string-array>
32 <string-array name="screen_timeout_entries">
40 </string-array>
41 <string-array name="dream_timeout_entries">
50 </string-array>
51 <string-array name="lock_after_timeout_entries">
61 </string-array>
62 <string-array name="entries_font_size">
67 </string-array>
    [all...]

Completed in 1064 milliseconds

<<11121314151617181920>>