OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_construct
(Results
1 - 25
of
35
) sorted by null
1
2
/external/v8/src/
builtins.cc
156
bool reference_result = frame->
is_construct
();
1166
const bool
is_construct
= false;
local
[
all
...]
execution.cc
69
static Handle<Object> Invoke(bool
is_construct
,
89
Handle<Code> code =
is_construct
frames.h
194
bool
is_construct
() const { return type() == CONSTRUCT; }
638
ASSERT(frame->
is_construct
());
hydrogen.h
500
bool
is_construct
) const;
708
bool
is_construct
() { return return_handling_ == CONSTRUCT_CALL_RETURN; }
function in class:v8::internal::FunctionState
[
all
...]
code-stubs.h
667
void GenerateBody(MacroAssembler* masm, bool
is_construct
);
[
all
...]
hydrogen.cc
[
all
...]
hydrogen-instructions.h
[
all
...]
/external/chromium_org/v8/src/
builtins.cc
165
bool reference_result = frame->
is_construct
();
[
all
...]
execution.cc
70
static Handle<Object> Invoke(bool
is_construct
,
90
Handle<Code> code =
is_construct
frames.h
240
bool
is_construct
() const { return type() == CONSTRUCT; }
780
ASSERT(frame->
is_construct
());
code-stubs.h
[
all
...]
/external/chromium_org/v8/test/cctest/
test-log-stack-tracer.cc
210
CHECK(frame_iterator.frame()->
is_construct
());
/external/v8/test/cctest/
test-log-stack-tracer.cc
220
CHECK(frame_iterator.frame()->
is_construct
());
/external/chromium_org/v8/src/ia32/
builtins-ia32.cc
440
bool
is_construct
) {
481
if (
is_construct
) {
[
all
...]
/external/chromium_org/v8/src/arm/
builtins-arm.cc
689
bool
is_construct
) {
745
if (
is_construct
) {
[
all
...]
/external/chromium_org/v8/src/mips/
builtins-mips.cc
708
bool
is_construct
) {
763
if (
is_construct
) {
[
all
...]
/external/chromium_org/v8/src/x64/
builtins-x64.cc
446
bool
is_construct
) {
542
if (
is_construct
) {
[
all
...]
/external/v8/src/arm/
builtins-arm.cc
[
all
...]
lithium-arm.cc
[
all
...]
/external/v8/src/ia32/
builtins-ia32.cc
386
bool
is_construct
) {
425
if (
is_construct
) {
[
all
...]
lithium-ia32.cc
[
all
...]
/external/v8/src/mips/
builtins-mips.cc
[
all
...]
lithium-mips.cc
[
all
...]
/external/v8/src/x64/
builtins-x64.cc
392
bool
is_construct
) {
486
if (
is_construct
) {
[
all
...]
lithium-x64.cc
[
all
...]
Completed in 527 milliseconds
1
2