/external/chromium_org/third_party/WebKit/Source/core/animation/ |
EffectInputTest.cpp | 25 , m_isolate(v8::Isolate::GetCurrent()) 26 , m_scope(m_isolate) 33 v8::Isolate* m_isolate; member in class:__anon15616::AnimationEffectInputTest 42 v8::Handle<v8::Object> keyframe1 = v8::Object::New(m_isolate); 43 v8::Handle<v8::Object> keyframe2 = v8::Object::New(m_isolate); 50 jsKeyframes.append(Dictionary(keyframe1, m_isolate)); 51 jsKeyframes.append(Dictionary(keyframe2, m_isolate)); 62 v8::Handle<v8::Object> keyframe1 = v8::Object::New(m_isolate); 63 v8::Handle<v8::Object> keyframe2 = v8::Object::New(m_isolate); 70 jsKeyframes.append(Dictionary(keyframe1, m_isolate)); [all...] |
AnimationTest.cpp | 43 : m_isolate(v8::Isolate::GetCurrent()) 44 , m_scope(m_isolate) 58 v8::Isolate* m_isolate; member in class:blink::AnimationAnimationV8Test 67 v8::Handle<v8::Object> keyframe1 = v8::Object::New(m_isolate); 68 v8::Handle<v8::Object> keyframe2 = v8::Object::New(m_isolate); 77 jsKeyframes.append(Dictionary(keyframe1, m_isolate)); 78 jsKeyframes.append(Dictionary(keyframe2, m_isolate)); 137 v8::Handle<v8::Object> keyframe1 = v8::Object::New(m_isolate); 138 v8::Handle<v8::Object> keyframe2 = v8::Object::New(m_isolate); 148 jsKeyframes.append(Dictionary(keyframe1, m_isolate)); [all...] |
TimingInputTest.cpp | 19 : m_isolate(v8::Isolate::GetCurrent()) 20 , m_scope(m_isolate) 26 v8::Handle<v8::Object> timingInput = v8::Object::New(m_isolate); 28 Dictionary timingInputDictionary = Dictionary(v8::Handle<v8::Value>::Cast(timingInput), m_isolate); 34 v8::Handle<v8::Object> timingInput = v8::Object::New(m_isolate); 36 Dictionary timingInputDictionary = Dictionary(v8::Handle<v8::Value>::Cast(timingInput), m_isolate); 40 v8::Isolate* m_isolate; member in class:blink::AnimationTimingInputTest 167 v8::Handle<v8::Object> timingInput = v8::Object::New(m_isolate); 168 Dictionary timingInputDictionary = Dictionary(v8::Handle<v8::Value>::Cast(timingInput), m_isolate);
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
JavaScriptCallFrame.cpp | 41 : m_isolate(v8::Isolate::GetCurrent()) 42 , m_debuggerContext(m_isolate, debuggerContext) 43 , m_callFrame(m_isolate, callFrame) 54 v8::HandleScope handleScope(m_isolate); 55 v8::Handle<v8::Context> debuggerContext = m_debuggerContext.newLocal(m_isolate); 57 v8::Handle<v8::Value> callerFrame = m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "caller")); 67 v8::HandleScope handleScope(m_isolate); 68 v8::Context::Scope contextScope(m_debuggerContext.newLocal(m_isolate)); 69 v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate); [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
ScriptDebugServer.cpp | 71 v8::Handle<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate); 72 v8::Handle<v8::Function> function = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, functionName))); 73 ASSERT(m_isolate->InContext()); 74 return V8ScriptRunner::callInternalFunction(function, debuggerScript, argc, argv, m_isolate); 80 , m_isolate(isolate) 91 v8::HandleScope scope(m_isolate); 95 v8::Local<v8::Object> info = v8::Object::New(m_isolate); 96 info->Set(v8AtomicString(m_isolate, "sourceID"), v8String(debuggerContext->GetIsolate(), sourceID)); 97 info->Set(v8AtomicString(m_isolate, "lineNumber"), v8::Integer::New(debuggerContext->GetIsolate(), scriptBreakpoint.lineNumber)); 98 info->Set(v8AtomicString(m_isolate, "columnNumber"), v8::Integer::New(debuggerContext->GetIsolate(), scriptBreakpoint.columnNumber)) 261 v8::Isolate* m_isolate; member in class:blink::EnableLiveEditScope [all...] |
ScriptPromisePropertyBase.cpp | 18 , m_isolate(toIsolate(executionContext)) 39 v8::HandleScope handleScope(m_isolate); 49 v8::Handle<v8::Value> cachedPromise = V8HiddenValue::getHiddenValue(m_isolate, wrapper, promiseName()); 54 v8::Handle<v8::Promise::Resolver> resolver = v8::Promise::Resolver::New(m_isolate); 56 V8HiddenValue::setHiddenValue(m_isolate, wrapper, promiseName(), promise); 61 V8HiddenValue::setHiddenValue(m_isolate, wrapper, resolverName(), resolver); 80 v8::HandleScope handleScope(m_isolate); 91 v8::Local<v8::Object> wrapper = persistent->newLocal(m_isolate); 94 v8::Local<v8::Promise::Resolver> resolver = V8HiddenValue::getHiddenValue(m_isolate, wrapper, resolverName()).As<v8::Promise::Resolver>(); 96 V8HiddenValue::deleteHiddenValue(m_isolate, wrapper, resolverName()) [all...] |
ArrayValue.cpp | 37 m_isolate = other.m_isolate; 63 ASSERT(m_isolate); 64 ASSERT(m_isolate == v8::Isolate::GetCurrent()); 65 v8::Local<v8::Value> indexedValue = m_array->Get(v8::Integer::NewFromUnsigned(m_isolate, index)); 69 value = Dictionary(indexedValue, m_isolate);
|
V8RecursionScope.h | 63 : m_isolate(isolate) 65 V8PerIsolateData::from(m_isolate)->incrementRecursionLevel(); 74 if (!V8PerIsolateData::from(m_isolate)->decrementRecursionLevel()) 94 : m_isolate(isolate) 99 V8PerIsolateData::from(m_isolate)->incrementInternalScriptRecursionLevel(); 106 V8PerIsolateData::from(m_isolate)->decrementInternalScriptRecursionLevel(); 112 v8::Isolate* m_isolate; member in class:blink::V8RecursionScope::MicrotaskSuppression 119 v8::Isolate* m_isolate; member in class:blink::V8RecursionScope
|
ArrayValue.h | 38 ArrayValue() : m_isolate(0) { } 41 , m_isolate(isolate) 43 ASSERT(m_isolate); 61 v8::Isolate* m_isolate; member in class:blink::ArrayValue
|
WorkerScriptController.cpp | 108 : m_isolate(0) 114 m_isolate = V8PerIsolateData::initialize(); 115 V8Initializer::initializeWorker(m_isolate); 117 m_interruptor = adoptPtr(new V8IsolateInterruptor(m_isolate)); 133 V8PerIsolateData::destroy(m_isolate); 137 explicit IsolateCleanupTask(v8::Isolate* isolate) : m_isolate(isolate) { } 139 v8::Isolate* m_isolate; member in class:blink::IsolateCleanupTask 156 V8PerIsolateData::willBeDestroyed(m_isolate); 158 ThreadState::current()->addCleanupTask(IsolateCleanupTask::create(m_isolate)); 163 v8::HandleScope handleScope(m_isolate); [all...] |
V8PerContextData.cpp | 44 : m_isolate(context->GetIsolate()) 45 , m_wrapperBoilerplates(m_isolate) 46 , m_constructorMap(m_isolate) 47 , m_contextHolder(adoptPtr(new gin::ContextHolder(m_isolate))) 48 , m_context(m_isolate, context) 51 , m_compiledPrivateScript(m_isolate) 57 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(context->Global()->Get(v8AtomicString(m_isolate, "Error"))); 59 v8::Handle<v8::Value> prototypeValue = object->Get(v8AtomicString(m_isolate, "prototype")); 61 m_errorPrototype.set(m_isolate, prototypeValue); 84 v8::Local<v8::Object> instanceTemplate = V8ObjectConstructor::newInstance(m_isolate, function) [all...] |
ScriptString.cpp | 39 : m_isolate(0) 44 : m_isolate(isolate) 45 , m_string(SharedPersistent<v8::String>::create(string, m_isolate)) 52 m_isolate = string.m_isolate;
|
ExceptionState.cpp | 56 ASSERT(m_isolate); 65 setException(V8ThrowException::createDOMException(ec, processedMessage, m_creationContext, m_isolate)); 70 ASSERT(m_isolate); 77 setException(V8ThrowException::createDOMException(SecurityError, finalSanitized, finalUnsanitized, m_creationContext, m_isolate)); 88 m_exception.set(m_isolate, exception); 94 V8ThrowException::throwException(m_exception.newLocal(m_isolate), m_isolate); 99 ASSERT(m_isolate); 102 setException(V8ThrowException::createTypeError(addExceptionContext(message), m_isolate)); 107 ASSERT(m_isolate); [all...] |
ScriptState.cpp | 31 : m_isolate(context->GetIsolate()) 32 , m_context(m_isolate, context) 57 v8::HandleScope handleScope(m_isolate); 63 v8::HandleScope handleScope(m_isolate); 69 v8::HandleScope handleScope(m_isolate); 76 v8::HandleScope scope(m_isolate); 87 v8::HandleScope scope(m_isolate);
|
Dictionary.cpp | 63 : m_isolate(0) 69 , m_isolate(isolate) 71 ASSERT(m_isolate); 81 m_isolate = optionsObject.m_isolate; 109 ASSERT(m_isolate); 110 ASSERT(m_isolate == v8::Isolate::GetCurrent()); 111 v8::Handle<v8::String> v8Key = v8String(m_isolate, key); 125 ASSERT(m_isolate); 126 ASSERT(m_isolate == v8::Isolate::GetCurrent()) [all...] |
ScriptString.h | 49 if (!m_isolate) 50 m_isolate = v8::Isolate::GetCurrent(); 51 return m_isolate; 60 v8::Isolate* m_isolate; member in class:blink::FINAL
|
V8ObjectConstructor.h | 51 : m_isolate(isolate) 54 V8PerIsolateData* data = V8PerIsolateData::from(m_isolate); 61 V8PerIsolateData* data = V8PerIsolateData::from(m_isolate); 71 v8::Isolate* m_isolate; member in class:blink::ConstructorMode
|
WorkerScriptDebugServer.cpp | 50 ASSERT(m_isolate); 55 v8::HandleScope scope(m_isolate); 58 v8::Debug::SetDebugEventListener(&WorkerScriptDebugServer::v8DebugEventCallback, v8::External::New(m_isolate, this)); 65 v8::Local<v8::Object> debuggerScript = m_debuggerScript.newLocal(m_isolate); 68 v8::Handle<v8::Function> getScriptsFunction = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, "getWorkerScripts"))); 69 v8::Handle<v8::Value> value = V8ScriptRunner::callInternalFunction(getScriptsFunction, debuggerScript, 0, 0, m_isolate); 75 dispatchDidParseSource(listener, v8::Handle<v8::Object>::Cast(scriptsArray->Get(v8::Integer::New(m_isolate, i))), CompileSuccess); 89 interruptAndRun(task, m_isolate);
|
ScriptController.cpp | 96 , m_isolate(v8::Isolate::GetCurrent()) 97 , m_windowProxy(WindowProxy::create(frame, DOMWrapperWorld::mainWorld(), m_isolate)) 122 disposeUnderlyingV8Object(m_windowScriptNPObject, m_isolate); 146 return ScriptController::callFunction(m_frame->document(), function, receiver, argc, info, m_isolate); 189 v8::Handle<v8::Script> script = V8ScriptRunner::compileScript(source, m_isolate, corsStatus, v8CacheOptions); 196 result = V8ScriptRunner::runCompiledScript(script, m_frame->document(), m_isolate); 234 OwnPtr<WindowProxy> isolatedWorldWindowProxy = WindowProxy::create(m_frame, world, m_isolate); 246 v8::HandleScope handleScope(m_isolate); 247 v8::Handle<v8::Context> context = m_isolate->GetCurrentContext(); 250 DOMWrapperWorld& world = DOMWrapperWorld::current(m_isolate); [all...] |
WindowProxy.cpp | 85 , m_isolate(isolate) 95 v8::HandleScope handleScope(m_isolate); 133 v8::Handle<v8::Object> windowWrapper = V8Window::findInstanceInPrototypeChain(m_global.newLocal(m_isolate), m_isolate); 192 v8::HandleScope handleScope(m_isolate); 202 m_global.set(m_isolate, context->Global()); 221 context->SetErrorMessageForCodeGenerationFromStrings(v8String(m_isolate, csp->evalDisabledErrorMessage())); 244 v8::Handle<v8::ObjectTemplate> globalTemplate = V8Window::getShadowObjectTemplate(m_isolate); 264 v8::Handle<v8::Context> context = v8::Context::New(m_isolate, &extensionConfiguration, globalTemplate, m_global.newLocal(m_isolate)); [all...] |
CustomElementBinding.h | 46 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); } 51 v8::Isolate* m_isolate; member in class:blink::CustomElementBinding
|
/external/pdfium/fpdfsdk/include/javascript/ |
JS_Runtime.h | 52 operator IJS_Runtime*() {return (IJS_Runtime*)m_isolate;}
53 v8::Isolate* GetIsolate(){return m_isolate;};
54 void SetIsolate(v8::Isolate* isolate){m_isolate = isolate;}
64 v8::Isolate* m_isolate;
member in class:CJS_Runtime
|
/external/pdfium/fpdfsdk/src/javascript/ |
JS_Value.cpp | 14 CJS_Value::CJS_Value(v8::Isolate* isolate) : m_isolate(isolate),m_eType(VT_unknown)
17 CJS_Value::CJS_Value(v8::Isolate* isolate, v8::Handle<v8::Value> pValue,FXJSVALUETYPE t) :m_isolate(isolate), m_pValue(pValue) , m_eType(t)
21 CJS_Value::CJS_Value(v8::Isolate* isolate, const int &iValue):m_isolate(isolate)
26 CJS_Value::CJS_Value(v8::Isolate* isolate, const bool &bValue):m_isolate(isolate)
31 CJS_Value::CJS_Value(v8::Isolate* isolate, const float &fValue):m_isolate(isolate)
36 CJS_Value::CJS_Value(v8::Isolate* isolate, const double &dValue):m_isolate(isolate)
41 CJS_Value::CJS_Value(v8::Isolate* isolate, JSFXObject pJsObj):m_isolate(isolate)
46 CJS_Value::CJS_Value(v8::Isolate* isolate, CJS_Object * pJsObj):m_isolate(isolate)
51 CJS_Value::CJS_Value(v8::Isolate* isolate, FX_LPCWSTR pWstr):m_isolate(isolate)
56 CJS_Value::CJS_Value(v8::Isolate* isolate, FX_LPCSTR pStr):m_isolate(isolate) [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/ |
V8CryptoKeyCustom.cpp | 20 , m_isolate(isolate) 39 Dictionary algorithmValue = Dictionary::createEmpty(m_isolate); 47 m_dictionary.set(propertyName, toV8(uint8Array.get(), m_holder, m_isolate)); 54 v8::Isolate* m_isolate; member in class:blink::DictionaryBuilder
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
V8CustomXPathNSResolver.cpp | 53 , m_isolate(isolate) 60 v8::Handle<v8::String> lookupNamespaceURIName = v8AtomicString(m_isolate, "lookupNamespaceURI"); 70 LocalFrame* frame = callingDOMWindow(m_isolate)->frame(); 81 v8::Handle<v8::Value> argv[argc] = { v8String(m_isolate, prefix) }; 84 v8::Handle<v8::Value> retval = ScriptController::callFunction(callingExecutionContext(m_isolate), function, m_resolver, argc, argv, m_isolate);
|