Searched defs:this_value (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/net/spdy/
H A Dspdy_test_util_common.cc120 std::string this_value; local
137 this_value = extra_headers[1 + (i * 2)];
149 new_value += this_value;
152 new_value = this_value;
/external/chromium_org/v8/src/
H A Dobjects.cc871 double this_value = Number(); local
873 bool equal = this_value == other_value;
875 if (!equal) return std::isnan(this_value) && std::isnan(other_value);
877 return (this_value != 0) || ((1 / this_value) == (1 / other_value));
892 double this_value = Number(); local
895 return this_value == other_value
896 || (std::isnan(this_value) && std::isnan(other_value));

Completed in 289 milliseconds