HomeSort by relevance Sort by last modified time
    Searched refs:v8 (Results 176 - 200 of 2722) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestSpecialOperationsNotEnumerable.cpp 10 #include "bindings/core/v8/ExceptionState.h"
11 #include "bindings/core/v8/V8DOMConfiguration.h"
12 #include "bindings/core/v8/V8HiddenValue.h"
13 #include "bindings/core/v8/V8ObjectConstructor.h"
27 // bindings/core/v8/ScriptWrappable.h.
34 static void indexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
43 static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info)
47 TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution")
    [all...]
V8TestInterface.h 11 #include "bindings/core/v8/ScriptWrappable.h"
12 #include "bindings/core/v8/V8Binding.h"
13 #include "bindings/core/v8/V8DOMWrapper.h"
14 #include "bindings/core/v8/V8TestInterfaceEmpty.h"
15 #include "bindings/core/v8/WrapperTypeInfo.h"
30 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
31 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*)
    [all...]
  /external/chromium_org/extensions/renderer/
module_system.cc 62 void Warn(v8::Isolate* isolate, const std::string& message) {
75 virtual void HandleUncaughtException(const v8::TryCatch& try_catch) OVERRIDE {
76 v8::HandleScope handle_scope(context_->isolate());
79 v8::String::Utf8Value stack_value(try_catch.StackTrace());
95 const v8::TryCatch& try_catch) {
96 v8::Handle<v8::Message> message(try_catch.Message());
103 v8::String::Utf8Value resource_name_v8(
110 v8::String::Utf8Value error_message_v8(message->Get());
139 v8::Handle<v8::Object> global(context->v8_context()->Global())
    [all...]
scoped_persistent.h 9 #include "v8/include/v8.h"
13 // A v8::Persistent handle to a V8 value which destroys and clears the
20 explicit ScopedPersistent(v8::Handle<T> handle) { reset(handle); }
24 void reset(v8::Handle<T> handle) {
35 v8::Handle<T> NewHandle() const {
37 return v8::Local<T>();
38 return v8::Local<T>::New(GetIsolate(handle_), handle_);
41 v8::Handle<T> NewHandle(v8::Isolate* isolate) const
    [all...]
utils_native_handler.cc 27 const v8::FunctionCallbackInfo<v8::Value>& args) {
30 std::string name = *v8::String::Utf8Value(args[0]);
32 v8::Local<v8::Object> cls = args[1].As<v8::Object>();
34 v8::Local<v8::Value> superclass = args[2];
36 v8::HandleScope handle_scope(GetIsolate());
38 v8::Handle<v8::String> source = v8::String::NewFromUtf8
    [all...]
app_window_custom_bindings.h 19 void GetView(const v8::FunctionCallbackInfo<v8::Value>& args);
24 const v8::FunctionCallbackInfo<v8::Value>& args);
i18n_custom_bindings.h 19 void GetL10nMessage(const v8::FunctionCallbackInfo<v8::Value>& args);
20 void GetL10nUILanguage(const v8::FunctionCallbackInfo<v8::Value>& args);
lazy_background_page_native_handler.h 21 void IncrementKeepaliveCount(const v8::FunctionCallbackInfo<v8::Value>& args);
22 void DecrementKeepaliveCount(const v8::FunctionCallbackInfo<v8::Value>& args);
safe_builtins.cc 19 // (very small) amount of effort that the v8 parser needs to do:
124 v8::Local<v8::String> MakeKey(const char* name, v8::Isolate* isolate) {
125 return v8::String::NewFromUtf8(
130 v8::Local<v8::Value> value,
131 v8::Local<v8::Context> context) {
137 v8::Local<v8::Object> Load(const char* name, v8::Handle<v8::Context> context)
    [all...]
  /external/chromium_org/gin/
dictionary.h 22 // v8::HandleScope. Generally speaking, you should store a Dictionary
27 explicit Dictionary(v8::Isolate* isolate);
28 Dictionary(v8::Isolate* isolate, v8::Handle<v8::Object> object);
31 static Dictionary CreateEmpty(v8::Isolate* isolate);
35 v8::Handle<v8::Value> val = object_->Get(StringToV8(isolate_, key));
44 v8::Isolate* isolate() const { return isolate_; }
50 v8::Isolate* isolate_
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8LazyEventListener.cpp 32 #include "bindings/core/v8/V8LazyEventListener.h"
34 #include "bindings/core/v8/ScriptController.h"
35 #include "bindings/core/v8/ScriptSourceCode.h"
36 #include "bindings/core/v8/V8Binding.h"
37 #include "bindings/core/v8/V8DOMWrapper.h"
38 #include "bindings/core/v8/V8Document.h"
39 #include "bindings/core/v8/V8HTMLFormElement.h"
40 #include "bindings/core/v8/V8HiddenValue.h"
41 #include "bindings/core/v8/V8Node.h"
42 #include "bindings/core/v8/V8ScriptRunner.h
    [all...]
WorkerScriptDebugServer.cpp 32 #include "bindings/core/v8/WorkerScriptDebugServer.h"
34 #include "bindings/core/v8/V8ScriptRunner.h"
40 #include <v8.h>
46 : ScriptDebugServer(v8::Isolate::GetCurrent())
55 v8::HandleScope scope(m_isolate);
58 v8::Debug::SetDebugEventListener(&WorkerScriptDebugServer::v8DebugEventCallback, v8::External::New(m_isolate, this));
62 v8::Local<v8::Context> debuggerContext = v8::Debug::GetDebugContext()
    [all...]
SerializedScriptValue.h 34 #include "bindings/core/v8/ScriptValue.h"
37 #include <v8.h>
61 // Version 2: Added StringUCharTag for UChar v8 strings.
72 // function returns an empty representation, schedules a V8 exception to
73 // be thrown using v8::ThrowException(), and sets |didThrow|. In this case
74 // the caller must not invoke any V8 operations until control returns to
75 // V8. When serialization is successful, |didThrow| is false.
76 static PassRefPtr<SerializedScriptValue> create(v8::Handle<v8::Value>, MessagePortArray*, ArrayBufferArray*, ExceptionState&, v8::Isolate*)
    [all...]
  /external/chromium_org/v8/test/cctest/
test-debug.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
30 #include "src/v8.h"
43 using ::v8::base::Mutex;
44 using ::v8::base::LockGuard;
45 using ::v8::base::ConditionVariable;
46 using ::v8::base::OS;
47 using ::v8::base::Semaphore;
48 using ::v8::internal::EmbeddedVector;
49 using ::v8::internal::Object;
50 using ::v8::internal::Handle
361 namespace v8 { namespace
    [all...]
  /external/chromium_org/v8/tools/gyp/
v8_base.host.darwin-arm64.mk 27 v8/src/accessors.cc \
28 v8/src/allocation.cc \
29 v8/src/allocation-site-scopes.cc \
30 v8/src/allocation-tracker.cc \
31 v8/src/api.cc \
32 v8/src/arguments.cc \
33 v8/src/assembler.cc \
34 v8/src/assert-scope.cc \
35 v8/src/ast-value-factory.cc \
36 v8/src/ast.cc
    [all...]
v8_base.host.linux-arm64.mk 27 v8/src/accessors.cc \
28 v8/src/allocation.cc \
29 v8/src/allocation-site-scopes.cc \
30 v8/src/allocation-tracker.cc \
31 v8/src/api.cc \
32 v8/src/arguments.cc \
33 v8/src/assembler.cc \
34 v8/src/assert-scope.cc \
35 v8/src/ast-value-factory.cc \
36 v8/src/ast.cc
    [all...]
v8_base.target.darwin-arm64.mk 28 v8/src/accessors.cc \
29 v8/src/allocation.cc \
30 v8/src/allocation-site-scopes.cc \
31 v8/src/allocation-tracker.cc \
32 v8/src/api.cc \
33 v8/src/arguments.cc \
34 v8/src/assembler.cc \
35 v8/src/assert-scope.cc \
36 v8/src/ast-value-factory.cc \
37 v8/src/ast.cc
    [all...]
v8_base.target.linux-arm64.mk 28 v8/src/accessors.cc \
29 v8/src/allocation.cc \
30 v8/src/allocation-site-scopes.cc \
31 v8/src/allocation-tracker.cc \
32 v8/src/api.cc \
33 v8/src/arguments.cc \
34 v8/src/assembler.cc \
35 v8/src/assert-scope.cc \
36 v8/src/ast-value-factory.cc \
37 v8/src/ast.cc
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
automation_internal_custom_bindings.h 10 #include "v8/include/v8.h"
25 void IsInteractPermitted(const v8::FunctionCallbackInfo<v8::Value>& args);
29 void GetSchemaAdditions(const v8::FunctionCallbackInfo<v8::Value>& args);
file_browser_handler_custom_bindings.h 19 void GetExternalFileEntry(const v8::FunctionCallbackInfo<v8::Value>& args);
20 void GetEntryURL(const v8::FunctionCallbackInfo<v8::Value>& args);
page_capture_custom_bindings.h 19 void CreateBlob(const v8::FunctionCallbackInfo<v8::Value>& args);
20 void SendResponseAck(const v8::FunctionCallbackInfo<v8::Value>& args);
  /external/chromium_org/chrome/renderer/
net_benchmarking_extension.h 14 static v8::Extension* Get();
  /external/chromium_org/content/renderer/java/
gin_java_bridge_value_converter.h 19 CONTENT_EXPORT v8::Handle<v8::Value> ToV8Value(
21 v8::Handle<v8::Context> context) const;
23 v8::Handle<v8::Value> value,
24 v8::Handle<v8::Context> context) const;
27 virtual bool FromV8Object(v8::Handle<v8::Object> value
    [all...]
  /external/chromium_org/content/renderer/pepper/
resource_converter.h 18 #include "v8/include/v8.h"
32 // This class is responsible for converting V8 vars to Pepper resources.
49 // Attempts to convert a V8 object to a PP_Var with type PP_VARTYPE_RESOURCE.
53 virtual bool FromV8Value(v8::Handle<v8::Object> val,
54 v8::Handle<v8::Context> context,
58 // Attempts to convert a PP_Var to a V8 object. |var| must have type
62 v8::Handle<v8::Context> context
    [all...]
v8_var_converter.h 15 #include "v8/include/v8.h"
38 // Converts the given PP_Var to a v8::Value. True is returned upon success.
40 v8::Handle<v8::Context> context,
41 v8::Handle<v8::Value>* result);
60 // Converts the given v8::Value to a PP_Var. Every PP_Var in the reference
70 v8::Handle<v8::Value> val
    [all...]

Completed in 495 milliseconds

1 2 3 4 5 6 78 91011>>