Home
last modified time | relevance | path

Searched refs:fieldValue (Results 1 – 4 of 4) sorted by relevance

/base/hiviewdfx/hiview/base/event_store/dao/
Dsys_event_query.cpp90 bool FieldValue::operator==(const FieldValue& fieldValue) const in operator ==()
92 if (Index() != fieldValue.Index()) { in operator ==()
96 return GetFieldNumber() == fieldValue.GetFieldNumber(); in operator ==()
99 return GetString() == fieldValue.GetString(); in operator ==()
104 bool FieldValue::operator!=(const FieldValue& fieldValue) const in operator !=()
106 if (Index() != fieldValue.Index()) { in operator !=()
110 return GetFieldNumber() != fieldValue.GetFieldNumber(); in operator !=()
113 return GetString() != fieldValue.GetString(); in operator !=()
118 bool FieldValue::operator<(const FieldValue& fieldValue) const in operator <()
120 if (Index() != fieldValue.Index()) { in operator <()
[all …]
/base/hiviewdfx/hiview/base/event_store/include/
Dsys_event_query.h145 bool operator==(const FieldValue& fieldValue) const;
146 bool operator!=(const FieldValue& fieldValue) const;
147 bool operator<(const FieldValue& fieldValue) const;
148 bool operator<=(const FieldValue& fieldValue) const;
149 bool operator>(const FieldValue& fieldValue) const;
150 bool operator>=(const FieldValue& fieldValue) const;
151 bool IsStartWith(const FieldValue& fieldValue) const;
152 bool IsNotStartWith(const FieldValue& fieldValue) const;
/base/telephony/sms_mms/services/sms/
Dsms_wap_push_handler.cpp234 uint64_t fieldValue = 0; in DecodeXWapApplicationField() local
235 if (!decodeBuffer.DecodeInteger(fieldValue)) { in DecodeXWapApplicationField()
239 if (fieldValue == PARAMETER_X_WAP_APPLICATION_ID) { in DecodeXWapApplicationField()
Dsms_wap_push_buffer.cpp638 uint64_t fieldValue = 0; in DecodeTextValue() local
639 if (DecodeInteger(fieldValue)) { in DecodeTextValue()
640 str = std::to_string(fieldValue); in DecodeTextValue()