Home
last modified time | relevance | path

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

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