HomeSort by relevance Sort by last modified time
    Searched defs:array (Results 51 - 75 of 3039) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libcxx/test/std/iterators/iterator.container/
data.pass.cpp 15 // template <class T, size_t N> constexpr T* data(T (&array)[N]) noexcept; // C++17
21 #include <array>
59 void test_const_array( const T (&array)[Sz] )
61 ASSERT_NOEXCEPT(std::data(array));
62 assert ( std::data(array) == &array[0]); variable
68 std::array<int, 1> a; a[0] = 3;
  /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/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
array.pass.cpp 12 // array
37 typedef char array[3]; typedef
45 test_array<array>();
  /external/ltp/include/lapi/
semun.h 29 unsigned short *array; /* array for GETALL, SETALL */ member in union:semun
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/json/
JSONArrayTest.java 15 JSONArray array = new JSONArray(Arrays.asList("a", "b")); local
16 assertThat(array).isEqualTo(new JSONArray(array.toString()));
  /external/skia/gm/
srgb.cpp 18 const float array[] = { local
24 auto cf0 = SkColorFilter::MakeMatrixFilterRowMajor255(array);
  /external/skia/include/effects/
SkMergeImageFilter.h 20 sk_sp<SkImageFilter> array[] = { local
24 return Make(array, 2, cropRect);
  /external/skia/tests/
TemplatesTest.cpp 13 SkAutoSTMalloc<1, int> array; local
16 array[0] = 1;
17 REPORTER_ASSERT(reporter, array[0] == 1);
20 array.realloc(1);
22 array[0] = 1;
23 REPORTER_ASSERT(reporter, array[0] == 1);
26 array.realloc(2);
27 REPORTER_ASSERT(reporter, array[0] == 1);
30 array.realloc(1);
31 REPORTER_ASSERT(reporter, array[0] == 1)
    [all...]
  /external/skqp/gm/
srgb.cpp 18 const float array[] = { local
24 auto cf0 = SkColorFilter::MakeMatrixFilterRowMajor255(array);
  /external/skqp/include/effects/
SkMergeImageFilter.h 20 sk_sp<SkImageFilter> array[] = { local
24 return Make(array, 2, cropRect);
  /external/skqp/tests/
TemplatesTest.cpp 13 SkAutoSTMalloc<1, int> array; local
16 array[0] = 1;
17 REPORTER_ASSERT(reporter, array[0] == 1);
20 array.realloc(1);
22 array[0] = 1;
23 REPORTER_ASSERT(reporter, array[0] == 1);
26 array.realloc(2);
27 REPORTER_ASSERT(reporter, array[0] == 1);
30 array.realloc(1);
31 REPORTER_ASSERT(reporter, array[0] == 1)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
array2d.cc 23 auto array = MakeUnique<Array2D<float>>(n1, n2); local
26 auto set = [&array, n1, n2](int64 index, float value) {
27 (*array)(index / n2, index % n2) = value;
33 return array;
  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
resolve_pad_attributes.cc 38 const auto& array = model->GetArray(op->inputs[1]); local
39 if (!array.has_shape()) return false;
41 const std::vector<int>& dims = array.shape().dims();
44 std::vector<int> buffer = array.GetBuffer<ArrayDataType::kInt32>().data;
  /external/valgrind/massif/tests/
new-cpp.cpp 14 int array[1000]; member in struct:__anon42886
  /libcore/luni/src/main/java/libcore/reflect/
ListOfVariables.java 23 final ArrayList<TypeVariable<?>> array = new ArrayList<TypeVariable<?>>(); field in class:ListOfVariables
26 array.add(elem);
30 TypeVariable<?>[] a = new TypeVariable[array.size()];
31 return array.toArray(a);
  /libcore/support/src/test/java/tests/support/
Support_Proxy_I1.java 23 int[] array(long[] f); method in interface:Support_Proxy_I1
Support_Proxy_I2.java 22 int[] array(long[] f); method in interface:Support_Proxy_I2
Support_TestResource.java 21 final String array[] = {"Str1", "Str2", "Str3"}; field in class:Support_TestResource
27 { "parent4", "parentValue4" }, {"IntegerVal", 1}, {"StringArray", array}};
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18906.go 19 array = [257]int{}
20 slice = array[1:]
24 for i := range array {
25 array[i] = i - 1
18 array = [257]int{} var
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18906.go 19 array = [257]int{}
20 slice = array[1:]
24 for i := range array {
25 array[i] = i - 1
18 array = [257]int{} var
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/iterator.container/
data.pass.cpp 13 // template <class T, size_t N> constexpr T* data(T (&array)[N]) noexcept; // C++17
25 #include <array>
53 void test_const_array( const T (&array)[Sz] )
55 assert ( std::data(array) == &array[0]); variable
61 std::array<int, 1> a; a[0] = 3;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.cat/
array.pass.cpp 12 // array
47 typedef char array[3]; typedef
54 test_array<array>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.comp/
array.pass.cpp 12 // array
37 typedef char array[3]; typedef
45 test_array<array>();
  /system/chre/util/tests/
heap_test.cc 5 #include <array>
28 std::array<int, MaxSize> array; local
29 std::array<int, MaxSize> array_sorted;
32 array[i] = std::rand();
33 array_sorted[i] = array[i];
36 // make sure the popped data is in the right order of various array sizes.
39 v.push_back(array[i]);
68 std::array<int, MaxSize> array; local
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/
OperandsTest.java 41 Output<?>[] array = Operands.asOutputs(list); local
42 assertEquals(list.size(), array.length);
43 assertSame(array[0], list.get(0));
44 assertSame(array[1], list.get(1));

Completed in 328 milliseconds

1 23 4 5 6 7 8 91011>>