Searched refs:lhs (Results 1 - 11 of 11) sorted by relevance

/haiku/src/tests/kits/app/bmessage/
H A DMessageCStringItemTest.h75 static bool Compare(const char* lhs, const char* rhs);
78 omparePolicy::Compare(const char* lhs, const char* rhs) argument
80 if (!lhs)
83 return lhs;
84 return strcmp(lhs, rhs) == 0;
H A DMessageMessageItemTest.h209 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)
226 for (int32 index = 0; index < lhs->parameter_count; index++) {
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
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/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A Dsettings_tools.h25 extern bool equal_driver_settings(const driver_settings *lhs,
27 extern bool equal_driver_parameters(const driver_parameter *lhs,
29 extern bool equal_interface_settings(const driver_settings *lhs,
/haiku/headers/cpp/std/
H A Dbastring.h499 operator+ (const basic_string <charT, traits, Allocator>& lhs, argument
502 basic_string <charT, traits, Allocator> _str (lhs);
509 operator+ (const charT* lhs, const basic_string <charT, traits, Allocator>& rhs) argument
511 basic_string <charT, traits, Allocator> _str (lhs);
518 operator+ (charT lhs, const basic_string <charT, traits, Allocator>& rhs) argument
520 basic_string <charT, traits, Allocator> _str (1, lhs);
527 operator+ (const basic_string <charT, traits, Allocator>& lhs, const charT* rhs) argument
529 basic_string <charT, traits, Allocator> _str (lhs);
536 operator+ (const basic_string <charT, traits, Allocator>& lhs, charT rhs) argument
538 basic_string <charT, traits, Allocator> str (lhs);
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/src/system/libnetwork/netresolv/net/
H A Dhesiod.c88 char *lhs; /* normally ".ns" */ local
159 if (ctx->lhs)
160 free(ctx->lhs);
181 if (ctx->lhs)
182 free(ctx->lhs);
231 if (ctx->lhs)
232 len += strlen(ctx->lhs) + ((ctx->lhs[0] != '.') ? 1 : 0);
243 /* Only append lhs if it isn't empty. */
244 if (ctx->lhs
[all...]
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageExpressionEvaluator.cpp1052 Operand lhs = *this; local
1055 lhs._ResolveTypesIfNeeded(temp);
1061 result = lhs.fPrimitive.ToInt8() < temp.fPrimitive.ToInt8();
1067 result = lhs.fPrimitive.ToUInt8() < temp.fPrimitive.ToUInt8();
1073 result = lhs.fPrimitive.ToInt16() < temp.fPrimitive.ToInt16();
1079 result = lhs.fPrimitive.ToUInt16()
1086 result = lhs.fPrimitive.ToInt32() < temp.fPrimitive.ToInt32();
1092 result = lhs.fPrimitive.ToUInt32()
1099 result = lhs.fPrimitive.ToInt64() < temp.fPrimitive.ToInt64();
1105 result = lhs
[all...]
/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);

Completed in 87 milliseconds