HomeSort by relevance Sort by last modified time
    Searched refs:array_type (Results 1 - 25 of 46) sorted by null

1 2

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
call_traits.hpp 147 typedef T array_type[N];
151 typedef array_type& reference;
152 typedef const array_type& const_reference;
160 typedef const T array_type[N];
164 typedef array_type& reference;
165 typedef const array_type& const_reference;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
array_allocator.h 116 typedef _Array array_type; typedef in class:array_allocator
125 array_type* _M_array;
133 array_allocator(array_type* __array = 0) _GLIBCXX_USE_NOEXCEPT
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
array_allocator.h 116 typedef _Array array_type; typedef in class:array_allocator
125 array_type* _M_array;
133 array_allocator(array_type* __array = 0) _GLIBCXX_USE_NOEXCEPT
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
array_allocator.h 116 typedef _Array array_type; typedef in class:array_allocator
125 array_type* _M_array;
133 array_allocator(array_type* __array = 0) _GLIBCXX_USE_NOEXCEPT
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
array_allocator.h 116 typedef _Array array_type; typedef in class:array_allocator
125 array_type* _M_array;
135 array_allocator(array_type* __array = 0) _GLIBCXX_USE_NOEXCEPT
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_dict_helpers.c 367 char array_type[10]; local
370 err = os_snprintf(array_type, sizeof(array_type),
373 if (os_snprintf_error(sizeof(array_type), err))
381 array_type,
623 entry->array_type = DBUS_TYPE_BYTE;
673 DBusMessageIter *iter, int array_type,
681 entry->array_type = DBUS_TYPE_STRING;
750 entry->array_type = WPAS_DBUS_TYPE_BINARRAY;
823 int array_type = dbus_message_iter_get_element_type(iter_dict_val) local
    [all...]
dbus_dict_helpers.h 109 * Used only in struct wpa_dbus_dict_entry::array_type internally to identify
116 int array_type; /** the dbus type of the array elements if the dict member in struct:wpa_dbus_dict_entry
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 52 namespace array_type { namespace
  /device/google/dragon/audio/hal/
array.h 40 #define DECLARE_ARRAY_TYPE(element_type, array_type) \
45 } array_type;
  /art/compiler/optimizing/
ssa_builder.cc 308 ReferenceTypeInfo array_type = array->GetReferenceTypeInfo(); local
309 DCHECK(array_type.IsPrimitiveArrayClass());
310 return array_type.GetTypeHandle()->GetComponentType()->GetPrimitiveType();
335 Primitive::Type array_type = GetPrimitiveArrayComponentType(array); local
336 DCHECK_EQ(Primitive::Is64BitType(aget_int->GetType()), Primitive::Is64BitType(array_type));
338 if (Primitive::IsIntOrLongType(array_type)) {
347 DCHECK(Primitive::IsFloatingPointType(array_type));
376 Primitive::Type array_type = GetPrimitiveArrayComponentType(array); local
377 DCHECK_EQ(Primitive::Is64BitType(value_type), Primitive::Is64BitType(array_type));
379 if (Primitive::IsFloatingPointType(array_type)) {
    [all...]
  /external/mesa3d/src/glsl/tests/
uniform_initializer_utils.cpp 156 const glsl_type *const array_type = local
158 ASSERT_FALSE(array_type->is_error());
170 val = new(mem_ctx) ir_constant(array_type, &values_for_array);
  /system/tools/aidl/
type_cpp.h 42 Type* array_type = nullptr,
99 Type* array_type = nullptr,
104 write_method, array_type, nullable_type, src_file_name, line) {}
type_cpp.cpp 157 Type* array_type,
160 cpp_type, read_method, write_method, array_type, nullable_type),
393 Type* array_type,
403 array_type_(array_type),
  /external/v8/src/runtime/
runtime-typedarray.cc 78 void Runtime::ArrayIdToTypeAndSize(int arrayId, ExternalArrayType* array_type,
84 *array_type = kExternal##Type##Array; \
111 ExternalArrayType array_type = kExternalInt8Array; // Bogus initialization. local
114 Runtime::ArrayIdToTypeAndSize(arrayId, &array_type, &fixed_elements_kind,
159 static_cast<int>(length), array_type,
169 array_type, initialize);
192 ExternalArrayType array_type = kExternalInt8Array; // Bogus initialization. local
195 Runtime::ArrayIdToTypeAndSize(arrayId, &array_type, &fixed_elements_kind,
203 JSTypedArray::cast(*source)->type() == array_type) {
254 static_cast<int>(length), array_type,
    [all...]
  /external/opencv3/modules/viz/src/vtk/
vtkCloudMatSource.cpp 56 typedef vtkFloatArray array_type; typedef in struct:cv::viz::VtkDepthTraits
62 typedef vtkDoubleArray array_type; typedef in struct:cv::viz::VtkDepthTraits
244 normals = vtkSmartPointer< typename VtkDepthTraits<_Tn>::array_type >::New();
270 tcoords = vtkSmartPointer< typename VtkDepthTraits<_Tn>::array_type >::New();
  /art/compiler/dex/
verified_method.cc 235 const verifier::RegType& array_type(line->GetRegisterType(method_verifier,
240 if (array_type.IsPreciseReference()) {
244 ->GetComponentType(array_type, method_verifier->GetClassLoader());
  /external/mesa3d/src/glsl/
glsl_types.cpp 697 const struct glsl_type *vec_type, *array_type; local
703 array_type = glsl_type::get_array_instance(vec_type, r);
706 array_type = glsl_type::get_array_instance(vec_type, c);
709 return array_type->std140_base_alignment(false);
802 const glsl_type *array_type = glsl_type::get_array_instance(vec_type, local
805 return array_type->std140_size(false);
  /external/clang/test/SemaCXX/
conversion-function.cpp 23 typedef int array_type[10]; typedef
37 operator array_type(); // expected-error{{conversion function cannot convert to an array type}}
  /external/skia/src/gpu/
GrPath.cpp 96 #define ARRAY_DATA32_COUNT(array_type, count) \
97 static_cast<int>((((count) * sizeof(array_type) + sizeof(uint32_t) - 1) / sizeof(uint32_t)))
  /art/runtime/verifier/
method_verifier.cc 2500 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t()); local
4326 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x()); local
4441 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegB_23x()); local
4469 << "' but unresolved type '" << array_type << "'"; local
    [all...]
  /art/runtime/
transaction.cc 500 void Transaction::ArrayLog::UndoArrayWrite(mirror::Array* array, Primitive::Type array_type,
504 switch (array_type) {
533 LOG(FATAL) << "Unsupported type " << array_type;
transaction.h 161 void UndoArrayWrite(mirror::Array* array, Primitive::Type array_type, size_t index,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/python3/crcmod/
test.py 519 for array_type in self.array_check_types:
520 if i % array(array_type).itemsize == 0:
521 test_array = array(array_type, test_msg)
  /external/strace/
mpers.awk 101 case "array_type":
216 |enumeration_type|array_type|base_type|member/, temparray)) {
  /toolchain/binutils/binutils-2.25/binutils/
debug.h 235 bfd_boolean (*array_type) member in struct:debug_write_fns

Completed in 337 milliseconds

1 2