OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ToInt32
(Results
1 - 25
of
41
) sorted by null
1
2
/external/chromium_org/content/renderer/
dom_automation_controller.cc
74
value.reset(new base::FundamentalValue(args[0].
ToInt32
()));
82
value.reset(new base::FundamentalValue(args[0].
ToInt32
()));
153
args[0].
ToInt32
())));
170
automation_id_ = args[0].
ToInt32
();
v8_value_converter_impl.cc
251
return new base::FundamentalValue(val->
ToInt32
()->Value());
/external/chromium/webkit/glue/
cpp_variant.h
92
// For example,
ToInt32
() works only if isNumber() is true.
94
int32_t
ToInt32
() const;
cpp_variant.cc
187
int32_t CppVariant::
ToInt32
() const {
/external/chromium_org/content/common/
inter_process_time_ticks_converter.h
79
int
ToInt32
() const { return value_; }
inter_process_time_ticks_converter_unittest.cc
52
RemoteTimeDelta::FromRawDelta(params.test_delta)).
ToInt32
();
/external/chromium_org/webkit/renderer/
cpp_variant.h
95
// For example,
ToInt32
() works only if isNumber() is true.
97
int32_t
ToInt32
() const;
cpp_variant.cc
189
int32_t CppVariant::
ToInt32
() const {
/external/chromium_org/chrome/renderer/extensions/
cast_streaming_native_handler.cc
222
const int transport_id = args[0]->
ToInt32
()->Value();
233
const int transport_id = args[0]->
ToInt32
()->Value();
254
const int transport_id = args[0]->
ToInt32
()->Value();
284
const int transport_id = args[0]->
ToInt32
()->Value();
296
const int transport_id = args[0]->
ToInt32
()->Value();
308
const int transport_id = args[0]->
ToInt32
()->Value();
safe_builtins.cc
177
int first_arg_index = static_cast<int>(info[3]->
ToInt32
()->Value());
178
int args_length = static_cast<int>(info[4]->
ToInt32
()->Value());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8GeolocationCustom.cpp
89
v8::Local<v8::Int32> timeoutInt32 = timeoutValue->
ToInt32
();
115
v8::Local<v8::Int32> maximumAgeInt32 = maximumAgeValue->
ToInt32
();
V8InspectorFrontendHostCustom.cpp
90
ContextMenuAction typedId = static_cast<ContextMenuAction>(ContextMenuItemBaseCustomTag + id->
ToInt32
()->Value());
131
int sample = info[0]->
ToInt32
()->Value();
V8InjectedScriptHostCustom.cpp
97
InjectedScriptHost::InspectableObject* object = host->inspectedObject(info[0]->
ToInt32
()->Value());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptRegexp.cpp
96
int matchOffset = result->Get(v8AtomicString(isolate, "index"))->
ToInt32
()->Value();
Dictionary.cpp
161
v8::Local<v8::Int32> v8Int32 = v8Value->
ToInt32
();
250
v8::Local<v8::Int32> v8Int32 = v8Value->
ToInt32
();
263
v8::Local<v8::Int32> v8Int32 = v8Value->
ToInt32
();
276
v8::Local<v8::Int32> v8Int32 = v8Value->
ToInt32
();
/external/chromium_org/v8/test/webkit/
parseInt.js
72
// Add test cases where the ToString/
ToInt32
conversions throw.
/external/chromium_org/v8/src/
execution.h
105
static Handle<Object>
ToInt32
(
types.cc
137
if (value->
ToInt32
(&i)) return Smi::IsValid(i) ? kSmi : kOtherSigned32;
execution.cc
677
Handle<Object> Execution::
ToInt32
(
i18n.cc
81
object->
ToInt32
(value);
[
all
...]
/external/v8/src/
execution.h
104
static Handle<Object>
ToInt32
(Handle<Object> obj, bool* exc);
execution.cc
640
Handle<Object> Execution::
ToInt32
(Handle<Object> obj, bool* exc) {
/external/chromium_org/content/renderer/pepper/
v8_var_converter.cc
206
*result = PP_MakeInt32(val->
ToInt32
()->Value());
v8_var_converter_unittest.cc
83
val->
ToInt32
()->Value() == var.value.as_int;
/external/v8/test/cctest/
test-strings.cc
479
result->
ToInt32
()->Value());
Completed in 563 milliseconds
1
2