/prebuilts/go/linux-x86/test/fixedbugs/ |
issue9862.go | 13 panic("bad 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>();
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.helper/ |
tuple_size_incomplete.pass.cpp | 22 #include <array> 60 test_complete<std::array<int, 5> >();
|
/system/libvintf/include/vintf/ |
Arch.h | 23 #include <array> 35 static const std::array<std::string, 4> gArchStrings = {
|
/toolchain/binutils/binutils-2.27/gold/testsuite/ |
debug_msg.cc | 59 void SortAscending(int array[], int size); // in odr_violation1.cc 60 void SortDescending(int array[], int size); // in odr_violation2.cc
|
/tools/apksig/src/test/java/com/android/apksig/internal/test/ |
MoreAsserts.java | 41 && (actual.arrayOffset() == 0) && (actual.array().length == actual.remaining())) { 42 actualArr = actual.array();
|
/prebuilts/tools/common/m2/repository/commons-lang/commons-lang/2.4/ |
commons-lang-2.4.jar | |
/art/runtime/interpreter/mterp/arm/ |
op_fill_array_data.S | 1 /* fill-array-data vAA, +BBBBBBBB */ 7 GET_VREG r0, r3 @ r0<- vAA (array object) 8 add r1, rPC, r1, lsl #1 @ r1<- PC + BBBBbbbb*2 (array data off.)
|
/art/runtime/interpreter/mterp/mips/ |
op_fill_array_data.S | 1 /* fill-array-data vAA, +BBBBBBBB */ 7 GET_VREG(a0, a3) # a0 <- vAA (array object) 8 EAS1(a1, rPC, a1) # a1 <- PC + BBBBbbbb*2 (array data off.)
|
/art/runtime/interpreter/mterp/mips64/ |
op_fill_array_data.S | 1 /* fill-array-data vAA, +BBBBBBBB */ 8 GET_VREG_U a0, a3 # a0 <- vAA (array object) 9 dlsa a1, a1, rPC, 1 # a1 <- PC + BBBBbbbb*2 (array data off.)
|
/cts/apps/CameraITS/tests/scene0/ |
test_gyro_bias.py | 51 times = numpy.array([(e["time"] - gyro_events[0]["time"])/1000000000.0 53 xs = numpy.array([e["x"] for e in gyro_events]) 54 ys = numpy.array([e["y"] for e in gyro_events]) 55 zs = numpy.array([e["z"] for e in gyro_events])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/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\"]}",
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
Hex.java | 47 * Converts an array of characters representing hexidecimal values into an 48 * array of bytes of those same values. The returned array will be half the 49 * length of the passed array, as it takes two characters to represent any 50 * given byte. An exception is thrown if the passed char array has an odd 53 * @param data An array of characters containing hexidecimal digits 54 * @return A byte array containing binary data decoded from 55 * the supplied char array. 98 * Converts an array of bytes into an array of characters representing the hexidecimal values of each byte in order [all...] |
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/ |
p5-0x.cpp | 23 any array[sizeof...(inits)] = { inits... }; local
|
/external/clang/test/CodeGenCXX/ |
implicit-copy-assign-operator.cpp | 16 int array[3][4]; member in struct:POD
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorInitializer.h | 32 Eigen::array<typename traits<Derived>::Index, traits<Derived>::NumDimensions>* indices, 47 Eigen::array<typename traits<Derived>::Index, traits<Derived>::NumDimensions>* indices, 63 Eigen::array<typename traits<Derived>::Index, traits<Derived>::NumDimensions>*, 73 Eigen::array<typename traits<Derived>::Index, traits<Derived>::NumDimensions> indices;
|
/external/eigen/unsupported/test/ |
cxx11_tensor_broadcast_sycl.cpp | 23 using Eigen::array; 31 array<int, 4> in_range = {{2, 3, 5, 7}}; 32 array<int, 4> broadcasts = {{2, 3, 1, 4}}; 33 array<int, 4> out_range; // = in_range * broadcasts
|
cxx11_tensor_generator.cpp | 17 float operator()(const array<Eigen::DenseIndex, 1>& coordinates) const { 37 float operator()(const array<Eigen::DenseIndex, 2>& coordinates) const { 61 array<float, 2> means; 64 array<float, 2> std_devs;
|
/external/ltp/testcases/kernel/syscalls/ipc/semop/ |
semop01.c | 94 if (get_arr.array[i] != i * i) { 132 get_arr.array = malloc(sizeof(unsigned short int) * PSEMS); 133 if (get_arr.array == NULL) 153 free(get_arr.array);
|
/external/mesa3d/src/compiler/glsl/ |
ir_set_program_inouts.cpp | 32 * tricky when variable array indexing involved. So this pass 155 type = type->fields.array; 161 type = type->fields.array; 167 type = type->fields.array; 173 type = type->fields.array; 199 * into in array fashion (an array or matrix). For the purpose of geometry 200 * shader inputs (which are always arrays*), this means that the array element 201 * must be something that can be indexed into in array fashion. 219 /* The only geometry shader input that is not an array i [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
Command.java | 147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
150 * @return a new array with the same contents
152 private static String[] copy(String[] array) {
153 String[] newArray = new String[array.length];
154 System.arraycopy(array, 0, newArray, 0, array.length);
|
/external/perf_data_converter/src/quipper/ |
binary_data_utils.cc | 55 string RawDataToHexString(const u8* array, size_t length) { 61 snprintf(buffer, sizeof(buffer), "%02x", array[i]); 72 bool HexStringToRawData(const string& str, u8* array, size_t length) { 76 // Stop when there are no more characters, or the array has been filled. 80 array[i] = strtol(one_byte.c_str(), &err, kHexRadix);
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
UnsafeByteOperations.java | 59 return ByteString.wrap(buffer.array(), offset + buffer.position(), buffer.remaining());
|
/external/python/cpython2/Lib/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\"]}",
|
/external/python/cpython3/Lib/test/test_json/ |
test_pass1.py | 8 {"object with 1 member":["array with 1 element"]}, 37 "array":[ ], 48 "jsontext": "{\"object with 1 member\":[\"array with 1 element\"]}",
|