OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:this_value
(Results
1 - 4
of
4
) sorted by null
/external/chromium/webkit/glue/
cpp_variant.cc
58
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/
bignum.cc
449
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
);
/external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.cpp
86
const NPString *
this_value
= &value.stringValue;
local
88
uint32_t len =
this_value
->UTF8Length;
90
&& !strncmp(
this_value
->UTF8Characters,
/external/chromium/net/spdy/
spdy_test_util.cc
78
std::string
this_value
;
local
95
this_value
= extra_headers[1 + (i * 2)];
107
new_value +=
this_value
;
110
new_value =
this_value
;
231
const char*
this_value
= NULL;
local
248
this_value
= extra_headers[1 + (index * 2)];
250
if (!*
this_value
)
251
this_value
= "";
256
this_value
);
[
all
...]
Completed in 255 milliseconds