Home
last modified time | relevance | path

Searched defs:Int (Results 1 – 25 of 191) sorted by relevance

12345678

/third_party/rust/rust/tests/ui/mir/
Dmir_augmented_assignments.rs9 struct Int(i32); struct
82 impl AddAssign for Int { implementation
83 fn add_assign(&mut self, rhs: Int) { in add_assign()
88 impl BitAndAssign for Int { implementation
89 fn bitand_assign(&mut self, rhs: Int) { in bitand_assign()
94 impl BitOrAssign for Int { implementation
95 fn bitor_assign(&mut self, rhs: Int) { in bitor_assign()
100 impl BitXorAssign for Int { implementation
101 fn bitxor_assign(&mut self, rhs: Int) { in bitxor_assign()
106 impl DivAssign for Int { implementation
[all …]
/third_party/rust/rust/tests/ui/
Daugmented-assignments-rpass.rs13 struct Int(i32); struct
86 impl AddAssign for Int { implementation
87 fn add_assign(&mut self, rhs: Int) { in add_assign()
92 impl BitAndAssign for Int { implementation
93 fn bitand_assign(&mut self, rhs: Int) { in bitand_assign()
98 impl BitOrAssign for Int { implementation
99 fn bitor_assign(&mut self, rhs: Int) { in bitor_assign()
104 impl BitXorAssign for Int { implementation
105 fn bitxor_assign(&mut self, rhs: Int) { in bitxor_assign()
110 impl DivAssign for Int { implementation
[all …]
Daugmented-assignments.rs3 struct Int(i32); struct
5 impl AddAssign for Int { implementation
6 fn add_assign(&mut self, _: Int) { in add_assign()
/third_party/rust/rust/tests/ui/traits/
Daugmented-assignments-trait.rs4 struct Int(#[allow(unused_tuple_struct_fields)] i32); struct
6 impl AddAssign for Int { implementation
7 fn add_assign(&mut self, _: Int) { in add_assign()
/third_party/rust/rust/library/core/tests/
Dcmp.rs164 struct Int(isize); in cmp_default() struct
166 impl PartialEq for Int { in cmp_default() implementation
168 let Int(this) = *self; in cmp_default() localVariable
169 let Int(other) = *other; in cmp_default() localVariable
174 impl PartialOrd for Int { in cmp_default() implementation
176 let Int(this) = *self; in cmp_default() localVariable
177 let Int(other) = *other; in cmp_default() localVariable
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dflat_hash_map_test.cc73 struct Int { in TEST() struct
74 explicit Int(size_t value) : value(value) {} in TEST() function
75 Int() : value(0) { ADD_FAILURE(); } in TEST() argument
76 Int(const Int& other) : value(other.value) { ADD_FAILURE(); } in TEST() argument
78 bool operator==(const Int& other) const { return value == other.value; } in TEST()
79 size_t value; in TEST()
/third_party/rust/rust/tests/ui/rfcs/rfc-2632-const-trait-impl/
Dconst-and-non-const-impl.rs5 pub struct Int(i32); struct
15 impl std::ops::Add for Int { implementation
23 impl const std::ops::Add for Int { implementation
Dcall-const-trait-method-pass.rs5 struct Int(i32); struct
7 impl const std::ops::Add for Int { implementation
15 impl const PartialEq for Int { implementation
/third_party/libabigail/tests/data/test-diff-dwarf/
Dtest2-v1.cc1 typedef int Int; typedef
5 foo(Int, Char) in foo() argument
/third_party/rust/rust/tests/ui/auxiliary/
Daugmented_assignments.rs3 pub struct Int(pub i32); struct
5 impl AddAssign<i32> for Int { implementation
/third_party/rust/rust/tests/ui/numbers-arithmetic/
Dissue-8460.rs9 trait Int { trait
/third_party/rust/rust/tests/ui/consts/const-eval/
Dref_to_int_match.rs19 type Int = u64; typedef
22 type Int = u32; typedef
/third_party/rust/rust/tests/ui/issues/
Dissue-19850.rs8 trait Int { interface
/third_party/rust/rust/tests/ui/associated-types/
Dassociated-types-projection-bound-in-supertraits.rs14 trait Int: Not<Result=Self> + Sized { interface
Dassociated-types-projection-in-where-clause.rs8 trait Int interface
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DIntervalIterator.h72 inline void addNodeToInterval(Interval *Int, BasicBlock *BB) { in addNodeToInterval()
82 inline void addNodeToInterval(Interval *Int, Interval *I) { in addNodeToInterval()
181 Interval *Int = new Interval(Header); in ProcessInterval() local
200 void ProcessNode(Interval *Int, NodeTy *Node) { in ProcessNode()
/third_party/rust/rust/tests/ui/closures/2229_closure_analysis/optimization/
Dedge_case.rs7 struct Int(i32); struct
11 const REF_I : &'static Int = &I; variable
Dedge_case_run_pass.rs8 struct Int(i32); struct
12 const REF_I : &'static Int = &I; variable
/third_party/grpc/test/core/util/
Dsorted_pack_test.cc24 struct Int { struct
32 struct Cmp<Int<A>, Int<B>> { argument
/third_party/grpc/test/core/promise/
Dmatch_promise_test.cc27 struct Int { in TEST() struct
28 int x; in TEST()
/third_party/typescript/tests/cases/compiler/
DinferentialTypingObjectLiteralMethod2.ts1 interface Int<T, U> { interface
DinferentialTypingObjectLiteralMethod1.ts1 interface Int<T, U> { interface
/third_party/rust/rust/tests/ui/overloaded/
Doverloaded-index-in-field.rs28 trait Int { trait
/third_party/rust/rust/src/tools/miri/tests/fail/intrinsics/
Dfloat_to_int_64_too_big1.rs5 fn float_to_int_unchecked<Float: Copy, Int: Copy>(value: Float) -> Int; in float_to_int_unchecked() argument
Dfloat_to_int_64_too_small1.rs5 fn float_to_int_unchecked<Float: Copy, Int: Copy>(value: Float) -> Int; in float_to_int_unchecked() argument

12345678