OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:init_value
(Results
1 - 2
of
2
) sorted by null
/external/astl/include/
vector
81
// @param
init_value
The element to copy.
82
explicit vector(const size_type num, const value_type&
init_value
= value_type());
178
// inserting at the end as many copy of '
init_value
' (this may
180
void resize(size_type size, value_type
init_value
= value_type());
190
const value_type&
init_value
);
205
void initialize(_Integral num, _Integral
init_value
, true_type) {
206
repeat_initialize((size_type)num,
init_value
);
251
vector<_T>::vector(const size_type num, const value_type&
init_value
)
253
repeat_initialize(num,
init_value
);
258
const value_type&
init_value
)
[
all
...]
/external/v8/src/
data-flow.cc
108
int
init_value
= Smi::cast(*init_lit->handle())->value();
local
137
if (
init_value
== term_value) return NULL;
138
if (
init_value
< term_value && update->op() != Token::INC) return NULL;
139
if (
init_value
> term_value && update->op() != Token::DEC) return NULL;
Completed in 93 milliseconds