HomeSort by relevance Sort by last modified time
    Searched refs:Handle (Results 226 - 250 of 763) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomPositionErrorCallback.cpp 63 v8::Handle<v8::Context> context = proxy->context();
69 v8::Handle<v8::Value> argv[] = {
V8DocumentCustom.cpp 68 v8::Handle<v8::Value> V8Document::evaluateCallback(const v8::Arguments& args)
77 contextNode = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[1]));
86 inResult = V8XPathResult::toNative(v8::Handle<v8::Object>::Cast(args[4]));
100 v8::Handle<v8::Value> V8Document::getCSSCanvasContextCallback(const v8::Arguments& args)
103 v8::Handle<v8::Object> holder = args.Holder();
122 v8::Handle<v8::Value> toV8(Document* impl, bool forceNewObject)
132 v8::Handle<v8::Object> wrapper = V8Document::wrap(impl, forceNewObject);
143 v8::Handle<v8::Value> V8Document::createTouchListCallback(const v8::Arguments& args)
V8HTMLDataGridElementCustom.cpp 46 v8::Handle<v8::Object> holder = info.Holder();
57 v8::Handle<v8::Object> holder = info.Holder();
V8CustomVoidCallback.cpp 56 v8::Handle<v8::Context> v8Context = toV8Context(m_scriptExecutionContext.get(), m_worldContext);
66 bool invokeCallback(v8::Persistent<v8::Object> callback, int argc, v8::Handle<v8::Value> argv[], bool& callbackReturnValue, ScriptExecutionContext* scriptExecutionContext)
84 v8::Handle<v8::Object> thisObject = v8::Context::GetCurrent()->Global();
86 v8::Handle<v8::Value> result = callbackFunction->Call(thisObject, argc, argv);
V8DataGridColumnListCustom.cpp 46 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name);
V8ElementCustom.cpp 56 v8::Handle<v8::Value> toV8(Element* impl, bool forceNewObject)
V8IDBKeyCustom.cpp 39 v8::Handle<v8::Value> toV8(IDBKey* key)
V8ScriptProfileNodeCustom.cpp 42 v8::Handle<v8::Value> V8ScriptProfileNode::childrenAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
47 v8::Handle<v8::Array> result = v8::Array::New(children.size());
55 v8::Handle<v8::Value> V8ScriptProfileNode::callUIDAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
62 v8::Handle<v8::Value> toV8(ScriptProfileNode* impl)
V8StyleSheetListCustom.cpp 42 v8::Handle<v8::Value> V8StyleSheetList::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
V8WorkerCustom.cpp 50 v8::Handle<v8::Value> V8Worker::constructorCallback(const v8::Arguments& args)
61 v8::Handle<v8::String> scriptUrl = args[0]->ToString();
81 v8::Handle<v8::Object> wrapperObject = args.Holder();
90 v8::Handle<v8::Value> V8Worker::postMessageCallback(const v8::Arguments& args)
  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.cpp 42 ShareableBitmap::Handle handle; local
43 bitmap->createHandle(handle);
45 encoder->encode(handle);
50 ShareableBitmap::Handle handle; local
51 if (!decoder->decode(handle))
54 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::create(handle);
PlatformPopupMenuData.cpp 55 ShareableBitmap::Handle notSelectedBackingStoreHandle;
59 ShareableBitmap::Handle selectedBackingStoreHandle;
84 ShareableBitmap::Handle notSelectedBackingStoreHandle;
89 ShareableBitmap::Handle selectedBackingStoreHandle;
  /external/chromium/chrome/browser/chromeos/login/
client_login_response_handler.h 37 virtual URLFetcher* Handle(const std::string& to_process,
issue_response_handler.h 39 virtual URLFetcher* Handle(const std::string& to_process,
  /external/chromium/chrome/browser/profiles/
profile_impl_io_data.h 23 class Handle {
25 explicit Handle(Profile* profile);
26 ~Handle();
32 // Init() must be called before ~Handle(). It records all the necessary
84 DISALLOW_COPY_AND_ASSIGN(Handle);
  /external/chromium/chrome/browser/sync/glue/
typed_url_data_type_controller.h 75 CancelableRequestProvider::Handle handle) {}
78 CancelableRequestProvider::Handle handle) {}
81 CancelableRequestProvider::Handle handle) {}
84 CancelableRequestProvider::Handle handle) {}
  /external/chromium/chrome/browser/ui/webui/
fileicon_source.h 37 IconManager::Handle request_handle,
  /external/v8/src/
checks.cc 65 v8::Handle<v8::Value> expected,
67 v8::Handle<v8::Value> value) {
81 v8::Handle<v8::Value> unexpected,
83 v8::Handle<v8::Value> value) {
  /external/webkit/Source/WebCore/bindings/js/
JSNamedNodeMapCustom.cpp 38 virtual bool isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown>, void* context, JSC::MarkStack&);
39 virtual void finalize(JSC::Handle<JSC::Unknown>, void* context);
42 bool JSNamedNodeMapOwner::isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown> handle, void*, MarkStack& markStack)
44 JSNamedNodeMap* jsNamedNodeMap = static_cast<JSNamedNodeMap*>(handle.get().asCell());
53 void JSNamedNodeMapOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
55 JSNamedNodeMap* jsNamedNodeMap = static_cast<JSNamedNodeMap*>(handle.get().asCell());
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestInterface.cpp 44 v8::Handle<v8::Value> V8TestInterface::constructorCallback(const v8::Arguments& args)
75 bool V8TestInterface::HasInstance(v8::Handle<v8::Value> value)
81 v8::Handle<v8::Object> V8TestInterface::wrapSlow(TestInterface* impl)
83 v8::Handle<v8::Object> wrapper;
  /external/webkit/Source/WebCore/bindings/v8/
IDBBindingUtilities.h 40 PassRefPtr<IDBKey> createIDBKeyFromValue(v8::Handle<v8::Value>);
ScriptController.cpp 168 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(activeFrame);
177 v8::Handle<v8::Object> global = v8Context->Global();
178 v8::Handle<v8::String> eventSymbol = V8HiddenPropertyName::event();
179 v8::Handle<v8::Value> jsEvent = global->GetHiddenValue(eventSymbol);
180 Event* event = V8DOMWrapper::isValidDOMObject(jsEvent) ? V8Event::toNative(v8::Handle<v8::Object>::Cast(jsEvent)) : 0;
227 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(m_proxy->frame());
267 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(frame);
273 v8::Handle<v8::Object> value = createV8ObjectForNPObject(object, 0);
276 v8::Handle<v8::Object> global = v8Context->Global();
291 v8::Handle<v8::Script> script = v8::Script::Compile(source, name)
    [all...]
V8DataGridDataSource.cpp 45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame)
V8DOMWindowShell.cpp 101 static void v8UncaughtExceptionHandler(v8::Handle<v8::Message> message, v8::Handle<v8::Value> data)
108 v8::Handle<v8::String> errorMessageString = message->Get();
112 v8::Handle<v8::StackTrace> stackTrace = message->GetStackTrace();
118 v8::Handle<v8::Value> resourceName = message->GetScriptResourceName();
132 v8::Handle<v8::Object> window = V8DOMWrapper::lookupDOMWrapper(V8DOMWindow::GetTemplate(), host);
219 v8::HandleScope handle; local
230 v8::Handle<v8::Object> wrapper = V8DOMWrapper::lookupDOMWrapper(V8DOMWindow::GetTemplate(), m_global);
282 // Create a handle scope for all local handles.
290 // will handle it
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
WebCoreNSStringExtras.h 47 CFStringEncoding stringEncodingForResource(Handle resource);

Completed in 1041 milliseconds

1 2 3 4 5 6 7 8 91011>>