HomeSort by relevance Sort by last modified time
    Searched refs:Handle (Results 1 - 25 of 1382) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/mojo/public/cpp/utility/
run_loop_handler.h 12 // Used by RunLoop to notify when a handle is either ready or has become
16 virtual void OnHandleReady(const Handle& handle) = 0;
17 virtual void OnHandleError(const Handle& handle, MojoResult result) = 0;
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
cache.h 40 // Opaque handle to an entry stored in the cache.
41 struct Handle { };
46 // Returns a handle that corresponds to the mapping. The caller
47 // must call this->Release(handle) when the returned mapping is no
52 virtual Handle* Insert(const Slice& key, void* value, size_t charge,
57 // Else return a handle that corresponds to the mapping. The caller
58 // must call this->Release(handle) when the returned mapping is no
60 virtual Handle* Lookup(const Slice& key) = 0;
63 // REQUIRES: handle must not have been released yet.
64 // REQUIRES: handle must have been returned by a method on *this
    [all...]
  /external/chromium_org/v8/src/
factory.h 13 // Interface for handle based allocation.
17 Handle<Oddball> NewOddball(Handle<Map> map,
19 Handle<Object> to_number,
23 Handle<FixedArray> NewFixedArray(
28 Handle<FixedArray> NewFixedArrayWithHoles(
33 Handle<FixedArray> NewUninitializedFixedArray(int size);
38 Handle<FixedArrayBase> NewFixedDoubleArray(
43 Handle<FixedArrayBase> NewFixedDoubleArrayWithHoles(
47 Handle<ConstantPoolArray> NewConstantPoolArray
    [all...]
allocation-site-scopes.h 25 Handle<AllocationSite> top() { return top_; }
26 Handle<AllocationSite> current() { return current_; }
28 bool ShouldCreateMemento(Handle<JSObject> object) { return false; }
37 void InitializeTraversal(Handle<AllocationSite> site) {
39 current_ = Handle<AllocationSite>(*top_, isolate());
44 Handle<AllocationSite> top_;
45 Handle<AllocationSite> current_;
56 Handle<AllocationSite> EnterNewScope();
57 void ExitScope(Handle<AllocationSite> site, Handle<JSObject> object)
    [all...]
d8-windows.cc 15 void Shell::AddOSMethods(Isolate* isolate, Handle<ObjectTemplate> os_templ) {
compilation-cache.h 30 Handle<CompilationCacheTable> GetTable(int generation);
33 Handle<CompilationCacheTable> GetFirstTable() {
36 void SetFirstTable(Handle<CompilationCacheTable> value) {
53 void Remove(Handle<SharedFunctionInfo> function_info);
75 Handle<SharedFunctionInfo> Lookup(Handle<String> source,
76 Handle<Object> name,
80 Handle<Context> context);
81 void Put(Handle<String> source,
82 Handle<Context> context
    [all...]
i18n.h 25 static Handle<ObjectTemplateInfo> GetTemplate(Isolate* isolate);
28 static Handle<ObjectTemplateInfo> GetTemplate2(Isolate* isolate);
41 Handle<String> locale,
42 Handle<JSObject> options,
43 Handle<JSObject> resolved);
47 Handle<JSObject> obj);
65 Handle<String> locale,
66 Handle<JSObject> options,
67 Handle<JSObject> resolved);
71 Handle<JSObject> obj)
    [all...]
liveedit.h 48 void RecordFunctionInfo(Handle<SharedFunctionInfo> info,
50 void RecordRootFunctionInfo(Handle<Code> code);
82 Handle<Script> script,
83 Handle<String> source);
85 static void WrapSharedFunctionInfos(Handle<JSArray> array);
87 static void ReplaceFunctionCode(Handle<JSArray> new_compile_info_array,
88 Handle<JSArray> shared_info_array);
90 static void FunctionSourceUpdated(Handle<JSArray> shared_info_array);
93 static void SetFunctionScript(Handle<JSValue> function_wrapper,
94 Handle<Object> script_handle)
    [all...]
interpreter-irregexp.h 17 Handle<ByteArray> code,
18 Handle<String> subject,
stub-cache.h 57 Handle<JSObject> StubHolder(Handle<JSObject> receiver,
58 Handle<JSObject> holder);
60 Handle<Code> FindIC(Handle<Name> name,
61 Handle<Map> stub_holder_map,
66 Handle<Code> FindHandler(Handle<Name> name,
67 Handle<Map> map,
72 Handle<Code> ComputeMonomorphicIC(Code::Kind kind
    [all...]
elements.h 28 virtual void Validate(Handle<JSObject> obj) = 0;
36 Handle<Object> receiver,
37 Handle<JSObject> holder,
39 Handle<FixedArrayBase> backing_store) = 0;
42 Handle<Object> receiver,
43 Handle<JSObject> holder,
45 return HasElement(receiver, holder, key, handle(holder->elements()));
54 Handle<Object> receiver,
55 Handle<JSObject> holder,
57 Handle<FixedArrayBase> backing_store) = 0
    [all...]
factory.cc 16 Handle<T> Factory::New(Handle<Map> map, AllocationSpace space) {
25 Handle<T> Factory::New(Handle<Map> map,
27 Handle<AllocationSite> allocation_site) {
35 Handle<HeapObject> Factory::NewFillerObject(int size,
45 Handle<Box> Factory::NewBox(Handle<Object> value) {
46 Handle<Box> result = Handle<Box>::cast(NewStruct(BOX_TYPE))
    [all...]
v8checks.h 12 template <class T> class Handle;
23 v8::Handle<v8::Value> unexpected,
25 v8::Handle<v8::Value> value);
30 v8::Handle<v8::Value> expected,
32 v8::Handle<v8::Value> value);
  /external/chromium_org/gin/
handle.h 12 // You can use gin::Handle on the stack to retain a gin::Wrappable object.
17 class Handle {
19 Handle() : object_(NULL) {}
21 Handle(v8::Handle<v8::Value> wrapper, T* object)
34 v8::Handle<v8::Value> ToV8() const { return wrapper_; }
38 v8::Handle<v8::Value> wrapper_;
43 struct Converter<gin::Handle<T> > {
44 static v8::Handle<v8::Value> ToV8(v8::Isolate* isolate,
45 const gin::Handle<T>& val)
    [all...]
converter.cc 13 using v8::Handle;
23 Handle<Value> Converter<bool>::ToV8(Isolate* isolate, bool val) {
27 bool Converter<bool>::FromV8(Isolate* isolate, Handle<Value> val, bool* out) {
32 Handle<Value> Converter<int32_t>::ToV8(Isolate* isolate, int32_t val) {
36 bool Converter<int32_t>::FromV8(Isolate* isolate, Handle<Value> val,
44 Handle<Value> Converter<uint32_t>::ToV8(Isolate* isolate, uint32_t val) {
48 bool Converter<uint32_t>::FromV8(Isolate* isolate, Handle<Value> val,
56 Handle<Value> Converter<int64_t>::ToV8(Isolate* isolate, int64_t val) {
60 bool Converter<int64_t>::FromV8(Isolate* isolate, Handle<Value> val,
70 Handle<Value> Converter<uint64_t>::ToV8(Isolate* isolate, uint64_t val)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationTestHelper.h 13 v8::Handle<v8::Value> stringToV8Value(String);
15 v8::Handle<v8::Value> doubleToV8Value(double);
17 void setV8ObjectPropertyAsString(v8::Handle<v8::Object>, String, String);
19 void setV8ObjectPropertyAsNumber(v8::Handle<v8::Object>, String, double);
  /external/chromium_org/third_party/WebKit/public/web/
WebArrayBufferConverter.h 40 template <class T> class Handle;
47 BLINK_EXPORT static v8::Handle<v8::Value> toV8Value(WebArrayBuffer*, v8::Handle<v8::Object>, v8::Isolate*);
48 BLINK_EXPORT static WebArrayBuffer* createFromV8Value(v8::Handle<v8::Value>, v8::Isolate*);
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
shared_memory.h 34 typedef HANDLE Handle;
35 static const Handle kInvalidHandle;
37 typedef int Handle;
38 static const Handle kInvalidHandle;
44 // Platform-specific handle of the buffer.
45 Handle handle() const { return handle_; } function in class:webrtc::SharedMemory
54 SharedMemory(void* data, size_t size, Handle handle, int id)
    [all...]
shared_memory.cc 16 const SharedMemory::Handle SharedMemory::kInvalidHandle = NULL;
18 const SharedMemory::Handle SharedMemory::kInvalidHandle = -1;
21 SharedMemory::SharedMemory(void* data, size_t size, Handle handle, int id)
24 handle_(handle),
  /external/chromium_org/mojo/bindings/js/
handle.cc 5 #include "mojo/bindings/js/handle.h"
11 HandleWrapper::HandleWrapper(MojoHandle handle)
12 : handle_(mojo::Handle(handle)) {
18 v8::Handle<v8::Value> Converter<mojo::Handle>::ToV8(v8::Isolate* isolate,
19 const mojo::Handle& val) {
25 bool Converter<mojo::Handle>::FromV8(v8::Isolate* isolate,
26 v8::Handle<v8::Value> val,
27 mojo::Handle* out)
33 gin::Handle<HandleWrapper> handle; local
    [all...]
  /external/chromium_org/v8/include/
v8-debug.h 62 virtual Handle<Object> GetExecutionState() const = 0;
63 virtual Handle<Object> GetEventData() const = 0;
68 virtual Handle<String> GetJSON() const = 0;
75 virtual Handle<Context> GetEventContext() const = 0;
106 virtual Handle<Object> GetExecutionState() const = 0;
107 virtual Handle<Object> GetEventData() const = 0;
114 virtual Handle<Context> GetEventContext() const = 0;
120 virtual Handle<Value> GetCallbackData() const = 0;
158 Handle<Value> data = Handle<Value>())
    [all...]
  /external/chromium_org/mojo/common/
message_pump_mojo_handler.h 14 // Used by MessagePumpMojo to notify when a handle is either ready or has become
18 virtual void OnHandleReady(const Handle& handle) = 0;
20 virtual void OnHandleError(const Handle& handle, MojoResult result) = 0;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementWrapper.h 34 #include "platform/heap/Handle.h"
48 friend v8::Handle<v8::Object> createV8HTMLWrapper(HTMLElement*, v8::Handle<v8::Object>, v8::Isolate*);
49 friend v8::Handle<v8::Object> createV8SVGWrapper(SVGElement*, v8::Handle<v8::Object>, v8::Isolate*);
51 static v8::Handle<v8::Object> wrap(PassRefPtrWillBeRawPtr<ElementType>, v8::Handle<v8::Object> creationContext, v8::Isolate*, v8::Handle<v8::Object> (*createSpecificWrapper)(ElementType* element, v8::Handle<v8::Object> creationContext, v8::Isolate*));
  /external/chromium_org/components/webdata/common/
web_data_service_consumer.h 18 virtual void OnWebDataServiceRequestDone(WebDataServiceBase::Handle h,
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8ArrayBufferViewCustom.h 46 static bool hasInstance(v8::Handle<v8::Value> value, v8::Isolate*)
50 static ArrayBufferView* toNative(v8::Handle<v8::Object>);
51 static ArrayBufferView* toNativeWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>);

Completed in 1976 milliseconds

1 2 3 4 5 6 7 8 91011>>