Searched refs:rhs (Results 1 - 25 of 40) sorted by relevance

12

/haiku-fatelf/src/libs/stdc++/legacy/
H A Dioassign.cc34 _IO_istream_withassign& _IO_istream_withassign::operator=(istream& rhs) argument
36 if (&rhs != (istream*)this)
38 init (rhs.rdbuf ());
44 _IO_ostream_withassign& _IO_ostream_withassign::operator=(ostream& rhs) argument
46 if (&rhs != (ostream*)this)
47 init (rhs.rdbuf ());
/haiku-fatelf/src/libs/ncurses/c++/
H A Dcursslk.h76 Soft_Label_Key& operator=(const Soft_Label_Key& rhs) argument
78 if (this != &rhs) {
79 *this = rhs;
84 Soft_Label_Key(const Soft_Label_Key& rhs) argument
86 format(rhs.format),
87 num(rhs.num)
89 *this = rhs.label;
148 Soft_Label_Key_Set& operator=(const Soft_Label_Key_Set& rhs) argument
150 if (this != &rhs) {
151 *this = rhs;
157 Soft_Label_Key_Set(const Soft_Label_Key_Set& rhs) argument
[all...]
H A Detip.h164 NCursesException& operator=(const NCursesException& rhs) argument
166 errorno = rhs.errorno;
170 NCursesException(const NCursesException& rhs) argument
171 : message(rhs.message), errorno(rhs.errorno)
212 NCursesPanelException& operator=(const NCursesPanelException& rhs) argument
214 if (this != &rhs) {
215 NCursesException::operator=(rhs);
216 p = rhs.p;
221 NCursesPanelException(const NCursesPanelException& rhs) argument
263 operator =(const NCursesMenuException& rhs) argument
272 NCursesMenuException(const NCursesMenuException& rhs) argument
314 operator =(const NCursesFormException& rhs) argument
323 NCursesFormException(const NCursesFormException& rhs) argument
[all...]
H A Dcursesapp.h93 NCursesApplication& operator=(const NCursesApplication& rhs) argument
95 if (this != &rhs) {
96 *this = rhs;
101 NCursesApplication(const NCursesApplication& rhs) argument
102 : b_Colors(rhs.b_Colors),
103 Root_Window(rhs.Root_Window)
H A Dcursesf.h83 NCursesFieldType& operator=(const NCursesFieldType& rhs) argument
85 if (this != &rhs) {
86 *this = rhs;
91 NCursesFieldType(const NCursesFieldType& rhs) argument
92 : fieldtype(rhs.fieldtype)
141 NCursesFormField& operator=(const NCursesFormField& rhs) argument
143 if (this != &rhs) {
144 *this = rhs;
149 NCursesFormField(const NCursesFormField& rhs) argument
150 : field(rhs
453 operator =(const NCursesForm& rhs) argument
462 NCursesForm(const NCursesForm& rhs) argument
812 operator =(const Regular_Expression_Field& rhs) argument
822 Regular_Expression_Field(const Regular_Expression_Field& rhs) argument
855 operator =(const Enumeration_Field& rhs) argument
864 Enumeration_Field(const Enumeration_Field& rhs) argument
[all...]
H A Dcursesm.h74 NCursesMenuItem& operator=(const NCursesMenuItem& rhs) argument
76 if (this != &rhs) {
77 *this = rhs;
82 NCursesMenuItem(const NCursesMenuItem& rhs) argument
167 NCursesMenuCallbackItem& operator=(const NCursesMenuCallbackItem& rhs) argument
169 if (this != &rhs) {
170 *this = rhs;
175 NCursesMenuCallbackItem(const NCursesMenuCallbackItem& rhs) argument
176 : NCursesMenuItem(rhs),
314 NCursesMenu& operator=(const NCursesMenu& rhs) argument
323 NCursesMenu(const NCursesMenu& rhs) argument
[all...]
H A Dcursesp.h116 NCursesPanel& operator=(const NCursesPanel& rhs) argument
118 if (this != &rhs) {
119 *this = rhs;
120 NCursesWindow::operator=(rhs);
125 NCursesPanel(const NCursesPanel& rhs) argument
126 : NCursesWindow(rhs),
127 p(rhs.p)
H A Ddemo.cc249 TestForm& operator=(const TestForm& rhs) argument
251 if (this != &rhs) {
252 *this = rhs;
257 TestForm(const TestForm& rhs) argument
258 : NCursesForm(rhs), F(0), mft(0), ift(0), eft(0)
425 MyMenu& operator=(const MyMenu& rhs) argument
427 if (this != &rhs) {
428 *this = rhs;
433 MyMenu(const MyMenu& rhs) argument
434 : NCursesMenu(rhs),
[all...]
H A Dcursesw.h767 NCursesWindow& operator=(const NCursesWindow& rhs) argument
769 if (this != &rhs)
770 *this = rhs;
774 NCursesWindow(const NCursesWindow& rhs) argument
775 : w(rhs.w), alloced(rhs.alloced), par(rhs.par), subwins(rhs.subwins), sib(rhs.sib)
1339 NCursesPad& operator=(const NCursesPad& rhs) argument
1348 NCursesPad(const NCursesPad& rhs) argument
[all...]
/haiku-fatelf/src/tests/kits/app/bmessage/
H A DMessageBoolItemTest.h41 ArrayType(const ArrayType& rhs) : array(NULL), size(0) argument
42 { *this = rhs; }
47 ArrayType& operator=(const ArrayType& rhs) argument
49 if (this != &rhs)
50 Assign(rhs.array, rhs.size);
H A DMessageCStringItemTest.h75 static bool Compare(const char* lhs, const char* rhs);
78 omparePolicy::Compare(const char* lhs, const char* rhs) argument
81 return rhs;
82 if (!rhs)
84 return strcmp(lhs, rhs) == 0;
H A DMessageMessageItemTest.h125 ArrayType(const ArrayType& rhs) : array(NULL), size(0) argument
126 { *this = rhs; }
131 ArrayType& operator=(const ArrayType& rhs) argument
133 if (this != &rhs)
134 Assign(rhs.array, rhs.size);
209 inline static bool Compare(const BMessage& lhs, const BMessage& rhs) argument
210 { return lhs.what == rhs.what; }
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A Dsettings_tools.cpp216 equal_driver_settings(const driver_settings *lhs, const driver_settings *rhs) argument
218 if (!lhs && !rhs)
220 else if (!lhs || !rhs)
223 if (lhs->parameter_count != rhs->parameter_count)
227 if (!equal_driver_parameters(&lhs->parameters[index], &rhs->parameters[index]))
236 equal_driver_parameters(const driver_parameter *lhs, const driver_parameter *rhs) argument
238 if (!lhs && !rhs)
240 else if (!lhs || !rhs)
243 if (lhs->name && rhs->name) {
244 if (strcmp(lhs->name, rhs
282 equal_interface_settings(const driver_settings *lhs, const driver_settings *rhs) argument
[all...]
/haiku-fatelf/src/bin/bash/
H A Dbraces.c364 char *t, *lhs, *rhs; local
375 rhs = substring (text, lhs_l + sizeof(BRACE_SEQ_SPECIFIER) - 1, tlen);
377 if (lhs[0] == 0 || rhs[0] == 0)
380 free (rhs);
389 /* Decide on rhs and whether or not it looks like the user specified
392 if (ISDIGIT (rhs[0]) || ((rhs[0] == '+' || rhs[0] == '-') && ISDIGIT (rhs[1])))
395 tr = strtoimax (rhs,
[all...]
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Duseless-if-before-free139 my ($lhs, $rhs) = ($2, $3);
142 if (!defined $rhs) { $non_NULL = $lhs }
143 elsif (is_NULL $rhs) { $non_NULL = $lhs }
144 elsif (is_NULL $lhs) { $non_NULL = $rhs }
/haiku-fatelf/headers/cpp/std/
H A Dbastring.h249 basic_string& operator+= (const basic_string& rhs) argument
250 { return append (rhs); }
494 const basic_string <charT, traits, Allocator>& rhs)
497 _str.append (rhs);
503 operator+ (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
506 _str.append (rhs);
512 operator+ (charT lhs, const basic_string <charT, traits, Allocator>& rhs) argument
515 _str.append (rhs);
521 operator+ (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
524 _str.append (rhs);
493 operator +(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
530 operator +(const basic_string <charT, traits, Allocator>& lhs, charT rhs) argument
539 operator ==(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
547 operator ==(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
554 operator ==(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
561 operator !=(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
568 operator !=(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
575 operator <(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
583 operator <(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
590 operator <(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
597 operator >(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
604 operator >(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
611 operator <=(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
618 operator <=(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
625 operator >=(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
632 operator >=(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
639 operator !=(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
647 operator >(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
655 operator <=(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
663 operator >=(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A Dsettings_tools.h26 const driver_settings *rhs);
28 const driver_parameter *rhs);
30 const driver_settings *rhs);
/haiku-fatelf/headers/private/app/
H A DLooperList.h50 LooperData(const LooperData& rhs);
51 LooperData& operator=(const LooperData& rhs);
/haiku-fatelf/src/bin/gdb/gdb/
H A Darch-utils.h59 extern int core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs);
60 extern int core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs);
H A Darch-utils.c163 core_addr_lessthan (CORE_ADDR lhs, CORE_ADDR rhs) argument
165 return (lhs < rhs);
169 core_addr_greaterthan (CORE_ADDR lhs, CORE_ADDR rhs) argument
171 return (lhs > rhs);
/haiku-fatelf/src/system/kernel/debug/
H A Ddebug_parser.cpp608 uint64 rhs = _ParseExpression(); local
613 if (!set_debug_variable(variable, rhs)) {
620 return rhs;
636 && rhs == 0) {
643 variableValue += rhs;
646 variableValue -= rhs;
649 variableValue *= rhs;
652 variableValue /= rhs;
655 variableValue %= rhs;
674 uint64 rhs local
999 uint64 rhs = _ParseUnary(); local
1006 uint64 rhs = _ParseUnary(); local
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/udf/
H A DUdfStructures.cpp773 logical_volume_descriptor::operator=(const logical_volume_descriptor &rhs) argument
775 _tag = rhs._tag;
776 _vds_number = rhs._vds_number;
777 _character_set = rhs._character_set;
778 _logical_volume_identifier = rhs._logical_volume_identifier;
779 _logical_block_size = rhs._logical_block_size;
780 _domain_id = rhs._domain_id;
781 _logical_volume_contents_use = rhs._logical_volume_contents_use;
782 _map_table_length = rhs._map_table_length;
783 _partition_map_count = rhs
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/udf/r5/
H A DUdfStructures.cpp754 logical_volume_descriptor::operator=(const logical_volume_descriptor &rhs) argument
756 _tag = rhs._tag;
757 _vds_number = rhs._vds_number;
758 _character_set = rhs._character_set;
759 _logical_volume_identifier = rhs._logical_volume_identifier;
760 _logical_block_size = rhs._logical_block_size;
761 _domain_id = rhs._domain_id;
762 _logical_volume_contents_use = rhs._logical_volume_contents_use;
763 _map_table_length = rhs._map_table_length;
764 _partition_map_count = rhs
[all...]
/haiku-fatelf/src/kits/shared/
H A DExpressionParser.cpp505 MAPM rhs = _ParsePower(); local
506 if (rhs == MAPM(0))
508 value = value / rhs;
512 MAPM rhs = _ParsePower(); local
513 if (rhs == MAPM(0))
515 value = value % rhs;
/haiku-fatelf/headers/cpp/
H A Diostream.h253 _IO_istream_withassign& operator=(_IO_istream_withassign& rhs) argument
254 { return operator= (static_cast<istream&> (rhs)); }
260 _IO_ostream_withassign& operator=(_IO_ostream_withassign& rhs) argument
261 { return operator= (static_cast<ostream&> (rhs)); }

Completed in 303 milliseconds

12