Home | History | Annotate | Download | only in custom

Lines Matching refs:Uint8Array

35 #include "wtf/Uint8Array.h"
40 class TypedArrayTraits<Uint8Array> {
42 typedef v8::Uint8Array V8Type;
49 static size_t length(v8::Handle<v8::Uint8Array> value)
54 static size_t length(Uint8Array* array)
60 typedef V8TypedArray<Uint8Array> V8Uint8Array;
62 inline v8::Handle<v8::Object> wrap(Uint8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
64 return V8TypedArray<Uint8Array>::wrap(impl, creationContext, isolate);
67 inline v8::Handle<v8::Value> toV8(Uint8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
69 return V8TypedArray<Uint8Array>::toV8(impl, creationContext, isolate);
73 inline void v8SetReturnValue(const CallbackInfo& info, Uint8Array* impl)
75 V8TypedArray<Uint8Array>::v8SetReturnValue(info, impl);
79 inline void v8SetReturnValueForMainWorld(const CallbackInfo& info, Uint8Array* impl)
81 V8TypedArray<Uint8Array>::v8SetReturnValueForMainWorld(info, impl);
85 inline void v8SetReturnValueFast(const CallbackInfo& info, Uint8Array* impl, Wrappable* wrappable)
87 V8TypedArray<Uint8Array>::v8SetReturnValueFast(info, impl, wrappable);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint8Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
96 inline void v8SetReturnValue(const CallbackInfo& info, PassRefPtr< Uint8Array > impl)
102 inline void v8SetReturnValueForMainWorld(const CallbackInfo& info, PassRefPtr< Uint8Array > impl)
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr< Uint8Array > impl, Wrappable* wrappable)