Searched refs:fieldValue (Results 1 – 4 of 4) sorted by relevance
90 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 …]
145 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;
234 uint64_t fieldValue = 0; in DecodeXWapApplicationField() local235 if (!decodeBuffer.DecodeInteger(fieldValue)) { in DecodeXWapApplicationField()239 if (fieldValue == PARAMETER_X_WAP_APPLICATION_ID) { in DecodeXWapApplicationField()
638 uint64_t fieldValue = 0; in DecodeTextValue() local639 if (DecodeInteger(fieldValue)) { in DecodeTextValue()640 str = std::to_string(fieldValue); in DecodeTextValue()