Home
last modified time | relevance | path

Searched defs:other (Results 1 – 25 of 264) sorted by relevance

1234567891011

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dcopy-constructor-init.cpp81 X2(const X2 &other) {} in X2()
105 X5(const X5 &other) {} in X5()
111 X6(const X6 &other) {} in X6()
133 X10(const X10 &other) {} in X10()
139 X11(const X11 &other) {} in X11()
145 X12(const X12 &other) {} in X12()
152 X13(const X13 &other) {} in X13()
167 X15(const X15 &other) {} in X15()
173 X16(const X16 &other) {} in X16()
177 X17(const X17 &other) {} in X17()
[all …]
/llvm-project-15.0.7/lldb/examples/python/
H A Dsbvalue.py128 def __add__(self, other): argument
131 def __sub__(self, other): argument
134 def __mul__(self, other): argument
140 def __mod__(self, other): argument
146 def __pow__(self, other): argument
155 def __and__(self, other): argument
158 def __xor__(self, other): argument
161 def __or__(self, other): argument
164 def __div__(self, other): argument
170 def __iadd__(self, other): argument
[all …]
/llvm-project-15.0.7/libcxx/test/support/type_classification/
H A Dswappable.h23 constexpr lvalue_adl_swappable(lvalue_adl_swappable&& other) noexcept in lvalue_adl_swappable() function
27 constexpr lvalue_adl_swappable(lvalue_adl_swappable const& other) noexcept in lvalue_adl_swappable() function
58 lvalue_rvalue_adl_swappable(lvalue_rvalue_adl_swappable&& other) noexcept in lvalue_rvalue_adl_swappable() function
63 lvalue_rvalue_adl_swappable(lvalue_rvalue_adl_swappable const& other) noexcept in lvalue_rvalue_adl_swappable() function
95 rvalue_lvalue_adl_swappable(rvalue_lvalue_adl_swappable&& other) noexcept in rvalue_lvalue_adl_swappable() function
131 constexpr rvalue_adl_swappable(rvalue_adl_swappable&& other) noexcept in rvalue_adl_swappable() function
135 constexpr rvalue_adl_swappable(rvalue_adl_swappable const& other) noexcept in rvalue_adl_swappable() function
167 non_move_constructible_adl_swappable&& other) noexcept in non_move_constructible_adl_swappable()
172 non_move_constructible_adl_swappable const& other) noexcept in non_move_constructible_adl_swappable()
208 non_move_assignable_adl_swappable const& other) noexcept in non_move_assignable_adl_swappable()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cert/
H A Doop58-cpp.cpp13 A(const A &other) : m(other.m) { in A()
18 A &operator=(const A &other) { in operator =()
39 B(const B &other) : m(other.m) {} in B()
40 B(B &&other) : m(other.m) { in B() function in test_mutating_compliant_example::B
44 B &operator=(const B &other) { in operator =()
51 B &operator=(B &&other) { in operator =()
67 C(C &other) { in C() function in test_mutating_pointer::C
89 D(D &other) { in D() function in test_mutating_indirect_member::D
101 E(E &other) { in E() function in test_mutating_other_object::E
119 F(F &other) : a(other.a) { in F() function in test_mutating_member_function::F
[all …]
/llvm-project-15.0.7/libcxx/test/support/
H A Dcontrolled_allocators.h231 struct rebind { using other = CountingAllocator<U, ID>; }; member
236 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function
240 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function
297 struct rebind { using other = CountingAllocator<U, ID>; }; member
302 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function
306 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function
353 MinAlignedAllocator(MinAlignedAllocator const& other) : P(other.P) { in MinAlignedAllocator() function
357 MinAlignedAllocator(MinAlignedAllocator&& other) : P(other.P) { in MinAlignedAllocator() function
456 NullAllocator(NullAllocator const& other) : P(other.P) { in NullAllocator() function
460 NullAllocator(NullAllocator&& other) : P(other.P) { in NullAllocator() function
[all …]
/llvm-project-15.0.7/clang/test/CodeGenCUDASPIRV/
H A Dcopy-aggregate-byval.cu18 __attribute__((host)) __attribute__((device)) GpuData(const GpuData& other) {} in GpuData()
19 __attribute__((host)) __attribute__((device)) GpuData(GpuData&& other) {} in GpuData() function in GpuData
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DTimeout.h43 Timeout(const Timeout<Ratio2> &other) in Timeout()
48 Timeout(const std::chrono::duration<Rep2, Ratio2> &other) in Timeout()
/llvm-project-15.0.7/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
H A Dselect_on_container_copy_construction.pass.cpp44 A const other = a.select_on_container_copy_construction(); in main() local
53 A const other = a.select_on_container_copy_construction(); in main() local
/llvm-project-15.0.7/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
H A Doptional_U.pass.cpp95 optional<int> other(42); in test_with_test_type() local
110 optional<int> other(42); in test_with_test_type() local
126 optional<int> other; in test_with_test_type() local
139 optional<int> other; in test_with_test_type() local
253 constexpr StateTracker& operator=(StateTracker&& other) noexcept in test()
262 constexpr StateTracker& operator=(StateTracker const& other) noexcept in test()
311 optional<std::unique_ptr<D>> other(new D()); in main() local
H A Dconst_optional_U.pass.cpp89 const optional<int> other(42); in test_with_test_type() local
104 const optional<int> other(42); in test_with_test_type() local
120 const optional<int> other; in test_with_test_type() local
133 const optional<int> other; in test_with_test_type() local
/llvm-project-15.0.7/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
H A Drebind_alloc.pass.cpp31 template <class U> struct rebind {typedef ReboundA<U> other;}; typedef
42 template <class V> struct rebind {typedef ReboundB<V, U> other;}; typedef
70 struct rebind { typedef void other; }; typedef
79 typedef void other; typedef
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DVisibility.h92 void mergeLinkage(LinkageInfo other) { in mergeLinkage()
127 void mergeVisibility(LinkageInfo other) { in mergeVisibility()
132 void merge(LinkageInfo other) { in merge()
138 void mergeMaybeWithVisibility(LinkageInfo other, bool withVis) { in mergeMaybeWithVisibility()
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/dextIR/
H A DProgramState.py28 def match(self, other) -> bool: argument
68 def match(self, other) -> bool: argument
103 def match(self, other) -> bool: argument
/llvm-project-15.0.7/libcxx/include/__memory/
H A Dallocator.h42 template <class _Up> struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {typedef allocator<_Up> other;}; typedef
55 template <class _Up> struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {typedef allocator<_Up> other;}; typedef
/llvm-project-15.0.7/lld/ELF/
H A DSymbols.cpp383 void Symbol::mergeProperties(const Symbol &other) { in mergeProperties()
392 void Symbol::resolve(const Symbol &other) { in resolve()
421 void Symbol::resolveUndefined(const Undefined &other) { in resolveUndefined()
608 void Symbol::resolveCommon(const CommonSymbol &other) { in resolveCommon()
640 void Symbol::resolveDefined(const Defined &other) { in resolveDefined()
645 void Symbol::resolveLazy(const LazyObject &other) { in resolveLazy()
679 void Symbol::resolveShared(const SharedSymbol &other) { in resolveShared()
/llvm-project-15.0.7/mlir/include/mlir/Support/
H A DTiming.h189 Timer(Timer &&other) : Timer(other) { in Timer() function
274 TimingScope(const Timer &other) : timer(other) { in TimingScope()
278 TimingScope(Timer &&other) : timer(std::move(other)) { in TimingScope()
282 TimingScope(TimingScope &&other) : timer(std::move(other.timer)) {} in TimingScope() function
/llvm-project-15.0.7/llvm/utils/lit/lit/
H A DShCommands.py9 def __eq__(self, other): argument
45 def __eq__(self, other): argument
71 def __eq__(self, other): argument
98 def __eq__(self, other): argument
/llvm-project-15.0.7/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp32 function(const function& other) : invoker(0) { in function()
46 function& operator=(const function& other) { in operator =()
57 void swap(function& other) { in swap()
/llvm-project-15.0.7/clang/test/SemaCXX/Inputs/
H A Dstd-compare.h63 constexpr bool test_eq(partial_ordering const &other) const noexcept { in test_eq()
153 constexpr bool test_eq(weak_ordering const &other) const noexcept { in test_eq()
247 constexpr bool test_eq(strong_ordering const &other) const noexcept { in test_eq()
/llvm-project-15.0.7/clang/test/PCH/Inputs/
H A Dstd-compare.h63 constexpr bool test_eq(partial_ordering const &other) const noexcept { in test_eq()
153 constexpr bool test_eq(weak_ordering const &other) const noexcept { in test_eq()
247 constexpr bool test_eq(strong_ordering const &other) const noexcept { in test_eq()
/llvm-project-15.0.7/clang/test/CodeGenCXX/Inputs/
H A Dstd-compare.h63 constexpr bool test_eq(partial_ordering const &other) const noexcept { in test_eq()
153 constexpr bool test_eq(weak_ordering const &other) const noexcept { in test_eq()
247 constexpr bool test_eq(strong_ordering const &other) const noexcept { in test_eq()
/llvm-project-15.0.7/clang/test/Analysis/Inputs/
H A Dctu-onego-toplevel-other.cpp2 void other(int y) { in other() function
H A Dctu-onego-existingdef-other.cpp5 void other() { in other() function
H A Dctu-onego-indirect-other.cpp5 void other() { in other() function
/llvm-project-15.0.7/flang/test/Lower/
H A Dglobal-format-strings.f906 program other program

1234567891011