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

1 2 3 4 5 67 8 91011>>

  /external/libcxx/test/std/containers/sequences/array/array.tuple/
tuple_element.fail.cpp 10 // <array>
12 // tuple_element<I, array<T, N> >::type
19 #include <array>
23 // std::array is explicitly allowed to be initialized with A a = { init-list };.
31 typedef std::array<T, 3> C;
33 // expected-error@array:* {{static_assert failed "Index out of bounds in std::tuple_element<> (std::array)"}}
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
tuple_array_template_depth.pass.cpp 20 // on the array when it doesn't match the size of the tuple.
22 #include <array>
26 typedef std::array<char, 1256> array_t;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
tuple_array_template_depth.pass.cpp 23 // on the array.
25 #include <array>
29 typedef std::array<char, 1256> array_t;
  /external/libevent/test/
regress.rpc 7 array struct[run] run = 4;
13 array int how_often = 3;
21 array string notes = 4;
24 array int other_numbers = 6;
  /external/tensorflow/tensorflow/core/kernels/
cudnn_pooling_gpu.h 21 #include <array>
36 // Dimension order for all array arguments is: x, y, z.
42 const std::array<int64, 3>& size,
43 const std::array<int64, 3>& stride,
44 const std::array<int64, 3>& padding,
50 // Dimension order for all array arguments is: x, y, z.
56 const std::array<int64, 3>& window,
57 const std::array<int64, 3>& stride,
58 const std::array<int64, 3>& padding,
59 const std::array<int64, 3>& output_size
    [all...]
  /frameworks/base/graphics/java/android/graphics/
ColorMatrixColorFilter.java 45 * @param array Array of floats used to transform colors, treated as a 4x5
46 * matrix. The first 20 entries of the array are copied into
49 public ColorMatrixColorFilter(@NonNull float[] array) {
50 if (array.length < 20) {
53 mMatrix.set(array);
94 * @param array Array of floats used to transform colors, treated as a 4x5
95 * matrix. The first 20 entries of the array are copied into
102 * @throws ArrayIndexOutOfBoundsException if the specified array'
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestResource.java 21 final String array[] = {"Str1", "Str2", "Str3"}; field in class:Support_TestResource
27 { "parent4", "parentValue4" }, {"IntegerVal", 1}, {"StringArray", array}};
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/array/array.tuple/
get.fail.cpp 10 // <array>
12 // template <size_t I, class T, size_t N> T& get(array<T, N>& a);
19 #include <array>
23 // std::array is explicitly allowed to be initialized with A a = { init-list };.
31 typedef std::array<T, 3> C;
34 // expected-error@array:* {{static_assert failed "Index out of bounds in std::get<> (std::array)"}}
tuple_element.fail.cpp 10 // <array>
12 // tuple_element<I, array<T, N> >::type
19 #include <array>
23 // std::array is explicitly allowed to be initialized with A a = { init-list };.
31 typedef std::array<T, 3> C;
33 // expected-error@array:* {{static_assert failed "Index out of bounds in std::tuple_element<> (std::array)"}}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.assign/
tuple_array_template_depth.pass.cpp 20 // on the array when it doesn't match the size of the tuple.
22 #include <array>
26 typedef std::array<char, 1256> array_t;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
tuple_array_template_depth.pass.cpp 23 // on the array.
25 #include <array>
29 typedef std::array<char, 1256> array_t;
  /system/libvintf/include/vintf/
HalFormat.h 23 #include <array>
33 static const std::array<std::string, 2> gHalFormatStrings = {
KernelConfigType.h 22 #include <array>
34 static const std::array<std::string, 4> gKernelConfigTypeStrings = {
SchemaType.h 22 #include <array>
32 static const std::array<std::string, 2> gSchemaTypeStrings = {
Transport.h 23 #include <array>
34 static const std::array<std::string, 3> gTransportStrings = {
Tristate.h 22 #include <array>
33 static const std::array<std::string, 3> gTristateStrings = {
  /external/guava/guava/src/com/google/common/primitives/
Chars.java 124 * {@code array}.
126 * @param array an array of {@code char} values, possibly empty
128 * @return {@code true} if {@code array[i] == target} for some value of {@code
131 public static boolean contains(char[] array, char target) {
132 for (char value : array) {
142 * {@code array}.
144 * @param array an array of {@code char} values, possibly empty
146 * @return the least index {@code i} for which {@code array[i] == target}, o
442 char[] array = new char[len]; local
474 final char[] array; field in class:Chars.CharArrayAsList
    [all...]
Floats.java 108 * {@code array}. Note that this always returns {@code false} when {@code
111 * @param array an array of {@code float} values, possibly empty
113 * @return {@code true} if {@code array[i] == target} for some value of {@code
116 public static boolean contains(float[] array, float target) {
117 for (float value : array) {
127 * {@code array}. Note that this always returns {@code -1} when {@code target}
130 * @param array an array of {@code float} values, possibly empty
132 * @return the least index {@code i} for which {@code array[i] == target}, o
422 float[] array = new float[len]; local
457 final float[] array; field in class:Floats.FloatArrayAsList
    [all...]
Bytes.java 67 * {@code array}.
69 * @param array an array of {@code byte} values, possibly empty
71 * @return {@code true} if {@code array[i] == target} for some value of {@code
74 public static boolean contains(byte[] array, byte target) {
75 for (byte value : array) {
85 * {@code array}.
87 * @param array an array of {@code byte} values, possibly empty
89 * @return the least index {@code i} for which {@code array[i] == target}, o
270 final byte[] array; field in class:Bytes.ByteArrayAsList
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 122 * {@code array}.
124 * @param array an array of {@code char} values, possibly empty
126 * @return {@code true} if {@code array[i] == target} for some value of {@code
129 public static boolean contains(char[] array, char target) {
130 for (char value : array) {
140 * {@code array}.
142 * @param array an array of {@code char} values, possibly empty
144 * @return the least index {@code i} for which {@code array[i] == target}, o
391 char[] array = new char[len]; local
423 final char[] array; field in class:Chars.CharArrayAsList
    [all...]
Doubles.java 107 * {@code array}. Note that this always returns {@code false} when {@code
110 * @param array an array of {@code double} values, possibly empty
112 * @return {@code true} if {@code array[i] == target} for some value of {@code
115 public static boolean contains(double[] array, double target) {
116 for (double value : array) {
126 * {@code array}. Note that this always returns {@code -1} when {@code target}
129 * @param array an array of {@code double} values, possibly empty
131 * @return the least index {@code i} for which {@code array[i] == target}, o
421 double[] array = new double[len]; local
456 final double[] array; field in class:Doubles.DoubleArrayAsList
    [all...]
Floats.java 104 * {@code array}. Note that this always returns {@code false} when {@code
107 * @param array an array of {@code float} values, possibly empty
109 * @return {@code true} if {@code array[i] == target} for some value of {@code
112 public static boolean contains(float[] array, float target) {
113 for (float value : array) {
123 * {@code array}. Note that this always returns {@code -1} when {@code target}
126 * @param array an array of {@code float} values, possibly empty
128 * @return the least index {@code i} for which {@code array[i] == target}, o
418 float[] array = new float[len]; local
453 final float[] array; field in class:Floats.FloatArrayAsList
    [all...]
  /external/clang/test/CodeGen/
debug-info-block-out-return.c 21 typedef struct { int array[12]; } BigStruct_t; member in struct:__anon15894
  /external/clang/test/CodeGenCXX/
debug-info-global-ctor-dtor.cpp 13 A array[2]; variable
  /external/deqp/framework/delibs/decpp/
deArrayUtil.hpp 23 * \brief Array utils
32 //! Get an element of an array with a specified size.
34 const Elem& getSizedArrayElement (const Elem (&array)[Size], typename de::meta::EnableIf<int, LastElementIndex==Size>::Type offset)
37 return array[offset];
40 //! Get an element of an array with a compile-time constant size.
42 const Elem& getArrayElement (const Elem (&array)[Size], int offset)
45 return array[offset];

Completed in 1076 milliseconds

1 2 3 4 5 67 8 91011>>