Searched refs:rhs (Results 151 - 175 of 600) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/lldb/include/lldb/API/
H A DSBSourceManager.h22 SBSourceManager(const SBSourceManager &rhs);
26 const lldb::SBSourceManager &operator=(const lldb::SBSourceManager &rhs);
H A DSBExecutionContext.h26 SBExecutionContext(const lldb::SBExecutionContext &rhs);
42 const SBExecutionContext &operator=(const lldb::SBExecutionContext &rhs);
H A DSBMemoryRegionInfoList.h22 SBMemoryRegionInfoList(const lldb::SBMemoryRegionInfoList &rhs);
24 const SBMemoryRegionInfoList &operator=(const SBMemoryRegionInfoList &rhs);
H A DSBTypeCategory.h21 SBTypeCategory(const lldb::SBTypeCategory &rhs);
92 lldb::SBTypeCategory &operator=(const lldb::SBTypeCategory &rhs);
94 bool operator==(lldb::SBTypeCategory &rhs);
96 bool operator!=(lldb::SBTypeCategory &rhs);
H A DSBBreakpointName.h30 SBBreakpointName(const lldb::SBBreakpointName &rhs);
34 const lldb::SBBreakpointName &operator=(const lldb::SBBreakpointName &rhs);
37 // opaque breakpoint object in "rhs".
38 bool operator==(const lldb::SBBreakpointName &rhs);
40 bool operator!=(const lldb::SBBreakpointName &rhs);
H A DSBFileSpec.h20 SBFileSpec(const lldb::SBFileSpec &rhs);
29 const SBFileSpec &operator=(const lldb::SBFileSpec &rhs);
33 bool operator==(const SBFileSpec &rhs) const;
35 bool operator!=(const SBFileSpec &rhs) const;
/openbsd-current/gnu/llvm/lldb/include/lldb/Target/
H A DSectionLoadList.h27 SectionLoadList(const SectionLoadList &rhs);
35 void operator=(const SectionLoadList &rhs);
/openbsd-current/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/objcxx/
H A DPlatformiOSSimulatorCoreSimulatorSupport.h179 bool operator>(const OSVersion &lhs, const OSVersion &rhs);
181 bool operator>(const ModelIdentifier &lhs, const ModelIdentifier &rhs);
183 bool operator<(const OSVersion &lhs, const OSVersion &rhs);
185 bool operator<(const ModelIdentifier &lhs, const ModelIdentifier &rhs);
187 bool operator==(const OSVersion &lhs, const OSVersion &rhs);
189 bool operator==(const ModelIdentifier &lhs, const ModelIdentifier &rhs);
191 bool operator!=(const OSVersion &lhs, const OSVersion &rhs);
193 bool operator!=(const ModelIdentifier &lhs, const ModelIdentifier &rhs);
/openbsd-current/gnu/llvm/lldb/bindings/interface/
H A DSBMemoryRegionInfoList.i20 SBMemoryRegionInfoList (const lldb::SBMemoryRegionInfoList &rhs);
/openbsd-current/gnu/llvm/lldb/source/Host/macosx/cfcpp/
H A DCFCString.h21 CFCString(const CFCString &rhs);
22 CFCString &operator=(const CFCString &rhs);
/openbsd-current/gnu/llvm/llvm/lib/Target/VE/
H A DVEMachineFunctionInfo.h47 void setLeafProc(bool rhs) { IsLeafProc = rhs; } argument
/openbsd-current/gnu/llvm/llvm/lib/Target/Sparc/
H A DSparcMachineFunctionInfo.h55 void setLeafProc(bool rhs) { IsLeafProc = rhs; } argument
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/
H A Dunify1.C14 unit< I1 - Q1, I2 - Q2 > operator / ( const unit< Q1, Q2 >& rhs ) const {
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DDeclaration.cpp78 bool lldb_private::operator==(const Declaration &lhs, const Declaration &rhs) { argument
79 if (lhs.GetColumn() != rhs.GetColumn())
82 return lhs.GetLine() == rhs.GetLine() && lhs.GetFile() == rhs.GetFile();
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dcppexp.c1185 num_bitwise_op (pfile, lhs, rhs, op)
1187 cpp_num lhs, rhs;
1191 lhs.unsignedp = lhs.unsignedp || rhs.unsignedp;
1197 lhs.low &= rhs.low;
1198 lhs.high &= rhs.high;
1202 lhs.low |= rhs.low;
1203 lhs.high |= rhs.high;
1207 lhs.low ^= rhs.low;
1208 lhs.high ^= rhs.high;
1216 num_inequality_op (pfile, lhs, rhs, o
[all...]
/openbsd-current/gnu/llvm/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_exec_anatomy.py38 rhs = read_json(result)
40 self.assertTrue(rhs.count(item))
41 for item in rhs:
/openbsd-current/gnu/llvm/lldb/include/lldb/Symbol/
H A DLineTable.h241 static int Compare(const Entry &lhs, const Entry &rhs) { argument
248 SCALAR_COMPARE(lhs.file_addr, rhs.file_addr);
249 SCALAR_COMPARE(lhs.line, rhs.line);
250 SCALAR_COMPARE(lhs.column, rhs.column);
251 SCALAR_COMPARE(lhs.is_start_of_statement, rhs.is_start_of_statement);
252 SCALAR_COMPARE(lhs.is_start_of_basic_block, rhs.is_start_of_basic_block);
253 // rhs and lhs reversed on purpose below.
254 SCALAR_COMPARE(rhs.is_prologue_end, lhs.is_prologue_end);
255 SCALAR_COMPARE(lhs.is_epilogue_begin, rhs.is_epilogue_begin);
256 // rhs an
274 EntryAddressLessThan(const Entry &lhs, const Entry &rhs) argument
[all...]
/openbsd-current/gnu/llvm/lldb/source/API/
H A DSBSection.cpp25 SBSection::SBSection(const SBSection &rhs) : m_opaque_wp(rhs.m_opaque_wp) { argument
26 LLDB_INSTRUMENT_VA(this, rhs);
36 const SBSection &SBSection::operator=(const SBSection &rhs) { argument
37 LLDB_INSTRUMENT_VA(this, rhs);
39 m_opaque_wp = rhs.m_opaque_wp;
254 bool SBSection::operator==(const SBSection &rhs) { argument
255 LLDB_INSTRUMENT_VA(this, rhs);
258 SectionSP rhs_section_sp(rhs.GetSP());
264 bool SBSection::operator!=(const SBSection &rhs) { argument
[all...]
H A DSBReproducer.cpp33 SBReplayOptions::SBReplayOptions(const SBReplayOptions &rhs) {} argument
37 SBReplayOptions &SBReplayOptions::operator=(const SBReplayOptions &rhs) { argument
38 LLDB_INSTRUMENT_VA(this, rhs)
H A DSBCompileUnit.cpp29 SBCompileUnit::SBCompileUnit(const SBCompileUnit &rhs) argument
30 : m_opaque_ptr(rhs.m_opaque_ptr) {
31 LLDB_INSTRUMENT_VA(this, rhs);
34 const SBCompileUnit &SBCompileUnit::operator=(const SBCompileUnit &rhs) { argument
35 LLDB_INSTRUMENT_VA(this, rhs);
37 m_opaque_ptr = rhs.m_opaque_ptr;
198 bool SBCompileUnit::operator==(const SBCompileUnit &rhs) const {
199 LLDB_INSTRUMENT_VA(this, rhs);
201 return m_opaque_ptr == rhs.m_opaque_ptr;
204 bool SBCompileUnit::operator!=(const SBCompileUnit &rhs) cons
[all...]
H A DSBCommandReturnObject.cpp27 SBCommandReturnObjectImpl(const SBCommandReturnObjectImpl &rhs) argument
28 : m_ptr(new CommandReturnObject(*rhs.m_ptr)), m_owned(rhs.m_owned) {}
29 SBCommandReturnObjectImpl &operator=(const SBCommandReturnObjectImpl &rhs) { argument
30 SBCommandReturnObjectImpl copy(rhs);
57 SBCommandReturnObject::SBCommandReturnObject(const SBCommandReturnObject &rhs) { argument
58 LLDB_INSTRUMENT_VA(this, rhs);
60 m_opaque_up = clone(rhs.m_opaque_up);
64 operator=(const SBCommandReturnObject &rhs) { argument
65 LLDB_INSTRUMENT_VA(this, rhs);
[all...]
H A DSBWatchpoint.cpp36 SBWatchpoint::SBWatchpoint(const SBWatchpoint &rhs) argument
37 : m_opaque_wp(rhs.m_opaque_wp) {
38 LLDB_INSTRUMENT_VA(this, rhs);
41 const SBWatchpoint &SBWatchpoint::operator=(const SBWatchpoint &rhs) { argument
42 LLDB_INSTRUMENT_VA(this, rhs);
44 m_opaque_wp = rhs.m_opaque_wp;
71 bool SBWatchpoint::operator==(const SBWatchpoint &rhs) const {
72 LLDB_INSTRUMENT_VA(this, rhs);
74 return GetSP() == rhs.GetSP();
77 bool SBWatchpoint::operator!=(const SBWatchpoint &rhs) cons
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h31 WatchpointOptions(const WatchpointOptions &rhs);
33 static WatchpointOptions *CopyOptionsNoCallback(WatchpointOptions &rhs);
51 const WatchpointOptions &operator=(const WatchpointOptions &rhs);
/openbsd-current/gnu/gcc/gcc/
H A Dtree-ssa-dom.c70 tree rhs; member in struct:edge_info
122 /* The expression (rhs) we want to record. */
123 tree rhs; member in struct:expr_hash_elt
475 element->rhs = expr;
480 element->rhs = COND_EXPR_COND (expr);
485 element->rhs = SWITCH_COND (expr);
490 element->rhs = TREE_OPERAND (TREE_OPERAND (expr, 0), 1);
495 element->rhs = GOTO_DESTINATION (expr);
500 element->rhs = TREE_OPERAND (expr, 1);
630 tree rhs local
670 tree rhs = edge_info->rhs; local
729 tree rhs = NULL; local
827 tree rhs = edge_info->rhs; local
1181 tree lhs, rhs, preinc, phi; local
1567 tree rhs = TREE_OPERAND (stmt, 1); local
1593 tree rhs = TREE_OPERAND (stmt, 1); local
1808 tree rhs; local
1986 tree rhs = ((struct expr_hash_elt *)p)->rhs; local
2134 propagate_rhs_into_lhs(tree stmt, tree lhs, tree rhs, bitmap interesting_names) argument
2355 tree rhs; local
[all...]
H A Dtree-ssa-structalias.c423 struct constraint_expr rhs; member in struct:constraint
524 const struct constraint_expr rhs)
528 ret->rhs = rhs;
545 if (c->rhs.type == ADDRESSOF)
547 else if (c->rhs.type == DEREF)
549 fprintf (file, "%s", get_varinfo_fc (c->rhs.var)->name);
550 if (c->rhs.offset != 0)
551 fprintf (file, " + " HOST_WIDE_INT_PRINT_DEC, c->rhs.offset);
648 return constraint_expr_less (a->rhs,
523 new_constraint(const struct constraint_expr lhs, const struct constraint_expr rhs) argument
992 struct constraint_expr rhs = c->rhs; local
1051 struct constraint_expr rhs; local
1348 unsigned int rhs = c->rhs.var; local
1451 unsigned int rhs = find (c->rhs.var); local
1908 struct constraint_expr rhs = c->rhs; local
2274 struct constraint_expr rhs = t->rhs; local
2783 do_simple_structure_copy(const struct constraint_expr lhs, const struct constraint_expr rhs, const unsigned HOST_WIDE_INT size) argument
2821 do_rhs_deref_structure_copy(const struct constraint_expr lhs, const struct constraint_expr rhs, const unsigned HOST_WIDE_INT size) argument
2860 do_lhs_deref_structure_copy(const struct constraint_expr lhs, const struct constraint_expr rhs, const unsigned HOST_WIDE_INT size) argument
2922 struct constraint_expr lhs, rhs, tmp; local
3179 tree rhs = TREE_OPERAND (stmt, 1); local
3459 struct constraint_expr rhs; local
3823 struct constraint_expr lhs, rhs; local
3839 make_constraint_to_escaped(struct constraint_expr rhs) argument
4117 struct constraint_expr rhs; local
4215 struct constraint_expr rhs; local
4272 struct constraint_expr lhs, rhs; local
4557 struct constraint_expr lhs, rhs; local
4704 tree rhs; local
[all...]

Completed in 462 milliseconds

1234567891011>>