Searched refs:Handle (Results 226 - 250 of 1265) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestInterfaceConstructor2.h15 #include "platform/heap/Handle.h"
21 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
22 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
23 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
24 static TestInterfaceConstructor2* toImpl(v8::Handle<v8::Object> object)
28 static TestInterfaceConstructor2* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
44 static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
45 static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
50 inline v8::Handle<v
[all...]
H A DV8TestInterfaceConstructor3.h15 #include "platform/heap/Handle.h"
21 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
22 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
23 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
24 static TestInterfaceConstructor3* toImpl(v8::Handle<v8::Object> object)
28 static TestInterfaceConstructor3* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
44 static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
45 static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
50 inline v8::Handle<v
[all...]
H A DV8TestInterfaceConstructor4.h15 #include "platform/heap/Handle.h"
21 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
22 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
23 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
24 static TestInterfaceConstructor4* toImpl(v8::Handle<v8::Object> object)
28 static TestInterfaceConstructor4* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
44 static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
45 static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
50 inline v8::Handle<v
[all...]
H A DV8TestInterfaceCustomConstructor.h15 #include "platform/heap/Handle.h"
21 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
22 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
23 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
24 static TestInterfaceCustomConstructor* toImpl(v8::Handle<v8::Object> object)
28 static TestInterfaceCustomConstructor* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
45 static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
46 static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
51 inline v8::Handle<v
[all...]
H A DV8TestInterfaceEventConstructor.h16 #include "platform/heap/Handle.h"
23 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
24 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
25 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
26 static TestInterfaceEventConstructor* toImpl(v8::Handle<v8::Object> object)
30 static TestInterfaceEventConstructor* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
51 static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
52 static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
57 inline v8::Handle<v
[all...]
H A DV8TestTypedefs.h15 #include "platform/heap/Handle.h"
21 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*);
22 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*);
23 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*);
24 static TestTypedefs* toImpl(v8::Handle<v8::Object> object)
28 static TestTypedefs* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);
44 static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { }
45 static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { }
50 inline v8::Handle<v
[all...]
H A DV8SVGTestInterface.cpp38 v8::Handle<v8::Object> holder = info.Holder();
52 v8::Handle<v8::Object> holder = info.Holder();
73 static void installV8SVGTestInterfaceTemplate(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate)
90 v8::Handle<v8::FunctionTemplate> V8SVGTestInterface::domTemplate(v8::Isolate* isolate)
95 bool V8SVGTestInterface::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
100 v8::Handle<v8::Object> V8SVGTestInterface::findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
105 SVGTestInterface* V8SVGTestInterface::toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value)
107 return hasInstance(value, isolate) ? blink::toScriptWrappableBase(v8::Handle<v8::Object>::Cast(value))->toImpl<SVGTestInterface>() : 0;
128 v8::Handle<v
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DGCObservation.h36 #include "platform/heap/Handle.h"
46 static GCObservation* create(v8::Handle<v8::Value> observedValue)
61 explicit GCObservation(v8::Handle<v8::Value>);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWrappedResourceRequest.h70 class Handle : public WebURLRequestPrivate { class in class:blink::WrappedResourceRequest
75 Handle m_handle;
H A DWrappedResourceResponse.h70 class Handle : public WebURLResponsePrivate { class in class:blink::WrappedResourceResponse
75 Handle m_handle;
/external/chromium_org/v8/src/compiler/
H A Djs-inlining.h31 Handle<JSFunction> jsfunction,
33 void AddClosureToFrameState(Node* frame_state, Handle<JSFunction> jsfunction);
/external/chromium_org/v8/src/extensions/
H A Dexternalize-string-extension.h16 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
18 v8::Handle<v8::String> name);
H A Dgc-extension.h18 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
20 v8::Handle<v8::String> name);
H A Dtrigger-failure-extension.h16 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
18 v8::Handle<v8::String> name);
/external/chromium_org/v8/src/
H A Dproperty.h29 Handle<String>::cast(key_));
33 Handle<Name> GetKey() const { return key_; }
34 Handle<Object> GetValue() const { return value_; }
40 Handle<Name> key_;
41 Handle<Object> value_;
47 void Init(Handle<Name> key, Handle<Object> value, PropertyDetails details) {
53 Descriptor(Handle<Name> key, Handle<Object> value, PropertyDetails details)
58 Descriptor(Handle<Nam
[all...]
H A Dapi.h36 explicit inline NeanderObject(v8::internal::Handle<v8::internal::Object> obj);
40 inline v8::internal::Handle<v8::internal::JSObject> value() { return value_; }
43 v8::internal::Handle<v8::internal::JSObject> value_;
52 explicit inline NeanderArray(v8::internal::Handle<v8::internal::Object> obj);
53 inline v8::internal::Handle<v8::internal::JSObject> value() {
57 void add(v8::internal::Handle<v8::internal::Object> value);
70 NeanderObject::NeanderObject(v8::internal::Handle<v8::internal::Object> obj)
71 : value_(v8::internal::Handle<v8::internal::JSObject>::cast(obj)) { }
75 : value_(v8::internal::Handle<v8::internal::JSObject>(
79 NeanderArray::NeanderArray(v8::internal::Handle<v
[all...]
H A Ddebug.cc31 : debug_context_(Handle<Context>()),
32 event_listener_(Handle<Object>()),
33 event_listener_data_(Handle<Object>()),
52 static v8::Handle<v8::Context> GetDebugEventContext(Isolate* isolate) {
53 Handle<Context> context = isolate->debug()->debugger_entry()->GetContext();
57 Handle<Context> native_context(context->native_context());
62 BreakLocationIterator::BreakLocationIterator(Handle<DebugInfo> debug_info,
269 void BreakLocationIterator::SetBreakPoint(Handle<Object> break_point_object) {
281 void BreakLocationIterator::ClearBreakPoint(Handle<Object> break_point_object) {
371 Handle<Cod
[all...]
H A Dobjects.cc47 Handle<HeapType> Object::OptimalType(Isolate* isolate,
53 Handle<Map> map(HeapObject::cast(this)->map(), isolate);
66 Handle<Object> object,
67 Handle<Context> native_context) {
68 if (object->IsJSReceiver()) return Handle<JSReceiver>::cast(object);
69 Handle<JSFunction> constructor;
81 Handle<JSObject> result = isolate->factory()->NewJSObject(constructor);
82 Handle<JSValue>::cast(result)->set_value(*object);
140 Handle<Object> JSObject::GetDataProperty(Handle<JSObjec
[all...]
H A Djson-parser.h23 MUST_USE_RESULT static MaybeHandle<Object> Parse(Handle<String> source) {
30 explicit JsonParser(Handle<String> source)
44 seq_source_ = Handle<SeqOneByteString>::cast(source_);
97 Handle<String> ParseJsonString() {
101 bool ParseJsonString(Handle<String> expected) {
127 Handle<String> ParseJsonInternalizedString() {
132 Handle<String> ScanJsonString();
137 Handle<String> SlowScanJsonString(Handle<String> prefix, int start, int end);
145 Handle<Objec
[all...]
/external/chromium_org/v8/test/cctest/
H A Dprint-extension.cc33 v8::Handle<v8::FunctionTemplate> PrintExtension::GetNativeFunctionTemplate(
35 v8::Handle<v8::String> str) {
H A Dprofiler-extension.h41 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
43 v8::Handle<v8::String> name);
/external/chromium_org/v8/samples/
H A Dlineprocessor.cc82 v8::Handle<v8::String> ReadFile(v8::Isolate* isolate, const char* name);
83 v8::Handle<v8::String> ReadLine();
87 bool RunCppCycle(v8::Handle<v8::Script> script,
100 v8::Handle<v8::String> script_source;
101 v8::Handle<v8::Value> script_name;
145 v8::Handle<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
159 v8::Handle<v8::Context> context = v8::Context::New(isolate, NULL, global);
167 v8::Handle<v8::Script> script;
204 bool RunCppCycle(v8::Handle<v8::Script> script,
209 v8::Handle<v
[all...]
/external/chromium_org/gin/
H A Darray_buffer.cc65 v8::Handle<v8::ArrayBuffer> array);
73 Private(v8::Isolate* isolate, v8::Handle<v8::ArrayBuffer> array);
87 v8::Isolate* isolate, v8::Handle<v8::ArrayBuffer> array) {
89 CHECK_EQ(WrapperInfo::From(v8::Handle<v8::Object>::Cast(array)),
99 v8::Handle<v8::ArrayBuffer> array)
134 v8::Handle<v8::ArrayBuffer> array) {
153 v8::Handle<v8::Value> val,
157 *out = ArrayBuffer(isolate, v8::Handle<v8::ArrayBuffer>::Cast(val));
169 v8::Handle<v8::ArrayBufferView> view)
189 v8::Handle<v
[all...]
/external/chromium_org/net/base/
H A Dprioritized_dispatcher.cc26 PrioritizedDispatcher::Handle PrioritizedDispatcher::Add(
33 return Handle();
38 PrioritizedDispatcher::Handle PrioritizedDispatcher::AddAtHead(
45 return Handle();
50 void PrioritizedDispatcher::Cancel(const Handle& handle) {
55 Handle handle = queue_.FirstMin();
63 PrioritizedDispatcher::Handle PrioritizedDispatcher::ChangePriority(
64 const Handle& handle, Priority priority) {
74 return Handle();
124 bool PrioritizedDispatcher::MaybeDispatchJob(const Handle
[all...]
/external/chromium_org/remoting/host/
H A Dpairing_registry_delegate_win_unittest.cc29 EXPECT_TRUE(privileged_.Create(root.Handle(), L"privileged",
31 EXPECT_TRUE(unprivileged_.Create(root.Handle(), L"unprivileged",
52 delegate->SetRootKeys(privileged_.Handle(), unprivileged_.Handle());
93 load_delegate->SetRootKeys(privileged_.Handle(), unprivileged_.Handle());
96 save_delegate->SetRootKeys(privileged_.Handle(), unprivileged_.Handle());
106 delegate->SetRootKeys(privileged_.Handle(), unprivileged_.Handle());
[all...]

Completed in 4981 milliseconds

1234567891011>>