Home
last modified time | relevance | path

Searched refs:Int1 (Results 1 – 25 of 34) sorted by relevance

12

/external/llvm-project/llvm/unittests/ADT/
DPointerSumTypeTest.cpp16 enum Kinds { Float, Int1, Int2 }; enumerator
21 PointerSumTypeMember<Int1, int *>,
28 b(SumType::create<Int1>(&i1)), c(SumType::create<Int2>(&i2)), n() {} in PointerSumTypeTest()
40 EXPECT_EQ(Int1, b.getTag()); in TEST_F()
47 EXPECT_FALSE(a.is<Int1>()); in TEST_F()
50 EXPECT_TRUE(b.is<Int1>()); in TEST_F()
53 EXPECT_FALSE(c.is<Int1>()); in TEST_F()
59 EXPECT_EQ(nullptr, a.get<Int1>()); in TEST_F()
62 EXPECT_EQ(&i1, b.get<Int1>()); in TEST_F()
65 EXPECT_EQ(nullptr, c.get<Int1>()); in TEST_F()
[all …]
/external/llvm/unittests/ADT/
DPointerSumTypeTest.cpp17 enum Kinds { Float, Int1, Int2 }; enumerator
22 PointerSumTypeMember<Int1, int *>,
29 b(SumType::create<Int1>(&i1)), c(SumType::create<Int2>(&i2)), n() {} in PointerSumTypeTest()
41 EXPECT_EQ(Int1, b.getTag()); in TEST_F()
48 EXPECT_FALSE(a.is<Int1>()); in TEST_F()
51 EXPECT_TRUE(b.is<Int1>()); in TEST_F()
54 EXPECT_FALSE(c.is<Int1>()); in TEST_F()
60 EXPECT_EQ(nullptr, a.get<Int1>()); in TEST_F()
63 EXPECT_EQ(&i1, b.get<Int1>()); in TEST_F()
66 EXPECT_EQ(nullptr, c.get<Int1>()); in TEST_F()
[all …]
/external/llvm-project/clang/test/Index/
Dcomplete-interfaces.m4 @class Int1, Int2, Int3, Int4;
23 // CHECK-CC1: ObjCInterfaceDecl:{TypedText Int1}
28 // CHECK-CC2: ObjCInterfaceDecl:{TypedText Int1}
33 // CHECK-CC3: ObjCInterfaceDecl:{TypedText Int1}
37 // CHECK-CC4: ObjCInterfaceDecl:{TypedText Int1}
42 // CHECK-CC5: ObjCInterfaceDecl:{TypedText Int1}
59 // CHECK-USE-NOT: Int1
/external/clang/test/Index/
Dcomplete-interfaces.m4 @class Int1, Int2, Int3, Int4;
23 // CHECK-CC1: ObjCInterfaceDecl:{TypedText Int1}
28 // CHECK-CC2: ObjCInterfaceDecl:{TypedText Int1}
33 // CHECK-CC3: ObjCInterfaceDecl:{TypedText Int1}
37 // CHECK-CC4: ObjCInterfaceDecl:{TypedText Int1}
42 // CHECK-CC5: ObjCInterfaceDecl:{TypedText Int1}
/external/llvm-project/polly/test/Isl/Ast/
Daliasing_multiple_alias_groups.ll4 ; void jd(int *Int0, int *Int1, float *Float0, float *Float1) {
6 ; Int0[i] = Int1[i];
26 define void @jd(i32* nocapture %Int0, i32* nocapture readonly %Int1, float* nocapture %Float0, floa…
32 %arrayidx = getelementptr inbounds i32, i32* %Int1, i64 %indvars.iv
/external/llvm-project/polly/test/ScopInfo/
Daliasing_multiple_alias_groups.ll4 ; void jd(int *Int0, int *Int1, float *Float0, float *Float1) {
6 ; Int0[i] = Int1[i];
13 define void @jd(i32* nocapture %Int0, i32* nocapture readonly %Int1, float* nocapture %Float0, floa…
19 %arrayidx = getelementptr inbounds i32, i32* %Int1, i64 %indvars.iv
/external/clang/test/CodeGenObjC/
Dcompatibility-alias.m3 @interface Int1 @end interface
5 typedef Int1 Int1Typedef;
Dencode-test.m6 @class Int1;
12 @interface Int1 { interface
18 @implementation Int1 implementation
55 Int1 *sBase;
/external/llvm-project/clang/test/CodeGenObjC/
Dcompatibility-alias.m3 @interface Int1 @end interface
5 typedef Int1 Int1Typedef;
Dencode-test.m6 @class Int1;
12 @interface Int1 { interface
18 @implementation Int1 implementation
55 Int1 *sBase;
/external/llvm/unittests/IR/
DConstantsTest.cpp26 IntegerType *Int1 = IntegerType::get(Context, 1); in TEST() local
27 Constant* One = ConstantInt::get(Int1, 1, true); in TEST()
28 Constant* Zero = ConstantInt::get(Int1, 0); in TEST()
29 Constant* NegOne = ConstantInt::get(Int1, static_cast<uint64_t>(-1), true); in TEST()
30 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1)); in TEST()
31 Constant* Undef = UndefValue::get(Int1); in TEST()
360 Constant *Int1 = ConstantExpr::getPtrToInt(G1, IntTy); in TEST() local
362 ASSERT_NE(Int1, Int2); in TEST()
365 new GlobalVariable(*M, IntTy, false, GlobalValue::ExternalLinkage, Int1); in TEST()
366 ASSERT_EQ(Int1, Ref->getInitializer()); in TEST()
DInstructionsTest.cpp37 IntegerType* Int1 = IntegerType::get(C, 1); in TEST() local
38 Constant* One = ConstantInt::get(Int1, 1, true); in TEST()
127 IntegerType* Int1 = IntegerType::get(C, 1); in TEST() local
128 Constant* One = ConstantInt::get(Int1, 1, true); in TEST()
/external/llvm-project/clang/test/CXX/dcl.decl/dcl.decomp/
Dp3.cpp105 using Int1 = int[1]; in referenced_type() typedef
106 using Int1 = decltype(b0); in referenced_type() typedef
107 using Int1 = decltype(br0); in referenced_type() typedef
108 using Int1 = decltype(brr0); in referenced_type() typedef
/external/llvm-project/llvm/test/TableGen/
Dcompare.td60 // CHECK: def Int1
67 def Int1 : IntCompare<-7, 13>;
81 list<bit> compare2 = [!ne(Bit00, Bit00), !ne(Bit00, Int1)];
/external/llvm-project/llvm/unittests/IR/
DConstantsTest.cpp25 IntegerType *Int1 = IntegerType::get(Context, 1); in TEST() local
26 Constant* One = ConstantInt::get(Int1, 1, true); in TEST()
27 Constant* Zero = ConstantInt::get(Int1, 0); in TEST()
28 Constant* NegOne = ConstantInt::get(Int1, static_cast<uint64_t>(-1), true); in TEST()
29 EXPECT_EQ(NegOne, ConstantInt::getSigned(Int1, -1)); in TEST()
30 Constant* Poison = PoisonValue::get(Int1); in TEST()
360 Constant *Int1 = ConstantExpr::getPtrToInt(G1, IntTy); in TEST() local
362 ASSERT_NE(Int1, Int2); in TEST()
365 new GlobalVariable(*M, IntTy, false, GlobalValue::ExternalLinkage, Int1); in TEST()
366 ASSERT_EQ(Int1, Ref->getInitializer()); in TEST()
/external/llvm-project/clang-tools-extra/test/clang-move/Inputs/
Dtype_alias.h1 typedef int Int1; typedef
/external/llvm-project/clang/unittests/Tooling/Syntax/
DSynthesisTest.cpp141 auto *Int1 = createTree(*Arena, {{Leaf1, NodeRole::LiteralToken}}, in TEST_P() local
151 {{Int1, NodeRole::LeftHandSide}, in TEST_P()
/external/llvm-project/flang/unittests/Evaluate/
Dintrinsics.cpp150 using Int1 = Type<TypeCategory::Integer, 1>; in TestIntrinsics() typedef
186 .Push(Const(Scalar<Int1>{})) in TestIntrinsics()
187 .DoCall(Int1::GetType()); in TestIntrinsics()
264 .Push(Const(Scalar<Int1>{})) in TestIntrinsics()
/external/openscreen/third_party/abseil/src/absl/types/
Doptional_test.cc1240 struct Int1 { struct
1241 Int1() = default;
1242 Int1(int i) : i(i) {} // NOLINT(runtime/explicit) in Int1() function
1253 constexpr bool operator==(const Int1& lhs, const Int2& rhs) { in operator ==()
1256 constexpr bool operator!=(const Int1& lhs, const Int2& rhs) { in operator !=()
1259 constexpr bool operator<(const Int1& lhs, const Int2& rhs) { in operator <()
1262 constexpr bool operator<=(const Int1& lhs, const Int2& rhs) { in operator <=()
1265 constexpr bool operator>(const Int1& lhs, const Int2& rhs) { in operator >()
1268 constexpr bool operator>=(const Int1& lhs, const Int2& rhs) { in operator >=()
1275 TestComparisons<Int1, int, int>(); in TEST()
[all …]
/external/webrtc/third_party/abseil-cpp/absl/types/
Doptional_test.cc1242 struct Int1 { struct
1243 Int1() = default;
1244 Int1(int i) : i(i) {} // NOLINT(runtime/explicit) in Int1() argument
1255 constexpr bool operator==(const Int1& lhs, const Int2& rhs) { in operator ==()
1258 constexpr bool operator!=(const Int1& lhs, const Int2& rhs) { in operator !=()
1261 constexpr bool operator<(const Int1& lhs, const Int2& rhs) { in operator <()
1264 constexpr bool operator<=(const Int1& lhs, const Int2& rhs) { in operator <=()
1267 constexpr bool operator>(const Int1& lhs, const Int2& rhs) { in operator >()
1270 constexpr bool operator>=(const Int1& lhs, const Int2& rhs) { in operator >=()
1277 TestComparisons<Int1, int, int>(); in TEST()
[all …]
/external/libtextclassifier/abseil-cpp/absl/types/
Doptional_test.cc1240 struct Int1 { struct
1241 Int1() = default;
1242 Int1(int i) : i(i) {} // NOLINT(runtime/explicit) in Int1() argument
1253 constexpr bool operator==(const Int1& lhs, const Int2& rhs) { in operator ==()
1256 constexpr bool operator!=(const Int1& lhs, const Int2& rhs) { in operator !=()
1259 constexpr bool operator<(const Int1& lhs, const Int2& rhs) { in operator <()
1262 constexpr bool operator<=(const Int1& lhs, const Int2& rhs) { in operator <=()
1265 constexpr bool operator>(const Int1& lhs, const Int2& rhs) { in operator >()
1268 constexpr bool operator>=(const Int1& lhs, const Int2& rhs) { in operator >=()
1275 TestComparisons<Int1, int, int>(); in TEST()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/types/
Doptional_test.cc1240 struct Int1 { struct
1241 Int1() = default;
1242 Int1(int i) : i(i) {} // NOLINT(runtime/explicit) in Int1() function
1253 constexpr bool operator==(const Int1& lhs, const Int2& rhs) { in operator ==()
1256 constexpr bool operator!=(const Int1& lhs, const Int2& rhs) { in operator !=()
1259 constexpr bool operator<(const Int1& lhs, const Int2& rhs) { in operator <()
1262 constexpr bool operator<=(const Int1& lhs, const Int2& rhs) { in operator <=()
1265 constexpr bool operator>(const Int1& lhs, const Int2& rhs) { in operator >()
1268 constexpr bool operator>=(const Int1& lhs, const Int2& rhs) { in operator >=()
1275 TestComparisons<Int1, int, int>(); in TEST()
[all …]
/external/angle/third_party/abseil-cpp/absl/types/
Doptional_test.cc1240 struct Int1 { struct
1241 Int1() = default;
1242 Int1(int i) : i(i) {} // NOLINT(runtime/explicit) in Int1() argument
1253 constexpr bool operator==(const Int1& lhs, const Int2& rhs) { in operator ==()
1256 constexpr bool operator!=(const Int1& lhs, const Int2& rhs) { in operator !=()
1259 constexpr bool operator<(const Int1& lhs, const Int2& rhs) { in operator <()
1262 constexpr bool operator<=(const Int1& lhs, const Int2& rhs) { in operator <=()
1265 constexpr bool operator>(const Int1& lhs, const Int2& rhs) { in operator >()
1268 constexpr bool operator>=(const Int1& lhs, const Int2& rhs) { in operator >=()
1275 TestComparisons<Int1, int, int>(); in TEST()
[all …]
/external/abseil-cpp/absl/types/
Doptional_test.cc1242 struct Int1 { struct
1243 Int1() = default;
1244 Int1(int i) : i(i) {} // NOLINT(runtime/explicit) in Int1() argument
1255 constexpr bool operator==(const Int1& lhs, const Int2& rhs) { in operator ==()
1258 constexpr bool operator!=(const Int1& lhs, const Int2& rhs) { in operator !=()
1261 constexpr bool operator<(const Int1& lhs, const Int2& rhs) { in operator <()
1264 constexpr bool operator<=(const Int1& lhs, const Int2& rhs) { in operator <=()
1267 constexpr bool operator>(const Int1& lhs, const Int2& rhs) { in operator >()
1270 constexpr bool operator>=(const Int1& lhs, const Int2& rhs) { in operator >=()
1277 TestComparisons<Int1, int, int>(); in TEST()
[all …]
/external/llvm-project/llvm/unittests/BinaryFormat/
DMsgPackDocumentTest.cpp19 DocNode Int1 = Doc.getNode(1), Int2 = Doc.getNode(2); in TEST() local
22 ASSERT_TRUE(Int1 != Int2); in TEST()

12