OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Int16Array
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/html/canvas/
Int16Array.cpp
27
#include "
Int16Array
.h"
31
PassRefPtr<
Int16Array
>
Int16Array
::create(unsigned length)
33
return TypedArrayBase<short>::create<
Int16Array
>(length);
36
PassRefPtr<
Int16Array
>
Int16Array
::create(short* array, unsigned length)
38
return TypedArrayBase<short>::create<
Int16Array
>(array, length);
41
PassRefPtr<
Int16Array
>
Int16Array
::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
43
return TypedArrayBase<short>::create<
Int16Array
>(buffer, byteOffset, length)
[
all
...]
Int16Array.h
35
class
Int16Array
: public IntegralTypedArrayBase<short> {
37
static PassRefPtr<
Int16Array
> create(unsigned length);
38
static PassRefPtr<
Int16Array
> create(short* array, unsigned length);
39
static PassRefPtr<
Int16Array
> create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length);
44
PassRefPtr<
Int16Array
> subarray(int start) const;
45
PassRefPtr<
Int16Array
> subarray(int start, int end) const;
48
Int16Array
(PassRefPtr<ArrayBuffer> buffer,
Int16Array.idl
37
]
Int16Array
: ArrayBufferView {
41
Int16Array
subarray(in long start, in [Optional] long end);
43
// void set(in
Int16Array
array, [Optional] in unsigned long offset);
/external/webkit/Source/WebCore/bindings/js/
JSInt16ArrayCustom.cpp
29
#include "
Int16Array
.h"
41
JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject,
Int16Array
* object)
54
RefPtr<
Int16Array
> array = constructArrayBufferView<
Int16Array
, short>(exec);
/external/webkit/Source/WebCore/bindings/v8/custom/
V8Int16ArrayCustom.cpp
33
#include "
Int16Array
.h"
45
INC_STATS("DOM.
Int16Array
.Contructor");
47
return constructWebGLArray<
Int16Array
, short>(args, &info, v8::kExternalShortArray);
52
INC_STATS("DOM.
Int16Array
.set()");
53
return setWebGLArrayHelper<
Int16Array
, V8Int16Array>(args);
56
v8::Handle<v8::Value> toV8(
Int16Array
* impl)
/external/v8/test/mjsunit/
external-array.js
63
a = new
Int16Array
(2);
/external/webkit/Source/WebCore/workers/
WorkerContext.idl
124
attribute Int16ArrayConstructor
Int16Array
; // Usable with new operator
/external/v8/samples/
shell.cc
70
v8::Handle<v8::Value>
Int16Array
(const v8::Arguments& args);
352
global->Set(v8::String::New("
Int16Array
"),
353
v8::FunctionTemplate::New(
Int16Array
));
488
v8::Handle<v8::Value>
Int16Array
(const v8::Arguments& args) {
/external/webkit/Source/WebCore/page/
DOMWindow.idl
508
attribute [JSCCustomGetter] Int16ArrayConstructor
Int16Array
; // Usable with new operator
[
all
...]
/external/webkit/Source/WebCore/
Android.mk
381
html/canvas/
Int16Array
.cpp \
[
all
...]
Completed in 310 milliseconds