HomeSort by relevance Sort by last modified time
    Searched refs:InternalFunction (Results 26 - 47 of 47) sorted by null

12

  /external/webkit/WebCore/bridge/
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);
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.h 47 class InternalFunction;
103 JSValue retrieveCaller(CallFrame*, InternalFunction*) const;
144 static CallFrame* findFunctionCallFrame(CallFrame*, InternalFunction*);
Interpreter.cpp     [all...]
  /external/webkit/WebCore/bindings/js/
JSGeolocationCustom.cpp 37 #include <runtime/InternalFunction.h>
47 if (!value.inherits(&InternalFunction::info)) {
63 if (!value.inherits(&InternalFunction::info)) {
  /external/webkit/JavaScriptCore/runtime/
RegExpConstructor.h 24 #include "InternalFunction.h"
56 class RegExpConstructor : public InternalFunction {
86 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | InternalFunction::StructureFlags;
BooleanConstructor.cpp 32 : InternalFunction(&exec->globalData(), structure, Identifier(exec, booleanPrototype->classInfo()->className))
ErrorConstructor.cpp 33 : InternalFunction(&exec->globalData(), structure, Identifier(exec, errorPrototype->classInfo()->className))
ArrayConstructor.cpp 41 : InternalFunction(&exec->globalData(), structure, Identifier(exec, arrayPrototype->classInfo()->className))
Lookup.cpp 73 InternalFunction* function = new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), entry->functionLength(), propertyName, entry->function());
FunctionPrototype.cpp 42 : InternalFunction(&exec->globalData(), structure, exec->propertyNames().emptyIdentifier)
98 if (thisValue.inherits(&InternalFunction::info)) {
99 InternalFunction* function = asInternalFunction(thisValue);
RegExpConstructor.cpp 65 const ClassInfo RegExpConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::regExpConstructorTable };
94 : InternalFunction(&exec->globalData(), structure, Identifier(exec, "RegExp"))
190 return getStaticValueSlot<RegExpConstructor, InternalFunction>(exec, ExecState::regExpConstructorTable(exec), this, propertyName, slot);
195 return getStaticValueDescriptor<RegExpConstructor, InternalFunction>(exec, ExecState::regExpConstructorTable(exec), this, propertyName, descriptor);
275 lookupPut<RegExpConstructor, InternalFunction>(exec, propertyName, value, ExecState::regExpConstructorTable(exec), this, slot);
FunctionConstructor.cpp 39 : InternalFunction(&exec->globalData(), structure, Identifier(exec, functionPrototype->classInfo()->className))
StringConstructor.cpp 51 : InternalFunction(&exec->globalData(), structure, Identifier(exec, stringPrototype->classInfo()->className))
DateConstructor.cpp 62 : InternalFunction(&exec->globalData(), structure, Identifier(exec, datePrototype->classInfo()->className))
JSObject.cpp 507 void JSObject::putDirectFunction(ExecState* exec, InternalFunction* function, unsigned attr)
512 void JSObject::putDirectFunctionWithoutTransition(ExecState* exec, InternalFunction* function, unsigned attr)
JSFunction.cpp 46 const ClassInfo JSFunction::info = { "Function", &InternalFunction::info, 0, 0 };
JSObject.h 50 class InternalFunction;
176 void putDirectFunction(ExecState* exec, InternalFunction* function, unsigned attr = 0);
180 void putDirectFunctionWithoutTransition(ExecState* exec, InternalFunction* function, unsigned attr = 0);
ObjectConstructor.cpp 46 : InternalFunction(&exec->globalData(), structure, Identifier(exec, "Object"))
  /external/webkit/JavaScriptCore/profiler/
Profiler.cpp 149 if (asObject(functionValue)->inherits(&InternalFunction::info))
150 return CallIdentifier(static_cast<InternalFunction*>(asObject(functionValue))->name(exec), defaultSourceURL, defaultLineNumber);
  /external/webkit/WebCore/bridge/qt/
qt_runtime.h 141 class QtRuntimeMethod : public InternalFunction {
158 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesGetPropertyNames | InternalFunction::StructureFlags | OverridesMarkChildren;
qt_runtime.cpp     [all...]
  /external/webkit/JavaScriptCore/
Android.mk 102 runtime/InternalFunction.cpp \

Completed in 988 milliseconds

12