Searched refs:this_value (Results 1 - 5 of 5) sorted by relevance

/external/chromium/webkit/glue/
H A Dcpp_variant.cc58 const NPString *this_value = &value.stringValue; local
60 uint32_t len = this_value->UTF8Length;
62 !strncmp(this_value->UTF8Characters, other_value->UTF8Characters,
70 NPObject *this_value = value.objectValue; local
72 return (this_value->_class == other_value->_class &&
73 this_value->referenceCount == other_value->referenceCount);
/external/v8/src/
H A Dbignum.cc448 uint64_t this_value = base;
452 while (mask != 0 && this_value <= max_32bits) {
453 this_value = this_value * this_value;
454 // Verify that there is enough space in this_value to perform the
459 bool high_bits_zero = (this_value & base_bits_mask) == 0;
461 this_value *= base;
468 AssignUInt64(this_value);
H A Dobjects.cc766 double this_value = Number(); local
768 return (this_value == other_value) ||
769 (isnan(this_value) && isnan(other_value));
/external/webkit/Tools/DumpRenderTree/chromium/
H A DCppVariant.cpp86 const NPString *this_value = &value.stringValue; local
88 uint32_t len = this_value->UTF8Length;
90 && !strncmp(this_value->UTF8Characters,
/external/chromium/net/spdy/
H A Dspdy_test_util.cc78 std::string this_value; local
95 this_value = extra_headers[1 + (i * 2)];
107 new_value += this_value;
110 new_value = this_value;
238 const char* this_value = NULL; local
255 this_value = extra_headers[1 + (index * 2)];
257 if (!*this_value)
258 this_value = "";
263 this_value);

Completed in 170 milliseconds