OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:internalfunction
(Results
1 - 25
of
57
) sorted by null
1
2
3
/external/webkit/WebCore/ForwardingHeaders/runtime/
InternalFunction.h
3
#include <JavaScriptCore/
InternalFunction
.h>
/external/webkit/JavaScriptCore/runtime/
InternalFunction.cpp
24
#include "
InternalFunction
.h"
31
ASSERT_CLASS_FITS_IN_CELL(
InternalFunction
);
33
const ClassInfo
InternalFunction
::info = { "Function", 0, 0, 0 };
35
const ClassInfo*
InternalFunction
::classInfo() const
40
InternalFunction
::
InternalFunction
(JSGlobalData* globalData, NonNullPassRefPtr<Structure> structure, const Identifier& name)
46
const UString&
InternalFunction
::name(ExecState* exec)
51
const UString
InternalFunction
::displayName(ExecState* exec)
61
const UString
InternalFunction
::calculatedDisplayName(ExecState* exec)
InternalFunction.h
34
class
InternalFunction
: public JSObject {
51
InternalFunction
(NonNullPassRefPtr<Structure> structure) : JSObject(structure) { }
52
InternalFunction
(JSGlobalData*, NonNullPassRefPtr<Structure>, const Identifier&);
58
InternalFunction
* asInternalFunction(JSValue);
60
inline
InternalFunction
* asInternalFunction(JSValue value)
62
ASSERT(asObject(value)->inherits(&
InternalFunction
::info));
63
return static_cast<
InternalFunction
*>(asObject(value));
NumberConstructor.h
24
#include "
InternalFunction
.h"
30
class NumberConstructor : public
InternalFunction
{
48
static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance |
InternalFunction
::StructureFlags;
ArrayConstructor.h
24
#include "
InternalFunction
.h"
30
class ArrayConstructor : public
InternalFunction
{
BooleanConstructor.h
24
#include "
InternalFunction
.h"
30
class BooleanConstructor : public
InternalFunction
{
DateConstructor.h
24
#include "
InternalFunction
.h"
30
class DateConstructor : public
InternalFunction
{
ErrorConstructor.h
25
#include "
InternalFunction
.h"
31
class ErrorConstructor : public
InternalFunction
{
FunctionConstructor.h
24
#include "
InternalFunction
.h"
30
class FunctionConstructor : public
InternalFunction
{
FunctionPrototype.h
24
#include "
InternalFunction
.h"
30
class FunctionPrototype : public
InternalFunction
{
NativeErrorConstructor.h
24
#include "
InternalFunction
.h"
32
class NativeErrorConstructor : public
InternalFunction
{
ObjectConstructor.h
24
#include "
InternalFunction
.h"
30
class ObjectConstructor : public
InternalFunction
{
PrototypeFunction.h
27
#include "
InternalFunction
.h"
32
class PrototypeFunction : public
InternalFunction
{
StringConstructor.h
24
#include "
InternalFunction
.h"
30
class StringConstructor : public
InternalFunction
{
JSFunction.h
27
#include "
InternalFunction
.h"
37
class JSFunction : public
InternalFunction
{
41
typedef
InternalFunction
Base;
76
const static unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | OverridesMarkChildren | OverridesGetPropertyNames |
InternalFunction
::StructureFlags;
NumberConstructor.cpp
44
const ClassInfo NumberConstructor::info = { "Function", &
InternalFunction
::info, 0, ExecState::numberTable };
57
:
InternalFunction
(&exec->globalData(), structure, Identifier(exec, numberPrototype->info.className))
68
return getStaticValueSlot<NumberConstructor,
InternalFunction
>(exec, ExecState::numberTable(exec), this, propertyName, slot);
73
return getStaticValueDescriptor<NumberConstructor,
InternalFunction
>(exec, ExecState::numberTable(exec), this, propertyName, descriptor);
PrototypeFunction.cpp
36
:
InternalFunction
(&exec->globalData(), exec->lexicalGlobalObject()->prototypeFunctionStructure(), name)
44
:
InternalFunction
(&exec->globalData(), prototypeFunctionStructure, name)
RegExpConstructor.h
24
#include "
InternalFunction
.h"
56
class RegExpConstructor : public
InternalFunction
{
86
static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance |
InternalFunction
::StructureFlags;
NativeErrorConstructor.cpp
33
const ClassInfo NativeErrorConstructor::info = { "Function", &
InternalFunction
::info, 0, 0 };
36
:
InternalFunction
(&exec->globalData(), structure, Identifier(exec, nativeErrorPrototype->getDirect(exec->propertyNames().name).getString(exec)))
/external/webkit/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::info = { "CallbackFunction", &
InternalFunction
::info, 0, 0 };
46
:
InternalFunction
(&exec->globalData(), exec->lexicalGlobalObject()->callbackFunctionStructure(), name)
/external/webkit/WebCore/bindings/js/
ScriptCallStack.cpp
36
#include <runtime/
InternalFunction
.h>
96
InternalFunction
*
internalFunction
= asInternalFunction(func);
98
m_frames.append(ScriptCallFrame(
internalFunction
->name(m_exec), UString(), 0, emptyArgList, 0));
99
func = m_exec->interpreter()->retrieveCaller(m_exec,
internalFunction
);
JSNavigatorCustom.cpp
28
#include <runtime/
InternalFunction
.h>
56
if (!args.at(1).inherits(&
InternalFunction
::info)) {
/external/webkit/WebCore/bridge/
runtime_method.h
30
#include <runtime/
InternalFunction
.h>
36
class RuntimeMethod : public
InternalFunction
{
54
static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | OverridesMarkChildren |
InternalFunction
::StructureFlags;
runtime_method.cpp
48
:
InternalFunction
(&exec->globalData(), deprecatedGetDOMStructure<RuntimeMethod>(exec), ident)
73
return
InternalFunction
::getOwnPropertySlot(exec, propertyName, slot);
85
return
InternalFunction
::getOwnPropertyDescriptor(exec, propertyName, descriptor);
Completed in 105 milliseconds
1
2
3