OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InternalFunction
(Results
26 - 40
of
40
) sorted by null
1
2
/external/webkit/Source/JavaScriptCore/runtime/
BooleanConstructor.cpp
32
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, booleanPrototype->classInfo()->className))
FunctionPrototype.cpp
41
:
InternalFunction
(&exec->globalData(), globalObject, structure, exec->propertyNames().nullIdentifier)
98
if (thisValue.inherits(&
InternalFunction
::s_info)) {
99
InternalFunction
* function = asInternalFunction(thisValue);
RegExpConstructor.cpp
70
const ClassInfo RegExpConstructor::s_info = { "Function", &
InternalFunction
::s_info, 0, ExecState::regExpConstructorTable };
99
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, "RegExp"))
197
return getStaticValueSlot<RegExpConstructor,
InternalFunction
>(exec, ExecState::regExpConstructorTable(exec), this, propertyName, slot);
202
return getStaticValueDescriptor<RegExpConstructor,
InternalFunction
>(exec, ExecState::regExpConstructorTable(exec), this, propertyName, descriptor);
282
lookupPut<RegExpConstructor,
InternalFunction
>(exec, propertyName, value, ExecState::regExpConstructorTable(exec), this, slot);
FunctionConstructor.cpp
41
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, functionPrototype->classInfo()->className))
StringConstructor.cpp
52
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, stringPrototype->classInfo()->className))
Error.cpp
168
class StrictModeTypeErrorFunction : public
InternalFunction
{
171
:
InternalFunction
(&exec->globalData(), globalObject, structure, exec->globalData().propertyNames->emptyIdentifier)
DateConstructor.cpp
61
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, datePrototype->classInfo()->className))
ObjectConstructor.cpp
58
const ClassInfo ObjectConstructor::s_info = { "Function", &
InternalFunction
::s_info, 0, ExecState::objectConstructorTable };
79
:
InternalFunction
(&exec->globalData(), globalObject, structure, Identifier(exec, "Object"))
JSObject.h
51
class
InternalFunction
;
185
void putDirectFunction(ExecState* exec,
InternalFunction
* function, unsigned attr = 0);
190
void putDirectFunctionWithoutTransition(ExecState* exec,
InternalFunction
* function, unsigned attr = 0);
[
all
...]
JSObject.cpp
540
void JSObject::putDirectFunction(ExecState* exec,
InternalFunction
* function, unsigned attr)
550
void JSObject::putDirectFunctionWithoutTransition(ExecState* exec,
InternalFunction
* function, unsigned attr)
JSGlobalObject.cpp
174
m_internalFunctionStructure.set(exec->globalData(), this,
InternalFunction
::createStructure(exec->globalData(), m_functionPrototype.get()));
/external/webkit/Source/JavaScriptCore/profiler/
Profiler.cpp
35
#include "
InternalFunction
.h"
173
if (asObject(functionValue)->inherits(&
InternalFunction
::s_info))
174
return CallIdentifier(static_cast<
InternalFunction
*>(asObject(functionValue))->name(exec), defaultSourceURL, defaultLineNumber);
/external/webkit/Source/WebCore/bridge/qt/
qt_runtime.h
145
class QtRuntimeMethod : public
InternalFunction
{
162
static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesGetPropertyNames |
InternalFunction
::StructureFlags | OverridesMarkChildren;
qt_runtime.cpp
[
all
...]
/external/webkit/Source/JavaScriptCore/
Android.mk
116
runtime/
InternalFunction
.cpp \
Completed in 683 milliseconds
1
2