OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BooleanPrototype
(Results
1 - 7
of
7
) sorted by null
/external/webkit/JavaScriptCore/runtime/
BooleanPrototype.h
28
class
BooleanPrototype
: public BooleanObject {
30
BooleanPrototype
(ExecState*, NonNullPassRefPtr<Structure>, Structure* prototypeFunctionStructure);
BooleanConstructor.h
28
class
BooleanPrototype
;
32
BooleanConstructor(ExecState*, NonNullPassRefPtr<Structure>,
BooleanPrototype
*);
BooleanPrototype.cpp
22
#include "
BooleanPrototype
.h"
32
ASSERT_CLASS_FITS_IN_CELL(
BooleanPrototype
);
40
BooleanPrototype
::
BooleanPrototype
(ExecState* exec, NonNullPassRefPtr<Structure> structure, Structure* prototypeFunctionStructure)
BooleanConstructor.cpp
24
#include "
BooleanPrototype
.h"
31
BooleanConstructor::BooleanConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure,
BooleanPrototype
*
booleanPrototype
)
32
: InternalFunction(&exec->globalData(), structure, Identifier(exec,
booleanPrototype
->classInfo()->className))
34
putDirectWithoutTransition(exec->propertyNames().prototype,
booleanPrototype
, DontEnum | DontDelete | ReadOnly);
JSGlobalObject.h
37
class
BooleanPrototype
;
87
,
booleanPrototype
(0)
126
BooleanPrototype
*
booleanPrototype
;
210
BooleanPrototype
*
booleanPrototype
() const { return d()->
booleanPrototype
; }
JSGlobalObject.cpp
41
#include "
BooleanPrototype
.h"
233
d()->
booleanPrototype
= new (exec)
BooleanPrototype
(exec,
BooleanPrototype
::createStructure(d()->objectPrototype), d()->prototypeFunctionStructure.get());
234
d()->booleanObjectStructure = BooleanObject::createStructure(d()->
booleanPrototype
);
265
JSCell* booleanConstructor = new (exec) BooleanConstructor(exec, BooleanConstructor::createStructure(d()->functionPrototype), d()->
booleanPrototype
);
285
d()->
booleanPrototype
->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, booleanConstructor, DontEnum);
390
markIfNeeded(markStack, d()->
booleanPrototype
);
/external/webkit/JavaScriptCore/
Android.mk
80
runtime/
BooleanPrototype
.cpp \
Completed in 391 milliseconds