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

/haiku/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/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; }
H A DMessageItemTest.h50 class ComparePolicy // bool Compare(const Type& lhs, const Type& rhs)
139 inline static bool Compare(const T& lhs, const T& rhs);
140 // { return lhs == rhs; }
144 TMessageItemComparePolicy<T>::Compare(const T &lhs, const T &rhs) argument
146 return lhs == rhs;
168 class ComparePolicy // bool Compare(const Type& lhs, const Type& rhs)
/haiku/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/src/add-ons/accelerants/framebuffer/
H A Dmode.cpp29 operator==(const display_mode &lhs, const display_mode &rhs) argument
31 return lhs.space == rhs.space
32 && lhs.virtual_width == rhs.virtual_width
33 && lhs.virtual_height == rhs.virtual_height
34 && lhs.h_display_start == rhs.h_display_start
35 && lhs.v_display_start == rhs.v_display_start;
/haiku/src/system/libnetwork/netresolv/net/
H A Dhesiod.c89 char *rhs; /* AKA the default hesiod domain */ local
131 * The default rhs can be overridden by an
141 if (ctx->rhs)
142 free(ctx->rhs);
143 ctx->rhs = malloc(strlen(p) + 2);
144 if (ctx->rhs) {
145 *ctx->rhs = '.';
146 strcpy(ctx->rhs + 1,
161 if (ctx->rhs)
162 free(ctx->rhs);
196 const char *rhs; local
[all...]
/haiku/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/headers/cpp/std/
H A Dbastring.h251 basic_string& operator+= (const basic_string& rhs) argument
252 { return append (rhs); }
500 const basic_string <charT, traits, Allocator>& rhs)
503 _str.append (rhs);
509 operator+ (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
512 _str.append (rhs);
518 operator+ (charT lhs, const basic_string <charT, traits, Allocator>& rhs) argument
521 _str.append (rhs);
527 operator+ (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
530 _str.append (rhs);
499 operator +(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
536 operator +(const basic_string <charT, traits, Allocator>& lhs, charT rhs) argument
545 operator ==(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
553 operator ==(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
560 operator ==(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
567 operator !=(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
574 operator !=(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
581 operator <(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
589 operator <(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
596 operator <(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
603 operator >(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
610 operator >(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
617 operator <=(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
624 operator <=(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
631 operator >=(const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
638 operator >=(const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
645 operator !=(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
653 operator >(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
661 operator <=(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
669 operator >=(const basic_string <charT, traits, Allocator>& lhs, const basic_string <charT, traits, Allocator>& rhs) argument
[all...]
/haiku/src/add-ons/accelerants/virtio/
H A Dmode.cpp28 operator==(const display_mode &lhs, const display_mode &rhs) argument
30 return lhs.space == rhs.space
31 && lhs.virtual_width == rhs.virtual_width
32 && lhs.virtual_height == rhs.virtual_height
33 && lhs.h_display_start == rhs.h_display_start
34 && lhs.v_display_start == rhs.v_display_start;
/haiku/headers/private/app/
H A DLooperList.h50 LooperData(const LooperData& rhs);
51 LooperData& operator=(const LooperData& rhs);
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageExpressionEvaluator.cpp338 Operand& operator+=(const Operand& rhs) argument
340 Operand temp = rhs;
418 Operand& operator-=(const Operand& rhs) argument
420 Operand temp = rhs;
498 Operand& operator/=(const Operand& rhs) argument
500 Operand temp = rhs;
578 Operand& operator*=(const Operand& rhs) argument
580 Operand temp = rhs;
658 Operand& operator%=(const Operand& rhs) argument
660 Operand temp = rhs;
724 operator &=(const Operand& rhs) argument
790 operator |=(const Operand& rhs) argument
856 operator ^=(const Operand& rhs) argument
1530 Operand rhs = _ParseUnary(); local
1539 Operand rhs = _ParseUnary(); local
[all...]
/haiku/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/src/add-ons/kernel/file_systems/udf/
H A DUdfStructures.cpp777 logical_volume_descriptor::operator=(const logical_volume_descriptor &rhs) argument
779 _tag = rhs._tag;
780 _vds_number = rhs._vds_number;
781 _character_set = rhs._character_set;
782 _logical_volume_identifier = rhs._logical_volume_identifier;
783 _logical_block_size = rhs._logical_block_size;
784 _domain_id = rhs._domain_id;
785 _logical_volume_contents_use = rhs._logical_volume_contents_use;
786 _map_table_length = rhs._map_table_length;
787 _partition_map_count = rhs
[all...]
H A DUdfStructures.h1093 logical_volume_descriptor& operator=(const logical_volume_descriptor &rhs);
/haiku/src/kits/shared/
H A DExpressionParser.cpp515 MAPM rhs = _ParsePower(); local
516 if (rhs == MAPM(0))
518 value = value / rhs;
522 MAPM rhs = _ParsePower(); local
523 if (rhs == MAPM(0))
525 value = value % rhs;
/haiku/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)); }
/haiku/src/apps/terminal/
H A DPrefHandler.cpp264 SortByName(const color_scheme *lhs, const color_scheme *rhs) argument
266 return strcmp(lhs->name, rhs->name);
/haiku/src/kits/app/
H A DApplication.cpp300 BApplication::BApplication(const BApplication &rhs) argument
306 BApplication::operator=(const BApplication &rhs) argument

Completed in 443 milliseconds