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

1 2 3 4 5

  /external/clang/test/CodeGenCXX/
debug-info-zero-length-arrays.cpp 10 // CHECK-SAME: baseType: [[ARRAY_TYPE:![0-9]+]]
11 // CHECK: [[ARRAY_TYPE]] = !DICompositeType(tag: DW_TAG_array_type,
  /frameworks/base/core/jni/
scoped_nullable_primitive_array.h 24 #define ARRAY_TRAITS(ARRAY_TYPE, POINTER_TYPE, NAME) \
27 static constexpr void getArrayRegion(JNIEnv* env, ARRAY_TYPE array, size_t start, \
32 static constexpr POINTER_TYPE getArrayElements(JNIEnv* env, ARRAY_TYPE array) { \
36 static constexpr void releaseArrayElements(JNIEnv* env, ARRAY_TYPE array, \
  /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
dbus_new_handlers_p2p.c 35 entry.array_type != DBUS_TYPE_BYTE ||
110 entry.array_type != WPAS_DBUS_TYPE_BINARRAY)
1009 entry.array_type != DBUS_TYPE_BYTE ||
1020 entry.array_type != WPAS_DBUS_TYPE_BINARRAY ||
1037 entry.array_type != WPAS_DBUS_TYPE_BINARRAY ||
    [all...]
  /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,
158 static_cast<int>(length), array_type,
168 array_type, initialize);
191 ExternalArrayType array_type = kExternalInt8Array; // Bogus initialization. local
194 Runtime::ArrayIdToTypeAndSize(arrayId, &array_type, &fixed_elements_kind,
202 JSTypedArray::cast(*source)->type() == array_type) {
253 static_cast<int>(length), array_type,
    [all...]
  /external/adhd/cras/src/common/
array.h 40 #define DECLARE_ARRAY_TYPE(element_type, array_type) \
45 } array_type;
  /external/libcxx/test/libcxx/experimental/filesystem/class.path/path.req/
is_pathable.pass.cpp 67 using array_type = CharT[25];
91 AssertPathable<array_type>();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/filesystem/class.path/path.req/
is_pathable.pass.cpp 67 using array_type = CharT[25];
91 AssertPathable<array_type>();
  /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
  /art/compiler/optimizing/
ssa_builder.cc 307 ReferenceTypeInfo array_type = array->GetReferenceTypeInfo(); local
308 DCHECK(array_type.IsPrimitiveArrayClass());
310 array_type.GetTypeHandle()->GetComponentType()->GetPrimitiveType());
337 DataType::Type array_type = GetPrimitiveArrayComponentType(array); local
338 DCHECK_EQ(DataType::Is64BitType(aget_int->GetType()), DataType::Is64BitType(array_type));
340 if (DataType::IsIntOrLongType(array_type)) {
349 DCHECK(DataType::IsFloatingPointType(array_type));
380 DataType::Type array_type = GetPrimitiveArrayComponentType(array); local
381 DCHECK_EQ(DataType::Is64BitType(value_type), DataType::Is64BitType(array_type));
383 if (DataType::IsFloatingPointType(array_type)) {
    [all...]
  /external/mesa3d/src/compiler/glsl/tests/
uniform_initializer_utils.cpp 172 const glsl_type *const array_type = local
174 ASSERT_FALSE(array_type->is_error());
186 val = new(mem_ctx) ir_constant(array_type, &values_for_array);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliArrayTypeElement.java 52 super(SmaliElementTypes.ARRAY_TYPE);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/
SmaliElementTypes.java 108 public static final SmaliCompositeElementType ARRAY_TYPE =
109 new SmaliCompositeElementType("ARRAY_TYPE", SmaliArrayTypeElement.FACTORY);
  /hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/
confirmationui_utils.h 80 using array_type = T[elements];
103 array_type data_;
  /external/adhd/cras/src/tests/
dbus_test.cc 250 const char *array_type, *element_type; local
253 array_type = DBUS_TYPE_ARRAY_AS_STRING DBUS_TYPE_STRING_AS_STRING;
257 array_type = DBUS_TYPE_ARRAY_AS_STRING DBUS_TYPE_OBJECT_PATH_AS_STRING;
261 array_type = DBUS_TYPE_ARRAY_AS_STRING DBUS_TYPE_UNIX_FD_AS_STRING;
272 arg.array ? array_type : element_type,
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 52 namespace array_type { namespace
  /system/tools/aidl/
type_cpp.h 42 Type* array_type = nullptr,
  /external/strace/
mpers.awk 103 } else if (special == "array_type") {
206 |enumeration_type|array_type|base_type|member/, temparray)) {
  /external/mesa3d/src/compiler/
glsl_types.cpp 1494 const struct glsl_type *vec_type, *array_type; local
1604 const glsl_type *array_type = glsl_type::get_array_instance(vec_type, local
1740 const struct glsl_type *vec_type, *array_type; local
1847 const glsl_type *array_type = glsl_type::get_array_instance(vec_type, local
    [all...]
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
ASTPathCriterion.java 318 case ARRAY_TYPE: {
549 if (typeTree.getKind() != Tree.Kind.ARRAY_TYPE) {
    [all...]
Insertions.java 361 || node.getKind() == Tree.Kind.ARRAY_TYPE)
433 irec = irec.extend(Tree.Kind.ARRAY_TYPE, ASTPath.TYPE);
690 case ARRAY_TYPE:
766 || ap1.get(i-2).getTreeKind() != Tree.Kind.ARRAY_TYPE)) {
816 case ARRAY_TYPE:
853 r = r.extend(Tree.Kind.ARRAY_TYPE, ASTPath.TYPE);
906 case ARRAY_TYPE:
    [all...]
GenericArrayLocationCriterion.java 281 && gpath.getLeaf().getKind() == Tree.Kind.ARRAY_TYPE) {
393 } else if (parent.getKind() == Tree.Kind.ARRAY_TYPE) {
406 if (elt.getKind() != Tree.Kind.ARRAY_TYPE) { // ArrayTypeTree
481 || (t.getKind() == Tree.Kind.ARRAY_TYPE)
  /external/clang/test/SemaCXX/
conversion-function.cpp 26 typedef int array_type[10]; typedef
40 operator array_type(); // expected-error{{conversion function cannot convert to an array type}}

Completed in 793 milliseconds

1 2 3 4 5