Searched refs:this_value (Results 1 - 10 of 10) 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/chromium_org/webkit/renderer/
H A Dcpp_variant.cc60 const NPString *this_value = &value.stringValue; local
62 uint32_t len = this_value->UTF8Length;
64 !strncmp(this_value->UTF8Characters, other_value->UTF8Characters,
72 NPObject *this_value = value.objectValue; local
74 return (this_value->_class == other_value->_class &&
75 this_value->referenceCount == other_value->referenceCount);
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dbignum.cc450 uint64_t this_value = base;
454 while (mask != 0 && this_value <= max_32bits) {
455 this_value = this_value * this_value;
456 // Verify that there is enough space in this_value to perform the
461 bool high_bits_zero = (this_value & base_bits_mask) == 0;
463 this_value *= base;
470 AssignUInt64(this_value);
/external/chromium_org/v8/src/
H A Dbignum.cc449 uint64_t this_value = base;
453 while (mask != 0 && this_value <= max_32bits) {
454 this_value = this_value * this_value;
455 // Verify that there is enough space in this_value to perform the
460 bool high_bits_zero = (this_value & base_bits_mask) == 0;
462 this_value *= base;
469 AssignUInt64(this_value);
H A Dobjects.cc1020 double this_value = Number(); local
1022 return (this_value == other_value) ||
1023 (std::isnan(this_value) && std::isnan(other_value));
/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/chromium_org/third_party/WebKit/Source/testing/runner/
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);
/external/chromium_org/net/spdy/
H A Dspdy_test_util_common.cc119 std::string this_value; local
136 this_value = extra_headers[1 + (i * 2)];
148 new_value += this_value;
151 new_value = this_value;

Completed in 610 milliseconds