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

<<31323334353637383940>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
MD5.h 34 #include <array>
56 std::array<uint8_t, 16> Bytes;
58 operator std::array<uint8_t, 16>() const { return Bytes; }
98 static std::array<uint8_t, 16> hash(ArrayRef<uint8_t> Data);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
MD5.h 34 #include <array>
56 std::array<uint8_t, 16> Bytes;
58 operator std::array<uint8_t, 16>() const { return Bytes; }
98 static std::array<uint8_t, 16> hash(ArrayRef<uint8_t> Data);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
MD5.h 34 #include <array>
56 std::array<uint8_t, 16> Bytes;
58 operator std::array<uint8_t, 16>() const { return Bytes; }
98 static std::array<uint8_t, 16> hash(ArrayRef<uint8_t> Data);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug020.go 20 bugs/bug020.go:7: type of a structure field cannot be an open array
21 bugs/bug020.go:7: fatal error: width of a dynamic array
issue8612.go 7 // Gccgo had a bug comparing a struct or array value with an interface
8 // values, when the struct or array was not addressable.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug020.go 20 bugs/bug020.go:7: type of a structure field cannot be an open array
21 bugs/bug020.go:7: fatal error: width of a dynamic array
issue8612.go 7 // Gccgo had a bug comparing a struct or array value with an interface
8 // values, when the struct or array was not addressable.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_pass1.py 8 {"object with 1 member":["array with 1 element"]},
37 "array":[ ],
48 "jsontext": "{\"object with 1 member\":[\"array with 1 element\"]}",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_pass1.py 8 {"object with 1 member":["array with 1 element"]},
37 "array":[ ],
48 "jsontext": "{\"object with 1 member\":[\"array with 1 element\"]}",
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AMReceiver.java 66 ArrayList<String> array = new ArrayList<String>(); local
138 array.add("ActivityManager: " + s); //$NON-NLS-1$
143 AdtPlugin.printErrorToConsole(mLaunchInfo.getProject(), array.toArray());
145 AdtPlugin.printToConsole(mLaunchInfo.getProject(), array.toArray());
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
tlsle-symbol-offset.s 12 # by an array of size 48
  /art/libartbase/base/
iteration_range.h 64 inline auto ReverseRange(T (&array)[size]) {
65 return ReverseRange(MakeIterationRange<T*>(array, array+size));
  /art/test/575-checker-string-init-alias/src/
Main.java 36 int[] array = new int[1]; local
41 m.invoke(null, new Object[] { array , "foo" });
56 m.invoke(null, new Object[] { array, "bar" });
  /bionic/libc/private/
bionic_macros.h 81 // The arraysize(arr) macro returns the # of elements in an array arr.
86 // One caveat is that arraysize() doesn't accept any array of an
93 char (&ArraySizeHelper(T (&array)[N]))[N]; // NOLINT(readability/casting)
95 #define arraysize(array) (sizeof(ArraySizeHelper(array)))
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
DeviceInfoStore.java 89 * Start a new array of result.
97 * Start a new array of result with specified name.
107 * Complete adding result to the last started array.
177 * Adds a int array to the InfoStore
180 public void addArrayResult(String name, int[] array) throws IOException {
184 for (int value : checkArray(array)) {
191 * Adds a long array to the InfoStore
194 public void addArrayResult(String name, long[] array) throws IOException {
198 for (long value : checkArray(array)) {
205 * Adds a float array to the InfoStor
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
CommonDatabaseUtils.java 62 private static void fillArray(Cursor cursor, String[] array) {
63 for (int i = 0; i < array.length; i++) {
64 array[i] = cursor.getString(i);
  /external/autotest/client/cros/audio/
audio_analysis.py 35 @returns: A numpy array containing normalized signal. The normalized signal
39 signal = numpy.array(signal)
124 @returns: A numpy array containing frequency corresponding to
135 def peak_detection(array, window_size):
136 """Detects peaks in an array.
138 A point (i, array[i]) is a peak if array[i] is the maximum among
139 array[i - half_window_size] to array[i + half_window_size].
140 If array[i - half_window_size] to array[i + half_window_size] are all equal
    [all...]
  /external/clang/test/CodeGen/
blockstret.c 22 int array[512]; member in struct:bigbig
34 result->array[23] = param;
96 result->array[23] = argc;
  /external/clang/test/Sema/
offsetof.c 56 int test2[__builtin_offsetof(struct incomplete[10], [4].foo)]; // expected-error {{array has incomplete element type 'struct incomplete'}}
66 typedef struct Array { int array[1]; } Array; member in struct:Array
67 int test4 = __builtin_offsetof(Array, array);
70 return __builtin_offsetof(Array, array[*(int*)0]); // expected-warning{{indirection of non-volatile null pointer}} expected-note{{__builtin_trap}}
  /external/clang/test/SemaCXX/
offsetof.cpp 23 int array[17]; member in struct:HasArray
28 int array0[__builtin_offsetof(HasArray, array[5])];
29 int array1[__builtin_offsetof(HasArray, array[i])];
  /external/google-breakpad/src/testing/include/gmock/internal/
gmock-internal-utils.h 365 // native array, class StlContainerView<RawContainer> has the
394 // This specialization is used when RawContainer is a native array type.
400 // NativeArray<T> can represent a native array either by value or by
402 // can be used to reference a const native array. We cannot
407 static const_reference ConstReference(const Element (&array)[N]) {
423 // conversion of it doesn't help - only the conversion of the array).
424 return type(const_cast<Element*>(&array[0]), N, kReference);
426 return type(array, N, kReference);
429 static type Copy(const Element (&array)[N]) {
431 return type(const_cast<Element*>(&array[0]), N, kCopy)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
SetAddTester.java 46 E[] array = createArrayWithNullElement(); local
47 collection = getSubjectGenerator().create(array);
49 expectContents(array);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestStringMapGenerator.java 51 Entry<String, String>[] array = new Entry[entries.length]; local
56 array[i++] = e;
58 return create(array);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
TestEnumMultisetGenerator.java 44 AnEnum[] array = new AnEnum[elements.length]; local
47 array[i++] = (AnEnum) e;
49 return create(array);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListIndexOfTester.java 47 E[] array = createSamplesArray(); local
48 array[getNumElements() / 2] = samples.e0;
49 collection = getSubjectGenerator().create(array);

Completed in 4911 milliseconds

<<31323334353637383940>>