OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InternalFunction
(Results
1 - 25
of
40
) sorted by null
1
2
/external/webkit/Source/WebCore/ForwardingHeaders/runtime/
InternalFunction.h
3
#include <JavaScriptCore/
InternalFunction
.h>
/external/webkit/Source/JavaScriptCore/runtime/
InternalFunction.h
34
class
InternalFunction
: public JSObjectWithGlobalObject {
51
InternalFunction
(VPtrStealingHackType);
53
InternalFunction
(JSGlobalData*, JSGlobalObject*, Structure*, const Identifier&);
61
InternalFunction
* asInternalFunction(JSValue);
63
inline
InternalFunction
* asInternalFunction(JSValue value)
65
ASSERT(asObject(value)->inherits(&
InternalFunction
::s_info));
66
return static_cast<
InternalFunction
*>(asObject(value));
InternalFunction.cpp
24
#include "
InternalFunction
.h"
32
// Ensure the compiler generates a vtable for
InternalFunction
!
33
void
InternalFunction
::vtableAnchor() {}
35
ASSERT_CLASS_FITS_IN_CELL(
InternalFunction
);
37
const ClassInfo
InternalFunction
::s_info = { "Function", &JSObjectWithGlobalObject::s_info, 0, 0 };
39
InternalFunction
::
InternalFunction
(VPtrStealingHackType)
44
InternalFunction
::
InternalFunction
(JSGlobalData* globalData, JSGlobalObject* globalObject, Structure* structure, const Identifier& name)
51
const UString&
InternalFunction
::name(ExecState* exec
[
all
...]
ArrayConstructor.h
24
#include "
InternalFunction
.h"
30
class ArrayConstructor : public
InternalFunction
{
ErrorConstructor.h
25
#include "
InternalFunction
.h"
31
class ErrorConstructor : public
InternalFunction
{
StringConstructor.h
24
#include "
InternalFunction
.h"
30
class StringConstructor : public
InternalFunction
{
NativeErrorConstructor.h
24
#include "
InternalFunction
.h"
32
class NativeErrorConstructor : public
InternalFunction
{
46
static const unsigned StructureFlags = OverridesMarkChildren |
InternalFunction
::StructureFlags;
NumberConstructor.h
24
#include "
InternalFunction
.h"
30
class NumberConstructor : public
InternalFunction
{
48
static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance |
InternalFunction
::StructureFlags;
ObjectConstructor.h
24
#include "
InternalFunction
.h"
30
class ObjectConstructor : public
InternalFunction
{
45
static const unsigned StructureFlags = OverridesGetOwnPropertySlot |
InternalFunction
::StructureFlags;
BooleanConstructor.h
24
#include "
InternalFunction
.h"
30
class BooleanConstructor : public
InternalFunction
{
DateConstructor.h
24
#include "
InternalFunction
.h"
30
class DateConstructor : public
InternalFunction
{
FunctionConstructor.h
24
#include "
InternalFunction
.h"
30
class FunctionConstructor : public
InternalFunction
{
FunctionPrototype.h
24
#include "
InternalFunction
.h"
28
class FunctionPrototype : public
InternalFunction
{
NativeErrorConstructor.cpp
33
const ClassInfo NativeErrorConstructor::s_info = { "Function", &
InternalFunction
::s_info, 0, 0 };
36
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, nameAndMessage))
51
InternalFunction
::markChildren(markStack);
NumberConstructor.cpp
45
const ClassInfo NumberConstructor::s_info = { "Function", &
InternalFunction
::s_info, 0, ExecState::numberTable };
58
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, numberPrototype->s_info.className))
71
return getStaticValueSlot<NumberConstructor,
InternalFunction
>(exec, ExecState::numberTable(exec), this, propertyName, slot);
76
return getStaticValueDescriptor<NumberConstructor,
InternalFunction
>(exec, ExecState::numberTable(exec), this, propertyName, descriptor);
RegExpConstructor.h
24
#include "
InternalFunction
.h"
58
class RegExpConstructor : public
InternalFunction
{
88
static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance |
InternalFunction
::StructureFlags;
ErrorConstructor.cpp
33
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, errorPrototype->classInfo()->className))
ArrayConstructor.cpp
41
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, arrayPrototype->classInfo()->className))
/external/webkit/Source/WebCore/bridge/
runtime_method.h
30
#include <runtime/
InternalFunction
.h>
36
class RuntimeMethod : public
InternalFunction
{
54
static const unsigned StructureFlags = OverridesGetOwnPropertySlot |
InternalFunction
::StructureFlags;
runtime_method.cpp
44
const ClassInfo RuntimeMethod::s_info = { "RuntimeMethod", &
InternalFunction
::s_info, 0, 0 };
48
:
InternalFunction
(&exec->globalData(), globalObject, structure, ident)
74
return
InternalFunction
::getOwnPropertySlot(exec, propertyName, slot);
86
return
InternalFunction
::getOwnPropertyDescriptor(exec, propertyName, descriptor);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPMethod.h
29
#include <JavaScriptCore/
InternalFunction
.h>
36
class JSNPMethod : public JSC::
InternalFunction
{
JSNPMethod.cpp
42
const ClassInfo JSNPMethod::s_info = { "NPMethod", &
InternalFunction
::s_info, 0, 0 };
45
:
InternalFunction
(&exec->globalData(), globalObject, createStructure(exec->globalData(), globalObject->functionPrototype()), name)
/external/webkit/Source/JavaScriptCore/API/
JSCallbackFunction.h
29
#include "
InternalFunction
.h"
34
class JSCallbackFunction : public
InternalFunction
{
40
//
InternalFunction
mish-mashes constructor and function behavior -- we should
JSCallbackFunction.cpp
43
const ClassInfo JSCallbackFunction::s_info = { "CallbackFunction", &
InternalFunction
::s_info, 0, 0 };
46
:
InternalFunction
(&exec->globalData(), globalObject, globalObject->callbackFunctionStructure(), name)
/external/webkit/Source/WebCore/bindings/js/
JSNavigatorCustom.cpp
30
#include <runtime/
InternalFunction
.h>
80
if (!exec->argument(1).inherits(&
InternalFunction
::s_info)) {
Completed in 1120 milliseconds
1
2