Home
last modified time | relevance | path

Searched refs:IsArray (Results 1 – 25 of 2108) sorted by relevance

12345678910>>...85

/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/gtest/metaprogramming/
H A Dtest_isArray.cpp33 static const bool ia_A = IsArray<A>::value;
36 static const bool ia_Aptr = IsArray<A*>::value;
39 static const bool ia_Aarr = IsArray<A[]>::value;
42 static const bool ia_Aarr10 = IsArray<A[10]>::value;
45 static const bool ia_Aptrarr10 = IsArray<A*[10]>::value;
51 static const bool ia_cAarr = IsArray<const A[]>::value;
54 static const bool ia_vAarr = IsArray<volatile A[]>::value;
57 static const bool ia_cAarr10 = IsArray<const A[10]>::value;
63 static const bool ia_voidptr = IsArray<void*>::value;
66 static const bool ia_intptrt = IsArray<intptr_t>::value;
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/gtest/metaprogramming/
H A Dtest_isArray.cpp33 static const bool ia_A = IsArray<A>::value;
36 static const bool ia_Aptr = IsArray<A*>::value;
39 static const bool ia_Aarr = IsArray<A[]>::value;
42 static const bool ia_Aarr10 = IsArray<A[10]>::value;
45 static const bool ia_Aptrarr10 = IsArray<A*[10]>::value;
51 static const bool ia_cAarr = IsArray<const A[]>::value;
54 static const bool ia_vAarr = IsArray<volatile A[]>::value;
57 static const bool ia_cAarr10 = IsArray<const A[10]>::value;
63 static const bool ia_voidptr = IsArray<void*>::value;
66 static const bool ia_intptrt = IsArray<intptr_t>::value;
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/gtest/metaprogramming/
H A Dtest_isArray.cpp33 static const bool ia_A = IsArray<A>::value;
36 static const bool ia_Aptr = IsArray<A*>::value;
39 static const bool ia_Aarr = IsArray<A[]>::value;
42 static const bool ia_Aarr10 = IsArray<A[10]>::value;
45 static const bool ia_Aptrarr10 = IsArray<A*[10]>::value;
51 static const bool ia_cAarr = IsArray<const A[]>::value;
54 static const bool ia_vAarr = IsArray<volatile A[]>::value;
57 static const bool ia_cAarr10 = IsArray<const A[10]>::value;
63 static const bool ia_voidptr = IsArray<void*>::value;
66 static const bool ia_intptrt = IsArray<intptr_t>::value;
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/gtest/metaprogramming/
H A Dtest_isArray.cpp33 static const bool ia_A = IsArray<A>::value;
36 static const bool ia_Aptr = IsArray<A*>::value;
39 static const bool ia_Aarr = IsArray<A[]>::value;
42 static const bool ia_Aarr10 = IsArray<A[10]>::value;
45 static const bool ia_Aptrarr10 = IsArray<A*[10]>::value;
51 static const bool ia_cAarr = IsArray<const A[]>::value;
54 static const bool ia_vAarr = IsArray<volatile A[]>::value;
57 static const bool ia_cAarr10 = IsArray<const A[10]>::value;
63 static const bool ia_voidptr = IsArray<void*>::value;
66 static const bool ia_intptrt = IsArray<intptr_t>::value;
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/gtest/metaprogramming/
H A Dtest_isArray.cpp33 static const bool ia_A = IsArray<A>::value;
36 static const bool ia_Aptr = IsArray<A*>::value;
39 static const bool ia_Aarr = IsArray<A[]>::value;
42 static const bool ia_Aarr10 = IsArray<A[10]>::value;
45 static const bool ia_Aptrarr10 = IsArray<A*[10]>::value;
51 static const bool ia_cAarr = IsArray<const A[]>::value;
54 static const bool ia_vAarr = IsArray<volatile A[]>::value;
57 static const bool ia_cAarr10 = IsArray<const A[10]>::value;
63 static const bool ia_voidptr = IsArray<void*>::value;
66 static const bool ia_intptrt = IsArray<intptr_t>::value;
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/github.com/go-swagger/go-swagger/cmd/swagger/commands/diff/
H A Dnode.go13 IsArray bool `json:"is_array,omitempty"` member
20 if n.IsArray {
52 IsArray: n.IsArray,
66 node.TypeName, node.IsArray = getSchemaType(s)
68 node.TypeName, node.IsArray = getSchemaType(s.SchemaProps)
70 node.TypeName, node.IsArray = getSchemaType(s)
72 node.TypeName, node.IsArray = getSchemaType(s)
74 node.TypeName, node.IsArray = getSchemaType(s)
76 node.TypeName, node.IsArray = getSchemaType(&s)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
H A Drelease.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_basic()
24 const int expect_alive = IsArray ? 3 : 1; in test_basic()
42 if (IsArray) in test_basic()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/devel/libc++/libcxx-10.0.1.src/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/devel/llvm12/llvm-project-12.0.1.src/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/
H A Dreset.pass.cpp21 template <bool IsArray>
23 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_pointer()
24 const int expect_alive = IsArray ? 3 : 1; in test_reset_pointer()
58 template <bool IsArray>
60 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_nullptr()
61 const int expect_alive = IsArray ? 3 : 1; in test_reset_nullptr()
82 template <bool IsArray>
84 typedef typename std::conditional<IsArray, A[], A>::type VT; in test_reset_no_arg()
85 const int expect_alive = IsArray ? 3 : 1; in test_reset_no_arg()
/dports/lang/mono-basic/mono-basic-4.7/vbruntime/Test/Microsoft.VisualBasic/
H A DInformationTests.cs498 #region IsArray tests
523 Assert.AreEqual(false,Information.IsArray(30)); in IsArray_1()
526 Assert.AreEqual(true,Information.IsArray(oDT1)); in IsArray_1()
527 Assert.AreEqual(true,Information.IsArray(oDT2)); in IsArray_1()
528 Assert.AreEqual(true,Information.IsArray(oDT3)); in IsArray_1()
529 Assert.AreEqual(true,Information.IsArray(oDT4)); in IsArray_1()
530 Assert.AreEqual(true,Information.IsArray(oDT5)); in IsArray_1()
531 Assert.AreEqual(true,Information.IsArray(oDT6)); in IsArray_1()
532 Assert.AreEqual(true,Information.IsArray(oDT7)); in IsArray_1()
533 Assert.AreEqual(true,Information.IsArray(oDT8)); in IsArray_1()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Emit/tests/EnumBuilder/
H A DEnumBuilder.Properties.Tests.cs35 public void IsArray() in IsArray() method in System.Reflection.Emit.Tests.EnumBuilderPropertyTests
38 Assert.False(enumBuilder.IsArray); in IsArray()
42 Assert.False(asType.IsArray); in IsArray()
46 Assert.True(arrType.IsArray); in IsArray()
50 Assert.True(arrType.IsArray); in IsArray()
54 Assert.True(arrType.IsArray); in IsArray()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Emit/tests/GenericTypeParameterBuilder/
H A DGenericTypeParameterBuilderMakeArrayType.cs54 public void IsArray() in IsArray() method in System.Reflection.Emit.Tests.GenericTypeParameterBuilderMakeArrayType
57 Assert.False(typeParam.IsArray); in IsArray()
61 Assert.False(asType.IsArray); in IsArray()
65 Assert.True(arrType.IsArray); in IsArray()
69 Assert.True(arrType.IsArray); in IsArray()
73 Assert.True(arrType.IsArray); in IsArray()
/dports/editors/texmaker/texmaker-5.0.3/pdfium/core/fpdfapi/fpdf_parser/
H A Dcpdf_array.cpp28 bool CPDF_Array::IsArray() const { in IsArray() function in CPDF_Array
51 if (!IsArray() || m_Objects.size() != 4) in GetRect()
63 if (!IsArray() || m_Objects.size() != 6) in GetMatrix()
137 ASSERT(IsArray()); in SetAt()
176 ASSERT(IsArray()); in AddName()
181 ASSERT(IsArray()); in AddString()
186 ASSERT(IsArray()); in AddInteger()
191 ASSERT(IsArray()); in AddNumber()
198 ASSERT(IsArray()); in AddReference()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Emit/tests/TypeBuilder/
H A DTypeBuilderMakeArrayType.cs54 public void IsArray() in IsArray() method in System.Reflection.Emit.Tests.TypeBuilderMakeArrayType
57 Assert.False(typeBuilder.IsArray); in IsArray()
61 Assert.False(asType.IsArray); in IsArray()
65 Assert.True(arrType.IsArray); in IsArray()
69 Assert.True(arrType.IsArray); in IsArray()
73 Assert.True(arrType.IsArray); in IsArray()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/XamlBuildTask/Microsoft/Build/Tasks/Xaml/
H A DAttributeParameterData.cs61 if (type.UnderlyingType.IsArray) in AttributeParameterData()
70 this.IsArray = true; in AttributeParameterData()
83 if (!type.UnderlyingType.IsArray) in AttributeParameterData()
94 this.IsArray = true; in AttributeParameterData()
100 IsArray = false; in AttributeParameterData()
141 internal bool IsArray { get; set; } property in Microsoft.Build.Tasks.Xaml.AttributeParameterData
/dports/databases/erlang-epgsql/epgsql-4.1.0/src/
H A Depgsql_oid_db.erl29 -type oid_info() :: {Oid :: oid(), epgsql:type_name(), IsArray :: boolean()}.
94 [{{Name, IsArray}, Oid}
95 || #type{name = Name, is_array = IsArray, oid = Oid}
118 find_by_name(Name, IsArray, #oid_db{by_oid = ByOid} = Db) ->
119 Oid = oid_by_name(Name, IsArray, Db),
124 oid_by_name(Name, IsArray, #oid_db{by_name = ByName}) ->
125 kv_get({Name, IsArray}, ByName).
134 type_to_oid_info(#type{name = Name, is_array = IsArray, oid = Oid}) ->
135 {Oid, Name, IsArray}.

12345678910>>...85