HomeSort by relevance Sort by last modified time
    Searched refs:JSC (Results 151 - 175 of 879) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowCustom.h 28 inline JSDOMWindow* asJSDOMWindow(JSC::JSGlobalObject* globalObject)
33 inline const JSDOMWindow* asJSDOMWindow(const JSC::JSGlobalObject* globalObject)
46 inline bool JSDOMWindowBase::allowsAccessFrom(JSC::ExecState* exec) const
54 inline bool JSDOMWindowBase::allowsAccessFromNoErrorMessage(JSC::ExecState* exec) const
59 inline bool JSDOMWindowBase::allowsAccessFrom(JSC::ExecState* exec, String& message) const
JSMessagePortCustom.cpp 40 using namespace JSC;
55 JSC::JSValue JSMessagePort::postMessage(JSC::ExecState* exec)
60 void fillMessagePortArray(JSC::ExecState* exec, JSC::JSValue value, MessagePortArray& portArray)
JSNodeFilterCondition.cpp 31 using namespace JSC;
40 short JSNodeFilterCondition::acceptNode(JSC::ExecState* exec, Node* filterNode) const
75 JSValue result = JSC::call(exec, function, callType, callData, m_filter.get(), args);
86 bool JSNodeFilterCondition::WeakOwner::isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown>, void* context, MarkStack& markStack)
JSLazyEventListener.h 32 static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld)
39 JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld);
41 virtual JSC::JSObject* initializeJSFunction(ScriptExecutionContext*) const;
JSWorkerCustom.cpp 38 using namespace JSC;
42 JSC::JSValue JSWorker::postMessage(JSC::ExecState* exec)
PageScriptDebugServer.h 62 virtual ListenerSet* getListenersForGlobalObject(JSC::JSGlobalObject*);
63 virtual void didPause(JSC::JSGlobalObject*);
64 virtual void didContinue(JSC::JSGlobalObject*);
JSCustomApplicationInstalledCallback.cpp 36 using namespace JSC;
47 JSC::JSLock lock(SilenceAssertionsOnly);
JSCustomPositionCallback.cpp 38 using namespace JSC;
54 JSC::JSLock lock(SilenceAssertionsOnly);
JSCustomPositionErrorCallback.cpp 38 using namespace JSC;
54 JSC::JSLock lock(SilenceAssertionsOnly);
JSCustomSQLStatementErrorCallback.cpp 41 using namespace JSC;
50 JSC::JSLock lock(SilenceAssertionsOnly);
JSCustomVoidCallback.cpp 41 using namespace JSC;
66 JSC::JSLock lock(SilenceAssertionsOnly);
ScriptObject.h 46 ScriptObject(ScriptState*, JSC::JSObject*);
48 JSC::JSObject* jsObject() const { return asObject(jsValue()); }
ScriptController.h 44 namespace JSC {
63 typedef HashMap<void*, RefPtr<JSC::Bindings::RootObject> > RootObjectMap;
67 typedef WTF::HashMap< RefPtr<DOMWrapperWorld>, JSC::Strong<JSDOMWindowShell> > ShellMap;
119 void attachDebugger(JSC::Debugger*); // Attaches/detaches in all worlds/window shells.
120 void attachDebugger(JSDOMWindowShell*, JSC::Debugger*);
148 JSC::Bindings::RootObject* bindingRootObject();
149 JSC::Bindings::RootObject* cacheableBindingRootObject();
151 PassRefPtr<JSC::Bindings::RootObject> createRootObject(void* nativeHandle);
164 JSC::JSObject* jsObjectForPluginElement(HTMLPlugInElement*);
191 RefPtr<JSC::Bindings::RootObject> m_bindingRootObject
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLImageLoader.cpp 34 #if USE(JSC)
81 #if USE(JSC)
84 JSC::JSLock lock(JSC::SilenceAssertionsOnly);
85 JSC::JSGlobalData* globalData = JSDOMWindowBase::commonJSGlobalData();
  /external/webkit/Source/JavaScriptCore/bytecompiler/
RegisterID.h 35 namespace JSC {
110 } // namespace JSC
114 template<> struct VectorTraits<JSC::RegisterID> : VectorTraitsBase<true, JSC::RegisterID> {
  /external/webkit/Source/WebCore/bindings/objc/
DOMUtility.mm 88 // FIXME: This has to be in the JSC namespace to avoid an Objective-C++ ambiguity with C++ and
92 // we could move the function out of the JSC namespace.
94 namespace JSC {
96 static inline id createDOMWrapper(JSC::JSObject* object)
142 id createDOMWrapper(JSC::JSObject* object, PassRefPtr<JSC::Bindings::RootObject> origin, PassRefPtr<JSC::Bindings::RootObject> current)
144 id wrapper = JSC::createDOMWrapper(object);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestCallback.h 35 static PassRefPtr<JSTestCallback> create(JSC::JSObject* callback, JSDOMGlobalObject* globalObject)
51 JSTestCallback(JSC::JSObject* callback, JSDOMGlobalObject*);
  /external/webkit/Source/WebCore/bridge/jni/
JavaString.h 34 #if USE(JSC)
40 namespace JSC {
71 } // namespace JSC
  /external/webkit/Source/WebCore/css/
MediaQueryListListener.cpp 26 #if USE(JSC)
37 #if USE(JSC)
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 43 namespace JSC {
114 bool invoke(uint32_t objectID, const JSC::Identifier& methodName, data_t argumentsData, mach_msg_type_number_t argumentsLength, data_t& resultData, mach_msg_type_number_t& resultLength);
119 bool getProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t &resultData, mach_msg_type_number_t& resultLength);
121 bool setProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t valueData, mach_msg_type_number_t valueLength);
123 bool removeProperty(uint32_t objectID, const JSC::Identifier& propertyName);
125 bool hasProperty(uint32_t objectID, const JSC::Identifier& propertyName);
127 bool hasMethod(uint32_t objectID, const JSC::Identifier& methodName);
141 PassRefPtr<JSC::Bindings::Instance> createBindingsInstance(PassRefPtr<JSC::Bindings::RootObject>);
142 RetainPtr<NSData *> marshalValues(JSC::ExecState*, const JSC::ArgList& args)
    [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSProfilerPrivate.cpp 33 using namespace JSC;
  /external/webkit/Source/JavaScriptCore/assembler/
ARMv7Assembler.cpp 32 namespace JSC {
  /external/webkit/Source/JavaScriptCore/bytecode/
JumpTable.cpp 35 namespace JSC {
47 } // namespace JSC
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.cpp 32 namespace JSC {