Searched refs:other_value (Results 1 – 9 of 9) sorted by relevance
61 const NPString *other_value = &other.value.stringValue; in isEqual() local63 return (len == other_value->UTF8Length && in isEqual()64 !strncmp(this_value->UTF8Characters, other_value->UTF8Characters, in isEqual()73 NPObject *other_value = other.value.objectValue; in isEqual() local74 return (this_value->_class == other_value->_class && in isEqual()75 this_value->referenceCount == other_value->referenceCount); in isEqual()
59 const NPString *other_value = &other.value.stringValue; in isEqual() local61 return (len == other_value->UTF8Length && in isEqual()62 !strncmp(this_value->UTF8Characters, other_value->UTF8Characters, in isEqual()71 NPObject *other_value = other.value.objectValue; in isEqual() local72 return (this_value->_class == other_value->_class && in isEqual()73 this_value->referenceCount == other_value->referenceCount); in isEqual()
86 const NPString *other_value = &other.value.stringValue; in isEqual() local88 return len == other_value->UTF8Length in isEqual()90 other_value->UTF8Characters, len); in isEqual()
5 const double other_value = DBL_MAX;
308 base::NullableString16 other_value = area->GetItem(transaction.key); in Merge() local310 if (transaction.value != other_value) in Merge()
25 other_stuff=other_value
767 double other_value = other->Number(); in SameValue() local768 return (this_value == other_value) || in SameValue()769 (isnan(this_value) && isnan(other_value)); in SameValue()
1113 double other_value = other->Number(); in SameValue() local1114 bool equal = this_value == other_value; in SameValue()1116 if (!equal) return std::isnan(this_value) && std::isnan(other_value); in SameValue()1118 return (this_value != 0) || ((1 / this_value) == (1 / other_value)); in SameValue()